@font-face {
    font-family: "ClanPro-Book";
    font-weight: 300;
    src: url("../fonts/clan/ClanPro-Book.otf") format("opentype");
}

@font-face {
    font-family: "ClanPro-Book";
    font-weight: 600;
    src: url("../fonts/clan/ClanPro-Medium.otf") format("opentype");
}

/* ==========================================================
   TOKENS (colores independientes)
   ========================================================== */
:root {
    --text-color: #44444d;
    --title-color: #222222;
    --link-color: #430984;
    --link-hover-color: #2f055d;
    --icon-color: #ffffff;

    --bg-color: #ffffff;
}

/* ==========================================================
   BASE TIPOGRAFIA (sin color global)
   ========================================================== */
*,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
a,
li,
ul {
    font-family: "ClanPro-Book", sans-serif;
    font-weight: 300;
    letter-spacing: 0.1px;
}

/* ==========================================================
   COLORES BASE (texto / títulos / links / íconos separados)
   ========================================================== */
html,
body {
    height: 100%;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    position: relative;
    overflow-x: hidden;
}

/* Titulares */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--title-color);
}

/* Texto normal hereda de body */
p,
span,
li,
ul {
    color: inherit;
}

/* Links */
a {
    color: var(--link-color);
    outline: none !important;
}

a:hover {
    text-decoration: none;
}

a:focus,
a:hover {
    color: var(--link-hover-color);
}

/* Íconos (independientes del texto) */
i,
.fa,
[class^="fa-"],
[class*=" fa-"],
.glyphicon,
.material-icons,
.bi {
    color: var(--icon-color);
}

/* Helpers */
.strong {
    font-weight: 600;
    color: #000;
    letter-spacing: 0.1px;
}

.free {
    color: blue;
    letter-spacing: 0.1px;
}

.light {
    font-weight: 300;
    color: #000;
    letter-spacing: 0.1px;
}

.no-margin {
    margin: 0 !important;
}

.no-top-margin {
    margin-top: 0 !important;
}

.no-bottom-margin {
    margin-bottom: 0 !important;
}

.no-left-margin {
    margin-left: 0 !important;
}

.no-right-margin {
    margin-right: 0 !important;
}

.no-padding {
    padding: 0 !important;
}

.no-top-padding {
    padding-top: 0 !important;
}

.no-bottom-padding {
    padding-bottom: 0 !important;
}

.no-left-padding {
    padding-left: 0 !important;
}

.no-right-padding {
    padding-right: 0 !important;
}

.no-border {
    border: 0 !important;
}

/* ==========================================================
   NAVBAR
   ========================================================== */

.navbar {
    border: 0;
    border-radius: 0;
    background-color: #2f055d;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Marca / logo */
.navbar-brand {
    float: left;
    height: 60px;
    padding: 10px 15px;
    font-size: 18px;
    line-height: 20px;
    display: flex;
    align-items: center;
    margin-left: 20px !important;
    margin-right: 40px;
}

.navbar-brand img {
    height: 40px;
}

/* Ítems del menú principal */
.navbar-nav > li > a {
    font-size: 14px;
    padding: 20px 20px;
    color: #ffffff !important;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hover / focus */
.navbar-nav > li > a:hover,
.navbar-nav > li > a:focus {
    text-decoration: none;
    background-color: rgba(0, 0, 0, 0.08);
    color: #ffffff !important;
}

/* Estado activo */
.nav > li.active > a,
.nav > li.active > a:focus,
.nav > li.active > a:hover {
    text-decoration: none;
    background-color: rgba(0, 0, 0, 0.18);
    color: #ffffff !important;
    border-bottom: 3px solid #ffd74a;
}

/* Botón menú móvil */
.navbar-toggle {
    position: relative;
    float: right;
    padding: 9px 10px;
    margin-top: 8px;
    margin-right: 15px;
    margin-bottom: 8px;
    background-color: #430984;
    background-image: none;
    border: 1px solid #ffffff;
    border-radius: 4px;
}

.navbar-toggle .icon-bar {
    background-color: #fff;
}

/* Ocultar selector de idioma (ajustá si tu li tiene otra clase) */
.navbar-nav .language-selector,
.navbar-nav .lang-switch,
.navbar-nav .dropdown.language,
.navbar-nav .dropdown.lang {
    display: none !important;
}

/* ==========================================================
   BANNER / HERO
   ========================================================== */

.page-content {
    /* margin-top: 60px; */
}

.banner {
    background-size: cover;
    padding-top: 80px;
    padding-bottom: 80px;
    position: relative;
}

.banner-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgb(24 24 24 / 70%);
}

.banner-head {
    color: #fff;
    margin-top: 70px;
    line-height: 50px;
    font-family: sans-serif;
    font-size: 35px;
    font-weight: 600;
}

.banner-head .strong {
    color: #fff;
}

.banner-form {
    background-color: #fff;
    border-top: 10px solid #eee;
    padding: 30px;
    border-radius: 5px;
}

.banner-form .fields {
    margin-bottom: 20px !important;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.banner-form .left {
    float: left;
    width: 60px;
    height: 60px;
    margin-right: 10px;
}

.banner-form .right {
    margin-left: 70px;
}

.banner-form h3 {
    margin: 0 0 10px;
    margin-top: 10px;
    font-size: 20px;
}

/* Importante: acá NO usamos !important para no pisar el sistema */
.banner-form h5 {
    margin: 0 0 5px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--link-color);
}

.banner-form h5:hover {
    color: var(--link-color);
}

/* Íconos dentro del banner: siguen siendo íconos (independientes) */
.banner-form h5 i {
    color: var(--icon-color);
    -webkit-transition: all 0.1s cubic-bezier(0.9, 0, 0.1, 1);
    transition: all 0.1s cubic-bezier(0.9, 0, 0.1, 1);
}

.banner-form .right a {
    text-decoration: none;
}

.banner-form .right a:hover h5,
.banner-form .right a:focus h5,
.banner-form .right a:active h5 {
    color: #278064;
}

.banner-form .right a:hover h5 i,
.banner-form .right a:focus h5 i,
.banner-form .right a:active h5 i {
    color: #278064;
    position: relative;
    left: 5px;
    -webkit-transition: all 0.1s cubic-bezier(0.9, 0, 0.1, 1);
    transition: all 0.1s cubic-bezier(0.9, 0, 0.1, 1);
}

.note-or a {
    color: var(--link-color);
}

.note-or:hover a,
.note-or:active a,
.note-or:focus a {
    color: #278064;
    text-decoration: none;
}

.menu-btn {
    padding: 10px 15px !important;
    margin: 10px;
    font-weight: 500;
    font-size: 16px !important;
    background-color: #2c0557;
    color: #fff;
    border-radius: 10px;
}

/* ==========================================================
   SECCIONES BÁSICAS
   ========================================================== */

.white-section {
    background-color: #fff;
    padding-top: 80px;
    padding-bottom: 80px;
}

.gray-section {
    background-color: #f8f8f9;
    padding-top: 80px;
    padding-bottom: 80px;
}

.img-block img {
    max-height: 300px;
    margin: 0 auto;
    max-width: 100%;
}

.content-block h2 {
    margin-top: 15px;
    margin-bottom: 15px;
    font-weight: 600;
    font-family: sans-serif;
    color: #333;
}

.content-block p {
    margin-bottom: 20px;
    line-height: 30px;
}

.title-divider {
    display: inline-block;
    width: 100px;
    height: 3px;
    background-color: #eee;
    margin-bottom: 20px;
}

.content-more {
    margin: 0 0 5px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--link-color);
}

.content-more i {
    color: #ffffff;
    -webkit-transition: all 0.1s cubic-bezier(0.9, 0, 0.1, 1);
    transition: all 0.1s cubic-bezier(0.9, 0, 0.1, 1);
}

.content-more {
    text-decoration: none;
}

.content-more:hover,
.content-more:focus,
.content-more:active {
    color: #ffffff;
}

.content-more:hover i,
.content-more:focus i,
.content-more:active i {
    color: #ffffff;
    position: relative;
    left: 5px;
    -webkit-transition: all 0.1s cubic-bezier(0.9, 0, 0.1, 1);
    transition: all 0.1s cubic-bezier(0.9, 0, 0.1, 1);
}

.full-section {
    position: relative;
}

.full-img {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 45%;
    background-size: cover;
    background-position: center center;
}

.content-block h3 {
    margin-bottom: 0;
    margin-top: 0;
}

.content-more-btn {
    margin: 0 0 5px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    background-color: #430984;
    color: #fff;
    padding: 15px 20px;
    display: inline-block;
    padding-top: 18px;
}

.content-more-btn i {
    color: #fff;
    -webkit-transition: all 0.1s cubic-bezier(0.9, 0, 0.1, 1);
    transition: all 0.1s cubic-bezier(0.9, 0, 0.1, 1);
}

.content-more-btn {
    text-decoration: none;
}

.content-more-btn:hover,
.content-more-btn:focus,
.content-more-btn:active {
    background-color: #278064;
    color: #fff;
}

.content-more-btn:hover i,
.content-more-btn:focus i,
.content-more-btn:active i {
    color: #fff;
    -webkit-transition: all 0.1s cubic-bezier(0.9, 0, 0.1, 1);
    transition: all 0.1s cubic-bezier(0.9, 0, 0.1, 1);
}

/* ==========================================================
   BUSCADOR DE CIUDAD
   ========================================================== */

.find-city {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: #ffffff;
}

.find-form input {
    background-color: #eee;
    padding: 40px 15px;
    border: none !important;
    border-radius: 4px;
    font-size: 25px;
    font-family: sans-serif;
}

.find-form span {
    border: 0;
    padding: 0;
    border-radius: 0;
}

.find-form span button {
    border: none !important;
    border-radius: 0;
    padding: 25px 50px;
    background-color: #430984;
}

.find-form span button i {
    color: #fff;
}

/* ==========================================================
   FOOTER
   ========================================================== */

.footer-city {
    width: 100%;
    height: 390px;
    background-repeat: no-repeat;
    background-position: right bottom;
    background-color: #eee;
    background-size: cover;
}

.footer {
    background-color: #000;
    color: #fff;
}

.footer .logo-img {
    max-width: 150px;
}

.footer .logo-img img {
    max-width: 100%;
    height: 20px;
}

.footer-logo {
    border-bottom: 1px solid #555;
    margin-bottom: 35px !important;
    padding-bottom: 25px;
    margin-left: 15px !important;
    margin-right: 15px !important;
}

.footer ul {
    list-style: none;
    color: #fff;
    padding: 0;
}

.footer ul li a {
    color: #fff;
    line-height: 26px;
    margin-bottom: 5px;
    display: inline-block;
}

.footer h5 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

.footer .social a i {
    color: #ddd;
}

.footer .social li {
    display: inline-block;
    margin-right: 10px;
    font-size: 20px;
}

.footer .app img {
    height: 40px;
    margin-bottom: 10px;
}

.footer .copy p {
    color: #fff;
    text-align: center;
    font-size: 10px;
    margin-bottom: 0;
    letter-spacing: 1px;
}

.footer .copy {
    padding-bottom: 20px;
    padding-top: 20px;
}

/* ==========================================================
   WRAPPERS / SIDEBAR
   ========================================================== */

.nav .open > a,
.nav .open > a:hover,
.nav .open > a:focus {
    background-color: transparent;
}

/* Wrappers */

#wrapper {
    padding-left: 0;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

#wrapper.toggled {
    /* padding-left: 220px; */
}

#sidebar-wrapper {
    z-index: 1000;
    left: 220px;
    width: 0;
    height: 100%;
    margin-left: -220px;
    overflow-y: auto;
    overflow-x: hidden;
    background: #000;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    margin-top: 60px;
}

#sidebar-wrapper::-webkit-scrollbar {
    display: none;
}

#wrapper.toggled #sidebar-wrapper {
    width: 220px;
}

#page-content-wrapper {
    width: 100%;
}

#wrapper.toggled #page-content-wrapper {
    position: absolute;
    margin-right: -220px;
}

/* Sidebar nav */

.sidebar-nav {
    position: absolute;
    top: 0;
    width: 220px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.sidebar-nav li {
    position: relative;
    line-height: 20px;
    display: inline-block;
    width: 100%;
}

.sidebar-nav li:hover:before,
.sidebar-nav li.open:hover:before {
    width: 100%;
    -webkit-transition: width 0.2s ease-in;
    -moz-transition: width 0.2s ease-in;
    -ms-transition: width 0.2s ease-in;
    transition: width 0.2s ease-in;
}

.sidebar-nav li a {
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 10px;
}

.sidebar-nav li a:hover,
.sidebar-nav li a:active,
.sidebar-nav li a:focus,
.sidebar-nav li.open a:hover,
.sidebar-nav li.open a:active,
.sidebar-nav li.open a:focus {
    color: #fff;
    text-decoration: none;
    background-color: transparent;
}

.sidebar-nav li a img {
    max-width: 100%;
    max-height: 40px;
}

.sidebar-nav > .sidebar-brand {
    height: 65px;
    font-size: 20px;
    line-height: 44px;
}

.sidebar-nav .dropdown-menu {
    position: relative;
    width: 100%;
    padding: 0;
    margin: 0;
    border-radius: 0;
    border: none;
    background-color: #222;
    box-shadow: none;
}

/* Hamburger */

.hamburger {
    position: fixed;
    top: 15px;
    z-index: 999;
    display: block;
    width: 32px;
    height: 32px;
    margin-left: 15px;
    background: transparent;
    border: none;
}

.hamburger:hover,
.hamburger:focus,
.hamburger:active {
    outline: none;
}

.hamburger.is-closed:before {
    content: "";
    display: block;
    width: 100px;
    font-size: 14px;
    color: #fff;
    line-height: 32px;
    text-align: center;
    opacity: 0;
    -webkit-transform: translate3d(0, 0, 0);
    -webkit-transition: all 0.35s ease-in-out;
}

.hamburger.is-closed:hover:before {
    opacity: 1;
    display: block;
    -webkit-transform: translate3d(-100px, 0, 0);
    -webkit-transition: all 0.35s ease-in-out;
}

.hamburger.is-closed .hamb-top,
.hamburger.is-closed .hamb-middle,
.hamburger.is-closed .hamb-bottom,
.hamburger.is-open .hamb-top,
.hamburger.is-open .hamb-middle,
.hamburger.is-open .hamb-bottom {
    position: absolute;
    left: 0;
    height: 2px;
    width: 100%;
}

.hamburger.is-closed .hamb-top,
.hamburger.is-closed .hamb-middle,
.hamburger.is-closed .hamb-bottom {
    background-color: #1a1a1a;
}

.hamburger.is-closed .hamb-top {
    top: 5px;
    -webkit-transition: all 0.35s ease-in-out;
}

.hamburger.is-closed .hamb-middle {
    top: 50%;
    margin-top: -1px;
}

.hamburger.is-closed .hamb-bottom {
    bottom: 5px;
    -webkit-transition: all 0.35s ease-in-out;
}

.hamburger.is-closed:hover .hamb-top {
    top: 0;
    -webkit-transition: all 0.35s ease-in-out;
}

.hamburger.is-closed:hover .hamb-bottom {
    bottom: 0;
    -webkit-transition: all 0.35s ease-in-out;
}

.hamburger.is-open .hamb-top,
.hamburger.is-open .hamb-bottom {
    top: 50%;
    margin-top: -2px;
}

.hamburger.is-open .hamb-top,
.hamburger.is-open .hamb-middle,
.hamburger.is-open .hamb-bottom {
    background-color: #1a1a1a;
}

.hamburger.is-open .hamb-top {
    -webkit-transform: rotate(45deg);
    -webkit-transition: -webkit-transform 0.2s cubic-bezier(0.73, 1, 0.28, 0.08);
}

.hamburger.is-open .hamb-middle {
    display: none;
}

.hamburger.is-open .hamb-bottom {
    -webkit-transform: rotate(-45deg);
    -webkit-transition: -webkit-transform 0.2s cubic-bezier(0.73, 1, 0.28, 0.08);
}

.hamburger.is-open:before {
    content: "";
    display: block;
    width: 100px;
    font-size: 14px;
    color: #fff;
    line-height: 32px;
    text-align: center;
    opacity: 0;
    -webkit-transform: translate3d(0, 0, 0);
    -webkit-transition: all 0.35s ease-in-out;
}

.hamburger.is-open:hover:before {
    opacity: 1;
    display: block;
    -webkit-transform: translate3d(-100px, 0, 0);
    -webkit-transition: all 0.35s ease-in-out;
}

/* Overlay */

.overlay {
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

/* Otros bloques */

.content-block.small h2 {
    font-size: 22px;
}

.full-white {
    padding: 10px;
}

.full-white a {
    background-color: #fff;
    color: #333 !important;
    padding: 10px !important;
    text-align: center;
    line-height: 21px;
    padding-bottom: 6px !important;
}

.full-white a:hover,
.full-white a:focus,
.full-white a:active {
    background-color: #fff !important;
    text-decoration: none;
    color: #000 !important;
}

.white-border {
    padding: 10px;
}

.white-border a {
    background-color: #000;
    color: #fff !important;
    padding: 10px !important;
    text-align: center;
    line-height: 21px;
    padding-bottom: 6px !important;
    border: 2px solid #fff;
}

.white-border a:hover,
.white-border a:focus,
.white-border a:active {
    background-color: #fff;
    text-decoration: none;
    color: #000 !important;
}

.sub-head {
    margin-top: 0;
    line-height: 50px;
    margin-bottom: 15px;
}

/* Car tab */

.car-tab .nav-tabs > li > a {
    border: 0;
    border-bottom: 4px solid transparent !important;
    border-radius: 0;
    padding: 10px 0 10px 0;
    margin-right: 20px;
    font-size: 16px;
}

.car-tab .nav-tabs li.active a,
.car-tab .nav-tabs li.active a:hover,
.car-tab .nav-tabs li.active a:focus,
.car-tab .nav-tabs li.active a:active,
.car-tab .nav-tabs li a:hover,
.car-tab .nav-tabs li a:focus,
.car-tab .nav-tabs li a:active {
    color: #430984;
    border: 0;
    border-bottom: 4px solid #430984 !important;
    background-color: transparent;
}

/* Map responsive */

.map-responsive {
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    height: 0;
}

.map-responsive iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}

/* Fare form */

.fare-form input {
    border: 0;
    border-radius: 0;
    line-height: 10px;
    padding: 16px 15px 12px 12px;
    height: 45px;
}

.fare-form input,
.fare-form select {
    border-radius: 2px !important;
    box-shadow: 2px 2px 10px #eaeaea;
    border-color: #f3f3f3;
}

.fare-form span {
    border: 0;
    padding: 0;
    border-radius: 0;
}

.fare-form span button {
    border: 0;
    padding: 0;
    border-radius: 0;
    height: 45px;
    padding: 10px 20px;
    background-color: #430984;
}

.fare-form span button i {
    color: #fff;
}

.fare-form {
    max-width: 400px;
    margin-top: 10px;
    width: 100%;
}

.fare-form input {
    border: 1px solid #eee;
}

/* Fare radio */

.fare-radio input[type="radio"] {
    display: none;
}

.fare-radio input:checked + label {
    background-color: #000;
    color: #fff;
}

.fare-radio label {
    width: 100% !important;
    display: block !important;
    max-width: 400px;
    height: 40px;
    padding: 10px;
    border-bottom: 1px solid #111;
    margin: 0;
}

.fare-radio label .name {
    float: left;
}

.fare-radio label .rate {
    float: right;
}

.fare-radio input:checked + label .name,
.fare-radio input:checked + label .rate {
    color: #fff;
}

.fare-detail {
    margin-top: 20px;
}

/* Botones generales */

.full-primary-btn {
    border: 0;
    margin: 0;
    padding: 10px;
    background-color: #430984;
    color: #fff;
    text-align: center;
    display: block;
    width: 100%;
    margin-top: 20px;
    border-radius: 30px;
    font-weight: 600;
}

.fare-btn {
    max-width: 400px;
}

.drive-btn {
    max-width: 300px;
    display: inline-block;
    width: auto;
}

/* Login / Full page */

.full-page-bg {
    background-size: cover;
    position: relative;
}

.log-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.45);
}

.full-page-bg-inner {
    padding: 30px 30px;
}

.login-logo {
    padding: 20px;
    background-color: #fff;
    display: inline-block;
}

.login-logo img {
    height: 30px;
}

.log-left h2 {
    font-size: 4.5em;
    color: #fff;
    margin-top: 1em;
}

.log-left p {
    color: #fff;
    line-height: 2em;
    font-size: 1.2em;
}

.login-box-outer {
    max-width: 400px;
    float: right;
}

.login-box {
    background-color: #f1f1f1;
    padding: 40px 20px;
}

.log-blk-btn {
    background-color: #111;
    padding: 20px;
    display: block;
    color: #fff;
    text-align: center;
    padding-bottom: 16px;
}

.log-blk-btn:hover,
.log-blk-btn:focus,
.log-blk-btn:active {
    background-color: #000;
    color: #fff;
    text-decoration: none;
}

.login-box h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 18px;
}

.login-box input {
    display: block;
    border-radius: 0;
    padding: 10px;
    padding-top: 14px;
    height: 40px;
    margin-bottom: 15px;
    width: 100%;
}

.login-box select {
    display: block;
    border-radius: 0;
    padding: 10px;
    padding-top: 14px;
    height: 40px;
    margin-bottom: 15px;
    width: 100%;
}

.log-teal-btn {
    background-color: #430984;
    padding: 20px;
    display: block;
    color: #fff;
    text-align: center;
    padding-bottom: 16px;
    width: 100%;
    border: 0;
    margin-top: 10px;
    margin-bottom: 10px;
}

.log-teal-btn:hover,
.log-teal-btn:focus,
.log-teal-btn:active {
    background-color: #430984;
    color: #fff;
}

/* Social login */

.log-teal-btn.fb {
    background-color: #3b5998;
    color: #fff;
    font-size: 10px;
    padding: 12px 10px 10px;
    margin: 5px 0;
}

.log-teal-btn.fb i {
    color: #fff;
    margin-right: 10px;
}

.log-teal-btn.gp {
    background-color: #dd4b39;
    color: #fff;
    font-size: 10px;
    padding: 12px 10px 10px;
    margin: 5px 0;
}

.log-teal-btn.gp i {
    color: #fff;
    margin-right: 10px;
}

.helper a {
    color: var(--link-color);
}

.helper a:hover,
.helper a:focus,
.helper a:active {
    color: var(--link-color);
    text-decoration: none;
}

.helper {
    margin-bottom: 0;
}

.log-copy {
    background-color: #f1f1f100;
    text-align: center;
    padding: 10px;
    margin-top: 20px;
}

/* Responsivo */

@media screen and (max-width: 991px) {
    .img-block {
        margin-top: 20px;
    }

    .find-city {
        padding: 40px 0;
    }

    .img-block img {
        max-height: 300px;
        margin: 20px auto;
        max-width: 100%;
    }

    .full-img {
        position: relative;
        height: 300px;
        width: 100%;
        margin: 20px auto;
    }

    .login-box-outer {
        float: none;
        margin: 30px auto;
    }

    .content-block {
        margin-bottom: 30px;
    }

    .row .box-shadow {
        box-shadow: 0px 0px 20px #dcdade;
        padding: 20px;
        border-radius: 5px;
        height: auto;
    }

    .app-dwon a img {
        height: 60px;
        margin-bottom: 20px;
    }

    .support img {
        max-width: 100%;
        width: 160px;
    }
}

@media screen and (max-width: 800px) {
    .navbar-nav > li > a {
        font-size: 16px;
        padding: 10px 15px;
    }

    .support {
        text-align: center;
    }

    .navbar-brand {
        margin-left: 10px !important;
    }
}

@media screen and (max-width: 767px) {
    .log-left h2 {
        font-size: 40px;
        line-height: 55px;
    }
}

@media screen and (max-width: 500px) {
    .footer-city {
        height: 220px;
    }

    .log-left h2 {
        font-size: 30px;
        line-height: 45px;
    }

    .log-right {
        padding: 0;
    }
}

/* Checkbox */

.checkbox input {
    display: inline-block;
    padding: 0 !important;
    padding-top: 14px;
    height: 20px;
    width: 15px;
    margin-top: -1px;
}

.left img {
    height: 60px;
}

input[type="checkbox"] {
    display: inline-block;
    padding: 0 !important;
    padding-top: 14px;
    height: 14px;
    width: 16px;
    margin-top: -3px;
}

/* New Index */

.banner-ride-drive {
    background-color: #fff;
    padding: 15px;
    border-radius: 5px;
}

.banner-ride-drive .left {
    float: left;
    width: 60px;
    height: 60px;
    margin-right: 10px;
}

.banner-ride-drive .right {
    margin-left: 70px;
}

.more-btn {
    background-color: #430984;
    padding: 15px 20px;
    color: #fff;
    border-radius: 10px;
}

.more-btn:hover,
.more-btn:focus,
.more-btn:active {
    color: #ffffff;
    transition: 0.4s ease-in-out all;
}

.content-block {
    height: auto;
    padding: 40px 25px;
    border-radius: 4px;
}

.btn-title {
    font-size: 25px;
    font-weight: 600;
    color: var(--link-color);
    text-align: center;
    font-family: sans-serif;
}

.btn-icon {
    float: left;
    clear: right;
    margin: 0 auto;
}

.center {
    text-align: center;
    padding-bottom: 40px;
}

.img-box img {
    margin: 0 auto;
    max-width: 100%;
    max-height: 600px;
}

.icon img {
    width: 60px;
}

.btn-icon img {
    width: 60px;
}

.topmenu-btn {
    padding: 10px 15px !important;
    margin: 10px;
    font-weight: 500;
    font-size: 16px !important;
    background-color: #430984;
    color: #fff;
    border-radius: 30px;
    box-shadow: 1px 1px 5px #998daf;
}

.pad-60 {
    padding-top: 60px;
    padding-bottom: 60px;
}

.app-dwon {
    background-image: url("../img/app-download-bg.jpg");
    background-size: cover;
    background-position: center;
    position: relative;
    content: "";
}

.app-dwon a img {
    height: 60px;
}

.app-dwon h2 {
    font-size: 35px;
    font-weight: 600;
    color: #fff;
    font-family: sans-serif;
}

.find-city h2 {
    padding-bottom: 30px;
}

.socil-media ul li {
    display: inline-block;
    border-radius: 50px;
    margin-right: 30px;
}

.white {
    color: #ffffff;
}

.socil-media ul li i {
    color: var(--icon-color);
}

.footer-social h2 {
    margin-bottom: 40px;
    color: #fff;
}

.box-shadow {
    box-shadow: 0px 0px 20px #dcdade;
    padding: 20px;
    border-radius: 5px;
    height: 320px;
}

.box-shadow:hover {
    box-shadow: 1px 1px 5px #e7def7;
    padding: 20px;
    border-radius: 5px;
    height: 320px;
    transition: 0.2s all;
}

.btn-outline {
    padding: 10px 15px !important;
    margin: 9px;
    font-weight: 500;
    font-size: 16px !important;
    background-color: #d9d42b;
    color: #2f2f2f;
    border-radius: 10px;
    transition: 0.2s all;
}

span.phone-icon i {
    position: relative;
    top: 20px;
    color: var(--icon-color);
}

* {
    outline: none;
}

.call-box {
    background-color: #f9f9f9;
    padding: 50px 20px;
    border-radius: 4px;
    box-shadow: 0px 0px 20px #dcdade;
}

.support img {
    max-width: 100%;
}

.sup-txt {
    text-align: center;
    padding-top: 30px;
}

.call-num a {
    font-weight: 600;
    text-decoration: none;
}

/* ==========================================================
   HOME NUEVA (index profesional)
   ========================================================== */

.home-page {
    background-color: #f5f7fb;
}

.home-section {
    position: relative;
    z-index: 1;
}

.flex-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.flex-row--reverse {
    flex-direction: row-reverse;
}

@media (max-width: 991px) {
    .flex-row,
    .flex-row--reverse {
        flex-direction: column !important;
    }

    .home-section {
        text-align: center;
    }
}

.home-hero {
    color: #fff;
    position: relative;
    min-height: 360px;
    background-size: cover;
}

.home-hero .banner-overlay {
    background: rgba(0, 0, 0, 0.55);
}

.home-hero-actions {
    margin-top: 25px;
}

.home-hero-card {
    display: flex;
    align-items: center;
    padding: 18px 20px;
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}

.home-hero-card__icon img {
    width: 52px;
    height: auto;
}

.home-hero-card__icon {
    margin-right: 16px;
}

.home-hero-card__content {
    display: flex;
    flex-direction: column;
}

.home-hero-card__link {
    text-decoration: none;
    color: #fff;
}

.home-hero-card__subtitle {
    font-size: 13px;
    margin: 2px 0 0;
    opacity: 0.85;
}

.home-image {
    max-width: 100%;
    height: auto;
}

.home-full-bg {
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    min-height: 260px;
}

/* Finder ciudad ajustado a la nueva home */
.home-find-city__form {
    width: 100%;
}

.home-find-city__input {
    border-radius: 999px 0 0 999px !important;
    border: none;
    padding-left: 18px;
}

.home-find-city__addon {
    border-radius: 0 999px 999px 0 !important;
    border: none;
    background: transparent;
    padding: 0;
}

.home-find-city__button {
    border: none;
    background: #430984;
    border-radius: 0 999px 999px 0;
    padding: 8px 16px;
    cursor: pointer;
}

.home-find-city__button i {
    color: #ffffff;
}

/* Texto blanco en los botones del HERO */
.home-hero-card .btn-title {
    color: #ffffff;
}

.home-hero-card__link:hover .btn-title,
.home-hero-card__link:focus .btn-title {
    color: #ffffff;
    text-decoration: none;
}

/* ==========================================================
   LOGIN / AUTH MODERNO
   ========================================================== */

/* Centrado vertical de la fila principal del login */
.auth-row {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Columna izquierda (branding) */
.auth-left {
    color: #ffffff;
    z-index: 2;
}

.auth-logo {
    padding: 14px 22px;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.auth-logo img {
    height: 30px;
}

.auth-title {
    margin-top: 30px;
    font-size: 40px;
    font-weight: 600;
    color: #ffffff;
}

.auth-subtitle {
    margin-top: 10px;
    max-width: 420px;
    font-size: 16px;
    line-height: 1.7;
    color: #f2f2f2;
}

/* Columna derecha */
.auth-right {
    display: flex;
    justify-content: flex-end;
    z-index: 2;
}

/* Wrapper de la card */
.auth-box-wrapper {
    max-width: 420px;
    width: 100%;
}

/* Card de login */
.auth-card {
    background-color: rgba(255, 255, 255, 0.98);
    border-radius: 18px;
    padding: 25px 24px 22px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

/* Texto de registro arriba */
.auth-register-cta {
    margin-bottom: 5px;
}

.auth-register-text {
    font-size: 13px;
    color: #777;
    text-align: right;
    margin-bottom: 5px;
}

.auth-register-link {
    color: var(--link-color);
    font-weight: 600;
}

.auth-register-link:hover,
.auth-register-link:focus {
    color: var(--link-hover-color);
    text-decoration: none;
}

/* Título y subtítulo de la card */
.auth-card-title {
    margin-top: 5px;
    margin-bottom: 4px;
    font-size: 22px;
    font-weight: 600;
    color: #222222;
}

.auth-card-subtitle {
    margin-bottom: 18px;
    font-size: 13px;
    color: #7a7a7a;
}

/* Labels e inputs */
.auth-label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: #555;
    margin-bottom: 4px;
}

.auth-input {
    height: 44px;
    border-radius: 10px !important;
    border: 1px solid #dde0e6;
    font-size: 14px;
    padding: 10px 12px;
    box-shadow: none !important;
    background-color: #ffffff;
}

.auth-input::placeholder {
    color: #b0b5c0;
    font-size: 13px;
}

.auth-input:focus {
    border-color: #430984;
    box-shadow: 0 0 0 2px rgba(67, 9, 132, 0.18) !important;
}

/* Errores */
.auth-error {
    font-size: 12px;
    margin-top: 3px;
}

/* Recordarme + Olvidé contraseña */
.auth-row-inline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 4px;
    margin-bottom: 10px;
}

.auth-remember span {
    font-size: 13px;
    color: #444;
}

.auth-forgot-link {
    font-size: 13px;
    color: var(--link-color);
}

.auth-forgot-link:hover,
.auth-forgot-link:focus {
    color: var(--link-hover-color);
    text-decoration: none;
}

/* reCAPTCHA */
.auth-recaptcha {
    margin-top: 8px;
    margin-bottom: 14px;
}

/* Botón principal */
.auth-submit {
    width: 100%;
    border-radius: 999px;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.3px;
    padding: 14px 20px;
    background-color: #430984;
    box-shadow: 0 10px 20px rgba(67, 9, 132, 0.35);
}

.auth-submit:hover,
.auth-submit:focus {
    background-color: #36096a;
    color: #ffffff;
}

/* Social login */
.auth-divider {
    text-align: center;
    margin: 18px 0 10px;
}

.auth-divider-line {
    display: inline-block;
    width: 26%;
    height: 1px;
    background-color: #e2e4ea;
    vertical-align: middle;
}

.auth-divider-text {
    display: inline-block;
    margin: 0 8px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
}

.auth-social-btn {
    width: 100%;
    border-radius: 999px;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 500;
}

.auth-social-btn i {
    margin-right: 8px;
}

/* Copy */
.auth-copy p {
    font-size: 11px;
    color: #ffffff;
}

/* RESPONSIVE AUTH */
@media (max-width: 991px) {
    .auth-row {
        min-height: 100vh;
        display: block;
    }

    .auth-left {
        text-align: center;
        margin-bottom: 20px;
    }

    .auth-subtitle {
        max-width: 100%;
    }

    .auth-right {
        justify-content: center;
    }

    .auth-box-wrapper {
        margin: 0 auto 20px;
    }
}

@media (max-width: 480px) {
    .auth-card {
        padding: 20px 16px 18px;
    }

    .auth-title {
        font-size: 32px;
    }

    .auth-logo {
        padding: 10px 16px;
    }
}
