@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

:root {
    --azul-oscuro: #071f4f;
    --azul: #074dad;
    --azul-claro: #1673df;
    --blanco: #ffffff;
    --gris-fondo: #f5f7fb;
    --gris: #687386;
    --texto: #10213c;
    --verde: #25d366;
    --sombra: 0 15px 45px rgba(7, 31, 79, 0.10);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--texto);
    background: var(--blanco);
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
}

.container {
    width: min(1180px, 90%);
    margin: auto;
}


/* =========================
   HEADER
========================= */

.header {
    width: 100%;
    background: rgba(255, 255, 255, 0.97);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
}

.nav-container {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo img {
    width: 145px;
    height: 76px;
    object-fit: contain;
}

.nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav a {
    font-size: 14px;
    font-weight: 700;
    color: var(--texto);
    position: relative;
    transition: .3s;
}

.nav a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 3px;
    background: var(--azul);
    left: 0;
    bottom: -8px;
    border-radius: 20px;
    transition: .3s;
}

.nav a:hover {
    color: var(--azul);
}

.nav a:hover::after {
    width: 100%;
}

.btn-cotizar {
    background: var(--azul);
    color: white;
    padding: 13px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 9px;
    transition: .3s;
}

.btn-cotizar:hover {
    background: var(--azul-oscuro);
    transform: translateY(-2px);
}

.menu-mobile {
    display: none;
    border: none;
    background: transparent;
    color: var(--azul-oscuro);
    font-size: 26px;
    cursor: pointer;
}


/* =========================
   HERO
========================= */

.hero {
    min-height: 670px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;

    background-image:
        linear-gradient(
            90deg,
            rgba(4, 22, 55, 0.95) 0%,
            rgba(4, 22, 55, 0.82) 32%,
            rgba(4, 22, 55, 0.45) 58%,
            rgba(4, 22, 55, 0.12) 78%,
            rgba(4, 22, 55, 0.03) 100%
        ),
        url("../img/vehiculos/hyundai-staria.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 15px;
    border: 1px solid rgba(255,255,255,.25);
    background: rgba(255,255,255,.10);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 22px;
}

.hero h1 {
    max-width: 750px;
    font-size: clamp(42px, 6vw, 73px);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 22px;
}

.hero h1 span {
    color: #68adff;
}

.hero p {
    max-width: 650px;
    font-size: 18px;
    color: rgba(255,255,255,.88);
    margin-bottom: 34px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.btn-primary,
.btn-secondary {
    min-height: 52px;
    padding: 0 23px;
    border-radius: 12px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    transition: .3s;
}

.btn-primary {
    background: var(--azul-claro);
    color: white;
}

.btn-primary:hover {
    background: white;
    color: var(--azul-oscuro);
    transform: translateY(-3px);
}

.btn-secondary {
    border: 1px solid rgba(255,255,255,.5);
    color: white;
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: white;
    color: var(--azul-oscuro);
}


/* =========================
   BENEFICIOS
========================= */

.beneficios {
    position: relative;
    margin-top: -45px;
    z-index: 10;
}

.beneficios-grid {
    background: white;
    border-radius: 18px;
    padding: 27px 35px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    box-shadow: var(--sombra);
}

.beneficio {
    display: flex;
    align-items: center;
    gap: 14px;
}

.beneficio-icon {
    width: 47px;
    height: 47px;
    flex: 0 0 47px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: var(--azul);
    background: #edf5ff;
    font-size: 20px;
}

.beneficio strong {
    display: block;
    font-size: 14px;
    color: var(--azul-oscuro);
}

.beneficio span {
    display: block;
    font-size: 11px;
    color: var(--gris);
    margin-top: 3px;
}


/* =========================
   SECCIONES
========================= */

.section {
    padding: 105px 0;
}

.section-heading {
    max-width: 720px;
    margin: 0 auto 50px;
    text-align: center;
}

.section-tag {
    display: inline-block;
    color: var(--azul);
    background: #edf5ff;
    border-radius: 50px;
    padding: 7px 14px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.2px;
    margin-bottom: 14px;
}

.section-heading h2,
.guiado-info h2 {
    color: var(--azul-oscuro);
    font-size: clamp(31px, 4vw, 46px);
    line-height: 1.15;
    letter-spacing: -1px;
    font-weight: 800;
}

.section-heading h2 span,
.guiado-info h2 span {
    color: var(--azul);
}

.section-heading p {
    color: var(--gris);
    font-size: 15px;
    margin-top: 14px;
}


/* =========================
   VEHÍCULOS
========================= */

.vehiculos {
    background: var(--gris-fondo);
}

.vehiculos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 27px;
}

.vehiculo-card {
    position: relative;
    overflow: hidden;
    background: white;
    border-radius: 21px;
    border: 1px solid #e9edf4;
    box-shadow: 0 7px 25px rgba(10, 35, 80, .06);
    transition: .35s;
}

.vehiculo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(7, 31, 79, .14);
}

.vehiculo-capacidad {
    position: absolute;
    top: 17px;
    left: 17px;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 13px;
    border-radius: 50px;
    background: var(--azul);
    color: white;
    font-size: 11px;
    font-weight: 800;
    box-shadow: 0 5px 15px rgba(7, 77, 173, .28);
}

.capacidad-6 {
    background: #126bd1;
}

.capacidad-10 {
    background: #174b92;
}

.capacidad-15 {
    background: #08285b;
}

.vehiculo-imagen {
    height: 245px;
    background:
        radial-gradient(circle at center, #ffffff 0%, #f7f9fc 70%);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 34px 22px 16px;
    overflow: hidden;
}

.vehiculo-imagen img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform .4s ease;
}

.vehiculo-card:hover .vehiculo-imagen img {
    transform: scale(1.06);
}

.vehiculo-info {
    padding: 24px;
}

.tipo-vehiculo {
    font-size: 11px;
    color: var(--azul);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .8px;
}

.vehiculo-info h3 {
    color: var(--azul-oscuro);
    font-size: 23px;
    line-height: 1.2;
    margin: 5px 0 18px;
}

.vehiculo-datos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 15px;
}

.vehiculo-datos span,
.caracteristicas span {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #46536a;
    font-size: 12px;
    font-weight: 600;
}

.vehiculo-datos i,
.caracteristicas i {
    color: var(--azul);
}

.caracteristicas {
    border-top: 1px solid #edf0f5;
    border-bottom: 1px solid #edf0f5;
    padding: 15px 0;
    display: flex;
    gap: 15px;
    justify-content: space-between;
}

.vehiculo-descripcion {
    min-height: 66px;
    color: var(--gris);
    font-size: 13px;
    margin: 18px 0;
}

.btn-rutas {
    width: 100%;
    min-height: 47px;
    background: var(--azul-oscuro);
    color: white;
    border-radius: 11px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    font-weight: 800;
    transition: .3s;
}

.btn-rutas:hover {
    background: var(--azul);
}


/* =========================
   DESTINOS
========================= */

.destinos {
    background: #ffffff;
}


/* SUBTÍTULOS */

.destinos-subtitulo {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;

    margin-bottom: 25px;
}

.destinos-subtitulo > div {
    max-width: 650px;
}

.destinos-subtitulo > div > span {
    color: var(--azul);

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.destinos-subtitulo h3 {
    color: var(--azul-oscuro);

    font-size: 30px;
    line-height: 1.2;

    margin-top: 4px;
}

.destinos-subtitulo > p {
    max-width: 420px;

    color: var(--gris);

    font-size: 13px;
    line-height: 1.6;
}


/* ==========================================
   TRASLADOS
========================================== */

.traslados-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 18px;
}


.traslado-card {
    position: relative;

    min-height: 135px;

    padding: 23px;

    border: 1px solid #e5ebf4;

    border-radius: 18px;

    background: white;

    display: grid;

    grid-template-columns: 52px 1fr 25px;

    align-items: center;

    gap: 15px;

    box-shadow:
        0 7px 25px rgba(7, 31, 79, .05);

    transition: .3s ease;
}


.traslado-card:hover {
    transform: translateY(-5px);

    border-color: #a9cdf9;

    box-shadow:
        0 15px 35px rgba(7, 31, 79, .10);
}


.traslado-icon {
    width: 52px;
    height: 52px;

    border-radius: 14px;

    background: #edf5ff;

    color: var(--azul);

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 20px;

    transition: .3s;
}


.traslado-card:hover .traslado-icon {
    color: white;

    background: var(--azul);
}


.traslado-tipo {
    color: var(--azul);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1px;

    text-transform: uppercase;
}


.traslado-card h4 {
    color: var(--azul-oscuro);

    font-size: 15px;

    margin-top: 3px;

    line-height: 1.3;
}


.traslado-card p {
    color: var(--gris);

    font-size: 11px;

    margin-top: 3px;
}


.traslado-arrow {
    color: #94a3b8;

    font-size: 13px;

    transition: .3s;
}


.traslado-card:hover .traslado-arrow {
    color: var(--azul);

    transform: translateX(4px);
}


/* ==========================================
   TOURS
========================================== */

.destinos-subtitulo-tour {
    margin-top: 75px;
}


.destinos-fotos-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 23px;
}


.destino-foto {
    position: relative;

    height: 390px;

    overflow: hidden;

    border-radius: 22px;

    background: #071f4f;

    box-shadow:
        0 15px 40px rgba(7, 31, 79, .12);

    transition: .35s ease;
}


.destino-foto:hover {
    transform: translateY(-7px);

    box-shadow:
        0 25px 55px rgba(7, 31, 79, .20);
}


.destino-foto img {
    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:
        transform .5s ease;
}


.destino-foto:hover img {
    transform: scale(1.08);
}


/* OSCURECER PARTE INFERIOR */

.destino-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(4, 22, 55, 0.02) 15%,
            rgba(4, 22, 55, 0.15) 45%,
            rgba(4, 22, 55, 0.93) 100%
        );
}


/* CONTENIDO */

.destino-contenido {
    position: absolute;

    left: 23px;
    right: 23px;
    bottom: 23px;

    z-index: 2;

    color: white;
}


.destino-tipo {
    display: inline-flex;

    align-items: center;

    padding: 6px 11px;

    border-radius: 50px;

    margin-bottom: 8px;

    background:
        rgba(255,255,255,.17);

    border:
        1px solid rgba(255,255,255,.15);

    backdrop-filter: blur(10px);

    color: white;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: .8px;

    text-transform: uppercase;
}


.destino-contenido h3 {
    color: white;

    font-size: 22px;

    line-height: 1.2;

    margin-bottom: 10px;
}


.destino-link {
    display: flex;

    align-items: center;

    gap: 7px;

    color: #99caff;

    font-size: 11px;

    font-weight: 700;

    transition: .3s;
}


.destino-foto:hover .destino-link {
    color: white;
}


.destino-link i {
    transition: .3s;
}


.destino-foto:hover .destino-link i {
    transform: translateX(5px);
}


/* DESTINO DESTACADO */

.destino-destacado::after {
    content: "POPULAR";

    position: absolute;

    top: 17px;
    right: 17px;

    z-index: 3;

    padding: 7px 11px;

    border-radius: 50px;

    background: var(--azul);

    color: white;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1px;
}


/* ==========================================
   CTA DESTINOS
========================================== */

.destinos-cta {
    margin-top: 55px;

    padding: 38px 42px;

    border-radius: 23px;

    background:
        linear-gradient(
            135deg,
            #071f4f,
            #0756bd
        );

    display: flex;

    align-items: center;

    justify-content:
        space-between;

    gap: 35px;

    color: white;
}


.destinos-cta > div > span {
    color: #91c4ff;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.4px;
}


.destinos-cta h3 {
    font-size: 25px;

    margin: 5px 0;
}


.destinos-cta p {
    max-width: 650px;

    color:
        rgba(255,255,255,.70);

    font-size: 12px;
}


.destinos-whatsapp {
    flex-shrink: 0;

    min-height: 50px;

    padding: 0 21px;

    border-radius: 12px;

    background: #25d366;

    color: white;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    font-size: 12px;

    font-weight: 800;

    transition: .3s;
}


.destinos-whatsapp:hover {
    transform: translateY(-3px);

    box-shadow:
        0 12px 25px
        rgba(37,211,102,.25);
}


/* ==========================================
   RESPONSIVE DESTINOS
========================================== */

@media (max-width: 1000px) {

    .traslados-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .destinos-fotos-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


@media (max-width: 750px) {

    .destinos-subtitulo {
        flex-direction: column;

        align-items: flex-start;

        gap: 10px;
    }


    .destinos-subtitulo-tour {
        margin-top: 55px;
    }


    .destinos-cta {
        flex-direction: column;

        align-items: flex-start;

        padding: 30px;
    }

}


@media (max-width: 600px) {

    .traslados-grid {
        grid-template-columns: 1fr;
    }


    .destinos-fotos-grid {
        grid-template-columns: 1fr;
    }


    .destino-foto {
        height: 380px;
    }


    .destinos-subtitulo h3 {
        font-size: 25px;
    }


    .destinos-whatsapp {
        width: 100%;
    }

}


/* =========================
   GUIADO
========================= */

.guiado {
    background: var(--gris-fondo);
}

.guiado-container {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    align-items: center;
    gap: 70px;
}

.guiado-info p {
    color: var(--gris);
    margin: 18px 0 25px;
    max-width: 650px;
}

.guiado-beneficios {
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-bottom: 30px;
}

.guiado-beneficios span {
    font-size: 14px;
    font-weight: 600;
    color: #33415a;
}

.guiado-beneficios i {
    color: var(--azul);
    margin-right: 8px;
}

.guiado .btn-primary:hover {
    background: var(--azul-oscuro);
    color: white;
}

.guiado-card {
    min-height: 390px;
    background:
        linear-gradient(
            145deg,
            var(--azul-oscuro),
            var(--azul)
        );
    border-radius: 25px;
    color: white;
    padding: 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: var(--sombra);
}

.guiado-card > i {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255,255,255,.12);
    font-size: 31px;
    margin-bottom: 22px;
}

.guiado-card h3 {
    font-size: 27px;
    margin-bottom: 10px;
}

.guiado-card p {
    color: rgba(255,255,255,.78);
    font-size: 14px;
}

.precio-consulta {
    margin-top: 24px;
    background: white;
    color: var(--azul-oscuro);
    display: inline-block;
    width: fit-content;
    border-radius: 50px;
    padding: 9px 16px;
    font-size: 12px;
    font-weight: 800;
}


/* =========================
   CONTACTO
========================= */

.contacto {
    padding: 70px 0;
    background: linear-gradient(
        135deg,
        #062252,
        #0751ae
    );
    color: white;
}

.contacto-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.contacto span {
    font-size: 12px;
    letter-spacing: 1.5px;
    font-weight: 800;
    color: #93c5ff;
}

.contacto h2 {
    font-size: clamp(30px, 4vw, 45px);
    line-height: 1.15;
    margin: 7px 0 10px;
}

.contacto p {
    max-width: 660px;
    color: rgba(255,255,255,.76);
    font-size: 14px;
}

.btn-whatsapp {
    flex-shrink: 0;
    padding: 16px 23px;
    background: var(--verde);
    border-radius: 13px;
    color: white;
    font-size: 14px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 9px;
    transition: .3s;
    box-shadow: 0 10px 25px rgba(37, 211, 102, .22);
}

.btn-whatsapp:hover {
    transform: translateY(-4px);
}


/* =========================
   FOOTER
========================= */

.footer {
    background: #04152f;
    color: white;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    padding-top: 70px;
    padding-bottom: 55px;
}

.footer-brand img {
    width: 165px;
    height: 105px;
    background: white;
    object-fit: contain;
    border-radius: 12px;
    margin-bottom: 18px;
}

.footer-brand p {
    max-width: 330px;
    color: #94a1b5;
    font-size: 13px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column h4 {
    font-size: 15px;
    margin-bottom: 8px;
}

.footer-column a,
.footer-column span {
    font-size: 12px;
    color: #94a1b5;
    transition: .2s;
}

.footer-column a:hover {
    color: white;
}

.footer-column i {
    margin-right: 6px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 22px 5%;
    text-align: center;
    color: #718099;
    font-size: 11px;
}


/* =========================
   WHATSAPP FLOTANTE
========================= */

.whatsapp-float {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 58px;
    height: 58px;
    background: var(--verde);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 29px;
    z-index: 999;
    box-shadow: 0 10px 30px rgba(37, 211, 102, .35);
    transition: .3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1024px) {

    .nav {
        gap: 16px;
    }

    .nav a {
        font-size: 12px;
    }

    .vehiculos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .destinos-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .beneficios-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 850px) {

    .nav {
        position: fixed;
        top: 78px;
        left: -100%;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 30px;
        box-shadow: 0 15px 30px rgba(0,0,0,.08);
        transition: .3s;
    }

    .nav.active {
        left: 0;
    }

    .nav a {
        font-size: 15px;
    }

    .menu-mobile {
        display: block;
    }

    .btn-cotizar {
        margin-left: auto;
    }

    .hero {
        min-height: 610px;
    }

    .hero h1 {
        letter-spacing: -1px;
    }

    .guiado-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contacto-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 650px) {

    .container {
        width: min(92%, 520px);
    }

    .nav-container {
        min-height: 76px;
    }

    .logo img {
        width: 105px;
        height: 62px;
    }

    .btn-cotizar {
        display: none;
    }

    .hero {
        min-height: 610px;
        background-position: 62% center;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero p {
        font-size: 15px;
    }

    .hero-buttons {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-buttons a {
        width: 100%;
    }

    .beneficios {
        margin-top: -20px;
    }

    .beneficios-grid {
        grid-template-columns: 1fr;
        padding: 24px;
    }

    .section {
        padding: 75px 0;
    }

    .section-heading {
        margin-bottom: 35px;
    }

    .section-heading h2,
    .guiado-info h2 {
        font-size: 32px;
    }

    .vehiculos-grid {
        grid-template-columns: 1fr;
    }

    .vehiculo-imagen {
        height: 230px;
    }

    .destinos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .destino-card {
        padding: 17px;
        min-height: 120px;
    }

    .destino-card span {
        font-size: 11px;
    }

    .guiado-card {
        min-height: auto;
        padding: 35px 27px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .whatsapp-float {
        width: 53px;
        height: 53px;
        right: 17px;
        bottom: 17px;
    }
}
.hero {
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 55%;
}


.hero::before {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        90deg,
        rgba(4, 22, 55, 0.94) 0%,
        rgba(4, 22, 55, 0.80) 32%,
        rgba(4, 22, 55, 0.42) 55%,
        rgba(4, 22, 55, 0.10) 75%,
        transparent 100%
    );

    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}


.hero-content h1 {
    max-width: 760px;
}

.hero-content p {
    max-width: 650px;
}

/* ==========================================
   PORTADA PRINCIPAL - CUSCO TRANSPORTE
========================================== */
.hero-portada {
    min-height: 670px !important;
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    overflow: hidden !important;

    background-image:
        linear-gradient(
            90deg,
            rgba(4, 22, 55, 0.95) 0%,
            rgba(4, 22, 55, 0.82) 34%,
            rgba(4, 22, 55, 0.42) 58%,
            rgba(4, 22, 55, 0.10) 78%,
            transparent 100%
        ),
        url("../img/vehiculos/hyundai-staria.png") !important;

    background-size: cover !important;
    background-position: 68% center !important;
    background-repeat: no-repeat !important;
}

.hero-portada .hero-content {
    position: relative;
    z-index: 2;
}

/* =========================================
   PÁGINA RUTAS
========================================= */


/* PORTADA */

.ruta-hero {
    height: 520px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.ruta-hero > img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.ruta-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(3,15,35,.10) 10%,
            rgba(3,20,50,.45) 55%,
            rgba(3,20,50,.95) 100%
        );
}

.ruta-hero-content {
    position: relative;
    z-index: 2;

    color: white;

    padding-bottom: 60px;
}

.ruta-volver {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 25px;

    font-size: 12px;
    font-weight: 700;

    color: rgba(255,255,255,.85);
}

.ruta-volver:hover {
    color: white;
}

.ruta-tag {
    display: block;

    color: #9ccaff;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;

    margin-bottom: 5px;
}

.ruta-hero h1 {
    font-size: clamp(40px, 5vw, 65px);
    line-height: 1.05;

    max-width: 800px;
}

.ruta-hero p {
    max-width: 700px;

    margin-top: 14px;

    color: rgba(255,255,255,.80);

    font-size: 15px;
}


/* =========================
   PRECIOS
========================= */

.ruta-precios {
    background: #f5f7fb;
}

.precios-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;
}

.precio-card {
    background: white;

    border: 1px solid #e5ebf4;

    border-radius: 21px;

    padding: 28px;

    box-shadow:
        0 8px 30px rgba(7,31,79,.06);

    transition: .3s ease;
}

.precio-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 20px 45px rgba(7,31,79,.13);
}

.precio-icon {
    width: 55px;
    height: 55px;

    border-radius: 15px;

    background: #edf5ff;

    color: var(--azul);

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 22px;

    margin-bottom: 18px;
}

.precio-capacidad {
    display: inline-block;

    color: var(--azul);

    font-size: 10px;
    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: .7px;
}

.precio-card h3 {
    color: var(--azul-oscuro);

    font-size: 19px;

    margin: 5px 0 9px;
}

.precio-vehiculos {
    min-height: 42px;

    color: var(--gris);

    font-size: 11px;

    line-height: 1.5;
}

.precio-monto {
    padding: 19px 0;

    margin: 18px 0;

    border-top:
        1px solid #edf0f5;

    border-bottom:
        1px solid #edf0f5;
}

.precio-monto small {
    display: block;

    color: var(--gris);

    font-size: 10px;
}

.precio-monto strong {
    display: block;

    color: var(--azul-oscuro);

    font-size: 27px;

    margin-top: 2px;
}

.precio-card ul {
    list-style: none;

    display: flex;

    flex-direction: column;

    gap: 9px;
}

.precio-card li {
    color: #536176;

    font-size: 11px;

    font-weight: 600;
}

.precio-card li i {
    color: var(--azul);

    margin-right: 5px;
}


/* =========================
   OPCIONES
========================= */

.ruta-opciones {
    padding: 85px 0;

    background: white;
}

.ruta-opciones-container {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    align-items: center;

    gap: 70px;
}

.ruta-opciones h2 {
    color: var(--azul-oscuro);

    font-size: 38px;

    line-height: 1.15;
}

.ruta-opciones p {
    color: var(--gris);

    margin-top: 13px;

    max-width: 560px;

    font-size: 13px;
}

.opciones-servicio {
    display: grid;

    gap: 15px;
}

.opcion-servicio {
    min-height: 105px;

    border:
        1px solid #e5ebf4;

    border-radius: 17px;

    padding: 22px;

    display: flex;

    align-items: center;

    gap: 17px;

    transition: .3s;
}

.opcion-servicio:hover {
    border-color: var(--azul);

    transform: translateX(5px);
}

.opcion-servicio > i {
    width: 50px;
    height: 50px;

    flex: 0 0 50px;

    border-radius: 13px;

    background: #edf5ff;

    color: var(--azul);

    display: flex;

    justify-content: center;
    align-items: center;

    font-size: 19px;
}

.opcion-servicio strong {
    display: block;

    color: var(--azul-oscuro);

    font-size: 14px;
}

.opcion-servicio span {
    display: block;

    color: var(--gris);

    font-size: 11px;

    margin-top: 3px;
}


/* =========================
   COTIZAR
========================= */

.ruta-cotizar {
    padding: 65px 0;

    background:
        linear-gradient(
            135deg,
            #071f4f,
            #0756bd
        );

    color: white;
}

.ruta-cotizar-container {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 35px;
}

.ruta-cotizar span {
    color: #91c4ff;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.5px;
}

.ruta-cotizar h2 {
    font-size: 35px;

    margin: 4px 0;
}

.ruta-cotizar p {
    color:
        rgba(255,255,255,.70);

    font-size: 12px;
}


/* RESPONSIVE */

@media (max-width: 1050px) {

    .precios-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


@media (max-width: 750px) {

    .ruta-hero {
        height: 460px;
    }

    .ruta-opciones-container {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .ruta-cotizar-container {
        flex-direction: column;

        align-items: flex-start;
    }

}


@media (max-width: 550px) {

    .precios-grid {
        grid-template-columns: 1fr;
    }

    .ruta-hero {
        height: 420px;
    }

    .ruta-hero-content {
        padding-bottom: 40px;
    }

    .ruta-opciones h2 {
        font-size: 31px;
    }

}
/* =========================================
   VEHÍCULO EN RUTAS.PHP
========================================= */

.ruta-vehiculo-capacidad {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-top: 12px;

    padding: 8px 14px;

    border-radius: 50px;

    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.20);

    color: white;

    font-size: 12px;
    font-weight: 700;

    backdrop-filter: blur(8px);
}


/* HERO CUANDO ES VEHÍCULO */

.ruta-hero-vehiculo {
    background: linear-gradient(
        135deg,
        #061c43,
        #0754b5
    );
}

.ruta-hero-vehiculo > img {
    object-fit: contain;
    object-position: 75% center;

    padding: 45px;
}

.ruta-hero-vehiculo .ruta-overlay {
    background: linear-gradient(
        90deg,
        rgba(3,20,50,.95) 0%,
        rgba(3,20,50,.75) 42%,
        rgba(3,20,50,.15) 75%,
        transparent 100%
    );
}


/* =========================================
   RUTAS DEL VEHÍCULO
========================================= */

.rutas-vehiculo-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 22px;
}


.ruta-vehiculo-card {
    position: relative;

    height: 280px;

    border-radius: 21px;

    overflow: hidden;

    background: #071f4f;

    box-shadow:
        0 12px 35px rgba(7,31,79,.10);

    transition: .35s ease;
}


.ruta-vehiculo-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 22px 50px rgba(7,31,79,.18);
}


.ruta-vehiculo-card img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .45s ease;
}


.ruta-vehiculo-card:hover img {
    transform: scale(1.08);
}


.ruta-vehiculo-overlay {
    position: absolute;

    inset: 0;

    background: linear-gradient(
        180deg,
        rgba(4,22,55,.02) 20%,
        rgba(4,22,55,.90) 100%
    );
}


.ruta-vehiculo-info {
    position: absolute;

    left: 21px;
    right: 21px;
    bottom: 20px;

    z-index: 2;

    color: white;
}


.ruta-vehiculo-info h3 {
    color: white;

    font-size: 18px;

    line-height: 1.25;

    margin-bottom: 8px;
}


.ruta-vehiculo-info span {
    display: flex;

    align-items: center;

    gap: 7px;

    color: #9ecbff;

    font-size: 11px;

    font-weight: 700;
}


.ruta-vehiculo-info i {
    transition: .3s;
}


.ruta-vehiculo-card:hover .ruta-vehiculo-info i {
    transform: translateX(5px);
}


@media (max-width: 900px) {

    .rutas-vehiculo-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 600px) {

    .rutas-vehiculo-grid {
        grid-template-columns: 1fr;
    }

    .ruta-vehiculo-card {
        height: 300px;
    }

    .ruta-hero-vehiculo > img {
        opacity: .45;
        object-position: center;
        padding: 20px;
    }

}
/* =========================================================
   RUTAS Y PRECIOS
========================================================= */

.tabla-rutas {
    padding: 85px 0 100px;
    background: #f5f8fc;
}

.tabla-rutas .section-heading {
    margin-bottom: 25px;
}

.tabla-rutas .section-heading h2 {
    font-size: clamp(34px, 4vw, 52px);
}


/* =========================================================
   SELECTOR DE SERVICIO
========================================================= */

.selector-servicio {
    display: flex;
    justify-content: center;
    gap: 10px;

    margin: 10px 0 12px;
}

.servicio-btn {
    border: 1px solid #dce5f1;

    background: #ffffff;
    color: #556176;

    padding: 13px 22px;

    border-radius: 12px;

    font-family: inherit;
    font-size: 12px;
    font-weight: 800;

    cursor: pointer;

    display: inline-flex;
    align-items: center;
    gap: 8px;

    transition: .3s ease;
}

.servicio-btn i {
    color: #075bc9;
}

.servicio-btn:hover {
    color: #075bc9;
    border-color: #075bc9;

    transform: translateY(-2px);
}

.servicio-btn.active {
    color: #ffffff;

    background: linear-gradient(
        135deg,
        #074caf,
        #0871df
    );

    border-color: transparent;

    box-shadow:
        0 8px 22px rgba(7,91,201,.22);
}

.servicio-btn.active i {
    color: #ffffff;
}

.tipo-servicio-texto {
    margin: 0 0 30px;

    text-align: center;

    color: #6d788a;

    font-size: 11px;
}


/* =========================================================
   CONTENEDOR
========================================================= */

.tabla-rutas-wrapper {
    width: 100%;

    overflow-x: auto;

    background: white;

    border: 1px solid #e3e9f1;
    border-radius: 24px;

    box-shadow:
        0 18px 50px rgba(7,31,79,.10);
}


/* =========================================================
   TABLA
========================================================= */

.tabla-precios {
    width: 100%;

    min-width: 1100px;

    border-collapse: separate;
    border-spacing: 0;

    table-layout: fixed;

    background: white;
}

.tabla-precios .col-ruta {
    width: 30%;
}

.tabla-precios thead th:not(.col-ruta) {
    width: 17.5%;
}


/* =========================================================
   CABECERA
========================================================= */

.tabla-precios thead th {
    padding: 0 !important;

    vertical-align: bottom;

    border-right: 1px solid #e1e7f0;
    border-bottom: 1px solid #e1e7f0;

    background: white;
}

.tabla-precios thead th:last-child {
    border-right: none;
}


/* RUTA */

.tabla-precios .col-ruta {
    color: white;

    background: linear-gradient(
        135deg,
        #041839,
        #063579 55%,
        #0757be
    );
}

.ruta-header {
    min-height: 270px;

    padding: 35px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 17px;

    text-align: left;
}

.ruta-header > i {
    color: #ffc72c;
    font-size: 40px;
}

.ruta-header strong {
    display: block;

    color: white;

    font-size: 30px;
    font-weight: 900;
}

.ruta-header span {
    display: block;

    margin-top: 5px;

    color: rgba(255,255,255,.75);

    font-size: 11px;
}


/* =========================================================
   VEHÍCULOS
========================================================= */

.vehiculo-header {
    min-height: 270px;

    padding: 20px 10px 0;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: flex-end;

    text-align: center;
}

.vehiculo-tipo-tabla {
    color: #0759c7;

    font-size: 10px;
    font-weight: 900;

    text-transform: uppercase;

    margin-bottom: 5px;
}

.vehiculo-header > strong {
    min-height: 42px;

    color: #061f4f;

    font-size: 15px;
    font-weight: 800;

    line-height: 1.25;
}

.vehiculo-header img {
    width: 175px !important;
    height: 115px !important;

    max-width: 90%;

    margin: 7px auto;

    object-fit: contain !important;
}

.vehiculo-header small {
    width: calc(100% + 20px);

    min-height: 48px;

    padding: 7px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: white;

    background: linear-gradient(
        135deg,
        #0751b8,
        #0871df
    );

    font-size: 10px;
    font-weight: 800;

    line-height: 1.2;
}


/* =========================================================
   FILAS
========================================================= */

.tabla-precios tbody td {
    display: table-cell !important;

    height: 90px;

    padding: 16px 20px;

    vertical-align: middle;

    background: white;

    text-align: center;

    border-right: 1px solid #e4eaf2;
    border-bottom: 1px solid #e4eaf2;
}

.tabla-precios tbody td:last-child {
    border-right: none;
}

.tabla-precios tbody tr:last-child td {
    border-bottom: none;
}

.tabla-precios tbody tr:hover td {
    background: #f3f8ff;
}


/* =========================================================
   RUTA
========================================================= */

.tabla-precios td.ruta-nombre {
    display: table-cell !important;

    text-align: left !important;
}

.ruta-icon {
    width: 44px;
    height: 44px;

    margin-right: 12px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    vertical-align: middle;

    border-radius: 50%;

    background: #eaf3ff;

    color: #075bc9;

    font-size: 17px;
}

.ruta-nombre > div:last-child {
    display: inline-block;

    width: calc(100% - 62px);

    vertical-align: middle;
}

.ruta-nombre strong {
    display: block;

    color: #061f4f;

    font-size: 13px;
    font-weight: 800;

    line-height: 1.3;
}

.ruta-nombre span {
    display: block;

    margin-top: 3px;

    color: #778295;

    font-size: 10px;
}


/* =========================================================
   PRECIO
========================================================= */

.precio {
    display: inline-flex;

    gap: 4px;

    align-items: baseline;

    color: #061f4f;

    font-size: 24px;
    font-weight: 900;

    white-space: nowrap;

    transition: .2s;
}

.precio small {
    color: #0870df;

    font-size: 10px;
    font-weight: 900;
}

.tabla-precios tbody tr:hover .precio {
    color: #075bc9;

    transform: scale(1.04);
}


/* EFECTO CAMBIO DE PRECIO */

.precio-cambiante.cambiando {
    opacity: .25;

    transform: scale(.90);
}


/* =========================================================
   BENEFICIOS
========================================================= */

.tabla-beneficios {
    margin-top: 24px;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    overflow: hidden;

    background: white;

    border: 1px solid #e5eaf2;

    border-radius: 18px;

    box-shadow:
        0 10px 30px rgba(7,31,79,.06);
}

.tabla-beneficios > div,
.tabla-beneficios > a {
    min-height: 100px;

    padding: 20px;

    display: flex;

    align-items: center;

    gap: 12px;

    border-right: 1px solid #e6ebf2;
}

.tabla-beneficios > *:last-child {
    border-right: none;
}

.tabla-beneficios i {
    width: 44px;
    height: 44px;

    flex: 0 0 44px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #eaf3ff;

    color: #075bc9;

    font-size: 17px;
}

.tabla-beneficios a i {
    background: #25d366;

    color: white;
}

.tabla-beneficios strong {
    display: block;

    color: #061f4f;

    font-size: 11px;
}

.tabla-beneficios span {
    color: #737e90;

    font-size: 9px;

    line-height: 1.4;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {

    .tabla-beneficios {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================================
   MÓVIL
========================================================= */

@media (max-width: 600px) {

    .tabla-rutas {
        padding: 60px 0;
    }

    .selector-servicio {
        flex-direction: column;
    }

    .servicio-btn {
        width: 100%;

        justify-content: center;
    }

    .tabla-rutas-wrapper {
        border-radius: 15px;
    }

    .tabla-precios {
        min-width: 950px;
    }

    .tabla-beneficios {
        grid-template-columns: 1fr;
    }

    .tabla-beneficios > div,
    .tabla-beneficios > a {
        border-right: none;

        border-bottom: 1px solid #e6ebf2;
    }

}.precio-consultar {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 7px 12px;

    border-radius: 30px;

    background: #edf5ff;
    color: #075bc9;

    font-size: 11px;
    font-weight: 800;
}

/* =========================================================
   GALERÍA VEHÍCULOS
========================================================= */

.vehiculo-galeria {
    cursor: pointer;
    transition: transform .3s ease, filter .3s ease;
}

.vehiculo-galeria:hover {
    transform: scale(1.04);
    filter: brightness(.9);
}


/* FONDO MODAL */

.modal-vehiculo {
    position: fixed;
    inset: 0;

    background: rgba(3, 22, 55, .88);

    z-index: 99999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 25px;

    opacity: 0;
    visibility: hidden;

    transition: .3s ease;
}


.modal-vehiculo.active {
    opacity: 1;
    visibility: visible;
}


/* CONTENIDO */

.modal-contenido {
    width: min(900px, 95%);
    background: white;

    border-radius: 24px;

    padding: 25px;

    text-align: center;

    transform: scale(.9);
    transition: .3s ease;

    box-shadow: 0 25px 80px rgba(0,0,0,.35);
}


.modal-vehiculo.active .modal-contenido {
    transform: scale(1);
}


.modal-contenido h3 {
    color: #06275e;
    font-size: 26px;
    margin: 0 0 20px;
}


/* IMAGEN */

.modal-imagen-contenedor {
    position: relative;

    width: 100%;
    min-height: 450px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #f4f7fb;

    border-radius: 18px;

    overflow: hidden;
}


.modal-imagen-contenedor img {
    width: 100%;
    max-height: 600px;

    object-fit: contain;

    display: block;
}


/* FLECHAS */

.galeria-flecha {
    position: absolute;
    top: 50%;

    transform: translateY(-50%);

    width: 52px;
    height: 52px;

    border-radius: 50%;
    border: none;

    background: #0869d7;
    color: white;

    font-size: 20px;

    cursor: pointer;

    z-index: 5;

    box-shadow: 0 5px 15px rgba(0,0,0,.25);

    transition: .2s;
}


.galeria-flecha:hover {
    background: #06275e;
}


.galeria-flecha.izquierda {
    left: 15px;
}


.galeria-flecha.derecha {
    right: 15px;
}


/* CERRAR */

.modal-cerrar {
    position: fixed;

    top: 25px;
    right: 30px;

    width: 50px;
    height: 50px;

    border-radius: 50%;
    border: none;

    background: white;
    color: #06275e;

    font-size: 25px;

    cursor: pointer;

    z-index: 100000;
}


.modal-cerrar:hover {
    background: #0869d7;
    color: white;
}


/* CONTADOR */

#contadorGaleria {
    margin: 15px 0 0;

    color: #69758a;

    font-weight: 700;
}


/* CELULAR */

@media (max-width: 768px) {

    .modal-contenido {
        padding: 15px;
        border-radius: 18px;
    }

    .modal-imagen-contenedor {
        min-height: 280px;
    }

    .modal-contenido h3 {
        font-size: 20px;
    }

    .galeria-flecha {
        width: 42px;
        height: 42px;
    }

    .modal-cerrar {
        width: 42px;
        height: 42px;

        top: 15px;
        right: 15px;
    }

}
/* =========================================
   SELECTOR DE MONEDA
========================================= */
/* =========================================================
   SELECTOR DE MONEDA
========================================================= */

.selector-moneda {
    width: min(700px, 92%);
    margin: 25px auto 35px;
    padding: 25px 30px;

    background: linear-gradient(
        135deg,
        var(--azul-oscuro),
        var(--azul)
    );

    border-radius: 20px;
    border: none;

    box-shadow:
        0 15px 35px rgba(7, 31, 79, 0.22);

    text-align: center;
}


/* TEXTO "VER PRECIOS EN" */

.selector-moneda .moneda-label {
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 9px;

    margin-bottom: 18px;

    color: #ffffff;

    font-size: 19px;
    font-weight: 800;
}

.selector-moneda .moneda-label i {
    color: #8fc8ff;
    font-size: 21px;
}


/* CONTENEDOR USD / SOLES */

.selector-moneda .moneda-opciones {
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 12px;
}


/* BOTONES */

.selector-moneda .moneda-btn {
    appearance: none;
    -webkit-appearance: none;

    width: 210px;
    min-height: 62px;

    padding: 12px 18px;

    border: 2px solid rgba(255,255,255,.45);
    border-radius: 13px;

    background: rgba(255,255,255,.12);

    color: #ffffff;

    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 800;

    cursor: pointer;

    transition: all .25s ease;
}


/* HOVER */

.selector-moneda .moneda-btn:hover {
    background: rgba(255,255,255,.20);

    border-color: #ffffff;

    transform: translateY(-2px);
}


/* =========================================================
   MONEDA SELECCIONADA
========================================================= */

.selector-moneda .moneda-btn.active {
    background: #ffffff !important;

    color: var(--azul-oscuro) !important;

    border-color: #ffffff !important;

    box-shadow:
        0 8px 22px rgba(0,0,0,.20);

    transform: translateY(-2px);
}


/* EFECTO AL PRESIONAR */

.selector-moneda .moneda-btn:active {
    transform: scale(.97);
}


/* =========================================================
   MÓVIL
========================================================= */

@media (max-width: 600px) {

    .selector-moneda {
        width: auto;

        margin: 20px 15px 30px;
        padding: 20px 15px;
    }

    .selector-moneda .moneda-label {
        font-size: 17px;
    }

    .selector-moneda .moneda-opciones {
        gap: 8px;
    }

    .selector-moneda .moneda-btn {
        width: 50%;

        min-height: 56px;

        padding: 10px 8px;

        font-size: 14px;
    }
}

/* =========================================================
   HEADER SUPERIOR CTT
========================================================= */

.top-header {
    width: 100%;
    background: #ffffff;

    border-top: 2px solid #edf1f5;
    border-bottom: 1px solid #e7ecf3;

    box-shadow: 0 3px 15px rgba(7,31,79,.05);
}


.top-header-grid {
    min-height: 145px;

    display: grid;

    grid-template-columns: 1fr auto 1fr;

    align-items: center;

    gap: 40px;
}


/* =========================================================
   CONTACTO
========================================================= */

.top-contacto {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.top-contacto h3,
.top-redes h3 {
    color: var(--azul-oscuro);

    font-size: 20px;
    font-weight: 800;

    line-height: 1.2;
}


.top-linea {
    width: 52px;
    height: 4px;

    margin: 7px 0 12px;

    background: #f6a800;

    border-radius: 20px;
}


.top-whatsapp {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 9px 14px;

    border-radius: 10px;

    background: #25d366;

    color: #ffffff;

    font-size: 14px;
    font-weight: 800;

    transition: .25s ease;
}


.top-whatsapp i {
    font-size: 20px;
}


.top-whatsapp:hover {
    transform: translateY(-2px);

    box-shadow: 0 7px 18px rgba(37,211,102,.25);
}


.top-correo {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-top: 12px;

    color: var(--azul-oscuro);

    font-size: 12px;
    font-weight: 600;
}


.top-correo i {
    color: #f5a000;

    font-size: 17px;
}


/* =========================================================
   LOGO
========================================================= */

.top-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}


.top-logo img {
    width: 120px;
    height: 105px;

    object-fit: contain;
}


/* =========================================================
   REDES SOCIALES
========================================================= */

.top-redes {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}


.top-redes .top-linea {
    margin-left: auto;
}


.redes-iconos {
    display: flex;

    align-items: center;

    gap: 10px;
}


.redes-iconos a {
    width: 43px;
    height: 43px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid #dfe7f0;

    border-radius: 11px;

    background: #f7fafc;

    color: var(--azul-oscuro);

    font-size: 19px;

    transition: .25s ease;
}


.redes-iconos a:hover {
    background: var(--azul);

    color: #ffffff;

    border-color: var(--azul);

    transform: translateY(-3px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 850px) {

    .top-header-grid {
        grid-template-columns: 1fr auto;

        min-height: 125px;
    }

    .top-redes {
        display: none;
    }

}


/* =========================================================
   CELULAR
========================================================= */

@media (max-width: 600px) {

    .top-header-grid {
        grid-template-columns: 1fr;

        gap: 18px;

        padding: 20px 0;

        text-align: center;
    }


    .top-contacto {
        align-items: center;

        order: 2;
    }


    .top-logo {
        order: 1;
    }


    .top-logo img {
        width: 105px;
        height: 90px;
    }


    .top-contacto h3 {
        font-size: 18px;
    }


    .top-correo {
        font-size: 11px;
    }

}
/* =========================================================
   MENÚ PRINCIPAL
========================================================= */

.menu-principal {
    width: 100%;
    background: #ffffff;
    border-top: 1px solid #edf1f6;
    border-bottom: 1px solid #e1e8f0;
    box-shadow: 0 5px 18px rgba(7, 31, 79, 0.07);
    position: relative;
    z-index: 1000;
}

.menu-principal-container {
    min-height: 74px;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
}


/* =========================================================
   LINKS
========================================================= */

.menu-links {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 42px;
}

.menu-link {
    position: relative;

    color: #071f4f;

    font-size: 15px;
    font-weight: 700;

    text-decoration: none;

    padding: 27px 0;

    transition: 0.25s ease;
}

.menu-link:hover {
    color: #0867d8;
}


/* LÍNEA AMARILLA */

.menu-link::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 18px;

    width: 0;
    height: 3px;

    background: #ffc400;

    border-radius: 20px;

    transform: translateX(-50%);

    transition: 0.25s ease;
}

.menu-link:hover::after,
.menu-link.active::after {
    width: 26px;
}

.menu-link.active {
    color: #0867d8;
}


/* =========================================================
   BOTÓN COTIZAR
========================================================= */

.menu-cotizar {
    position: absolute;
    right: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    background: #0867d8;
    color: #ffffff;

    padding: 13px 20px;

    border-radius: 10px;

    font-size: 14px;
    font-weight: 800;

    text-decoration: none;

    box-shadow: 0 7px 18px rgba(8, 103, 216, 0.18);

    transition: 0.25s ease;
}

.menu-cotizar i {
    font-size: 18px;
}

.menu-cotizar:hover {
    background: #0755b4;

    transform: translateY(-2px);

    box-shadow: 0 9px 22px rgba(8, 103, 216, 0.25);
}


/* =========================================================
   BOTÓN HAMBURGUESA
========================================================= */

.menu-mobile {
    display: none;

    width: 45px;
    height: 45px;

    border: none;

    border-radius: 9px;

    background: #0867d8;

    color: #ffffff;

    font-size: 20px;

    cursor: pointer;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .menu-links {
        gap: 24px;
    }

    .menu-cotizar {
        position: relative;

        margin-left: auto;
    }

}


/* =========================================================
   CELULAR
========================================================= */

@media (max-width: 768px) {

    .menu-principal-container {
        min-height: 68px;

        justify-content: space-between;
    }


    .menu-mobile {
        display: flex;

        align-items: center;
        justify-content: center;
    }


    .menu-links {
        position: absolute;

        top: 68px;
        left: 0;
        right: 0;

        display: none;

        flex-direction: column;
        align-items: stretch;

        gap: 0;

        background: #ffffff;

        padding: 10px 20px 20px;

        border-radius: 0 0 15px 15px;

        box-shadow: 0 15px 30px rgba(7, 31, 79, 0.12);
    }


    .menu-principal.active .menu-links {
        display: flex;
    }


    .menu-link {
        width: 100%;

        padding: 15px 10px;

        border-bottom: 1px solid #edf1f6;
    }


    .menu-link::after {
        display: none;
    }


    .menu-cotizar {
        position: relative;

        right: auto;

        margin-left: auto;

        padding: 11px 15px;
    }

}


/* =========================================================
   CELULAR PEQUEÑO
========================================================= */

@media (max-width: 480px) {

    .menu-cotizar {
        font-size: 0;

        width: 45px;
        height: 45px;

        padding: 0;
    }

    .menu-cotizar i {
        font-size: 21px;
    }

}
/* =========================================
   MENÚ FIJO AL HACER SCROLL
========================================= */

.menu-principal {
    position: sticky !important;
    top: 0;
    z-index: 9999;
    width: 100%;
    background: #ffffff;

    box-shadow: 0 4px 18px rgba(7, 31, 79, 0.10);
}

/* =========================================
   NOSOTROS
========================================= */

.nosotros {
    background: #ffffff;
}

.nosotros-container {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 70px;
    align-items: center;
}

.nosotros-texto h2 {
    color: var(--azul-oscuro);
    font-size: clamp(32px, 4vw, 46px);
    line-height: 1.15;
    margin-bottom: 20px;
}

.nosotros-texto h2 span {
    color: var(--azul);
}

.nosotros-texto > p {
    color: var(--gris);
    font-size: 14px;
    margin-bottom: 15px;
    max-width: 680px;
}

.nosotros-puntos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px;
    margin-top: 28px;
}

.nosotros-puntos span {
    display: flex;
    align-items: center;
    gap: 8px;

    color: #33415a;
    font-size: 13px;
    font-weight: 600;
}

.nosotros-puntos i {
    color: var(--azul);
}


/* TARJETA DERECHA */

.nosotros-card {
    padding: 35px;

    background: linear-gradient(
        135deg,
        var(--azul-oscuro),
        var(--azul)
    );

    border-radius: 24px;

    color: white;

    text-align: center;

    box-shadow: var(--sombra);
}

.nosotros-card img {
    width: 150px;
    height: 120px;

    margin: 0 auto 20px;

    object-fit: contain;

    background: white;

    border-radius: 15px;

    padding: 8px;
}

.nosotros-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.nosotros-card p {
    color: rgba(255,255,255,.75);
    font-size: 13px;
    margin-bottom: 25px;
}

.nosotros-card a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    padding: 13px 20px;

    background: #25d366;

    color: white;

    border-radius: 11px;

    font-size: 13px;
    font-weight: 800;
}

.nosotros-card a:hover {
    transform: translateY(-2px);
}


/* RESPONSIVE */

@media (max-width: 800px) {

    .nosotros-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

}

@media (max-width: 550px) {

    .nosotros-puntos {
        grid-template-columns: 1fr;
    }

}
/* =========================================================
   TABLA DE PRECIOS - VERSIÓN MÓVIL
========================================================= */

@media (max-width: 768px) {

    /* CONTENEDOR GENERAL DE LA TABLA */
    .tabla-scroll {
        width: 100%;
        overflow-x: auto;
        overflow-y: hidden;

        -webkit-overflow-scrolling: touch;

        padding-bottom: 10px;

        scrollbar-width: thin;
    }


    /* TABLA */
    .tabla-precios {
        min-width: 900px;
        width: 900px;
    }


    /* COLUMNA RUTA MÁS PEQUEÑA */
    .tabla-precios .col-ruta {
        width: 260px;
        min-width: 260px;
    }


    /* COLUMNAS VEHÍCULOS */
    .tabla-precios .col-vehiculo {
        width: 160px;
        min-width: 160px;
    }


    /* CABECERA RUTA */
    .tabla-precios .ruta-header {
        padding: 25px 15px;
    }


    /* TEXTO DE LAS RUTAS */
    .tabla-precios .ruta-info {
        padding: 16px 14px;
    }


    /* PRECIO */
    .tabla-precios .precio {
        font-size: 18px;
    }

}
.aviso-deslizar {
    display: none;
}

@media (max-width: 768px) {

    .aviso-deslizar {
        display: flex;

        align-items: center;
        justify-content: center;

        gap: 8px;

        margin: 0 15px 12px;
        padding: 10px 15px;

        background: #eaf4ff;

        border: 1px solid #c9e1fb;
        border-radius: 10px;

        color: #0755b4;

        font-size: 12px;
        font-weight: 700;
    }

}

@media (max-width: 768px) {

    .top-header-grid {
        min-height: auto !important;
        padding: 14px 0 !important;
        gap: 10px !important;
    }

    .top-logo img {
        width: 95px !important;
        height: 80px !important;
    }

    .top-contacto h3,
    .top-linea,
    .top-correo {
        display: none !important;
    }

    .top-contacto {
        align-items: center !important;
    }

    .top-whatsapp {
        padding: 9px 14px !important;
        font-size: 13px !important;
    }

}
@media (max-width: 768px) {

    .whatsapp-float {
        width: 48px !important;
        height: 48px !important;

        right: 12px !important;
        bottom: 12px !important;

        font-size: 23px !important;
    }

}
@media (max-width: 768px) {

    .menu-link {
        padding: 12px 10px !important;
        font-size: 14px !important;
    }

    .menu-links {
        padding: 5px 18px 12px !important;
    }

}@media (max-width: 768px) {

    .top-header-grid {
        min-height: auto !important;
        padding: 14px 0 !important;
        gap: 12px !important;

        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .top-logo img {
        width: 95px !important;
        height: 80px !important;
    }

    .top-contacto h3,
    .top-linea,
    .top-correo {
        display: none !important;
    }

    .top-contacto {
        align-items: center !important;
    }

    .top-whatsapp {
        padding: 9px 14px !important;
        font-size: 13px !important;
    }

    .top-redes {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .top-redes h3,
    .top-redes .top-linea {
        display: none !important;
    }

    .redes-iconos {
        display: flex !important;
        justify-content: center !important;
        gap: 8px !important;
    }

    .redes-iconos a {
        width: 38px !important;
        height: 38px !important;
        font-size: 17px !important;
    }

}