
/* ========================================
   SY VIAJES
   COLORES DE MARCA
========================================= */

:root {
    --azul-principal: #0A2952;
    --azul-secundario: #364963;

    --beige: #DBCAB1;
    --beige-claro: #F4EEE5;

    --blanco: #FFFFFF;

    --texto: #182A3A;
    --texto-suave: #64717D;

    --borde: #E6DDD1;
}


/* ========================================
   DISEÑO PRINCIPAL
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;

    color: var(--texto);
    background: var(--blanco);

    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    width: 100%;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}


/* ========================================
   HEADER / MENÚ
========================================= */

.header {
    position: sticky;
    top: 0;
    z-index: 1000;

    width: 100%;

    background: #ffffff;

    border-bottom: 1px solid rgba(10, 41, 82, 0.08);

    transition:
        box-shadow 0.3s ease,
        background 0.3s ease;
}


/* SOMBRA AL HACER SCROLL */

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);

    box-shadow:
        0 6px 22px rgba(10, 41, 82, 0.14);
}


/* ========================================
   DISTRIBUCIÓN DEL HEADER
========================================= */

.nav {
    min-height: 80px;

    display: grid;

    grid-template-columns: 1fr auto 1fr;

    align-items: center;

    gap: 20px;
}


/* ========================================
   LOGO
========================================= */

.logo {
    justify-self: start;

    display: flex;
    align-items: center;

    flex-shrink: 0;
}

.logo img {
    width: 145px;
    height: auto;

    display: block;
}


/* ========================================
   MENÚ CENTRAL
========================================= */

nav {
    justify-self: center;

    display: flex;
    align-items: center;

    gap: 5px;

    white-space: nowrap;
}

nav a {
    padding: 9px 12px;

    color: var(--azul-principal);

    font-size: 13px;
    font-weight: 600;

    border-radius: 8px;

    text-decoration: none;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        box-shadow 0.25s ease;
}


/* QUITAR SUBRAYADO */

nav a::after {
    display: none;
}


/* SOMBREADO AZUL */

nav a:hover {
    background: rgba(10, 41, 82, 0.12);

    color: var(--azul-principal);

    box-shadow:
        0 4px 12px rgba(10, 41, 82, 0.10);
}


/* ========================================
   WHATSAPP
========================================= */

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    padding: 10px 18px;

    background: #25D366;
    color: #ffffff;

    border-radius: 30px;

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;

    white-space: nowrap;

    box-shadow:
        0 4px 12px rgba(37, 211, 102, 0.20);

    transition:
        background 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.btn-whatsapp:hover {
    background: #1EBE5A;
    color: #ffffff;

    transform: translateY(-2px);

    box-shadow:
        0 7px 16px rgba(37, 211, 102, 0.28);
}


/* WHATSAPP DE COMPUTADORA */

.whatsapp-desktop {
    justify-self: end;
}


/* WHATSAPP DE CELULAR OCULTO EN PC */

.whatsapp-mobile {
    display: none;
}


/* ========================================
   BOTÓN HAMBURGUESA
========================================= */

.menu-toggle {
    display: none;

    width: 44px;
    height: 44px;

    align-items: center;
    justify-content: center;

    background: rgba(10, 41, 82, 0.08);

    color: var(--azul-principal);

    border: none;
    border-radius: 10px;

    font-size: 21px;

    cursor: pointer;
}

.menu-toggle:hover {
    background: rgba(10, 41, 82, 0.14);
}


/* ========================================
   TABLET / CELULAR
========================================= */

@media (max-width: 900px) {

    .nav {
        min-height: 76px;

        display: flex;
        align-items: center;
        justify-content: space-between;

        position: relative;
    }


    /* LOGO */

    .logo img {
        width: 120px;
    }


    /* OCULTAR WHATSAPP DE PC */

    .whatsapp-desktop {
        display: none;
    }


    /* MOSTRAR HAMBURGUESA */

    .menu-toggle {
        display: flex;
    }


    /* ========================================
       MENÚ DESPLEGABLE A LA DERECHA
    ========================================= */

    nav {
        position: absolute;

        top: calc(100% + 8px);
        right: 0;
        left: auto;

        width: 280px;

        display: none;

        flex-direction: column;
        align-items: stretch;

        gap: 4px;

        padding: 14px;

        background: #ffffff;

        border: 1px solid rgba(10, 41, 82, 0.08);
        border-radius: 14px;

        box-shadow:
            0 14px 30px rgba(10, 41, 82, 0.16);

        white-space: normal;

        text-align: left;
    }


    /* MENÚ ABIERTO */

    nav.abierto {
        display: flex;
    }


    /* LINKS */

    nav a {
        width: 100%;

        padding: 12px 14px;

        color: var(--azul-principal);

        font-size: 14px;

        text-align: left;

        border-radius: 8px;
    }


    /* SOMBREADO DE OPCIONES */

    nav a:hover {
        background: rgba(10, 41, 82, 0.10);
    }


    /* WHATSAPP EN MENÚ MÓVIL */

    nav .whatsapp-mobile {
        display: inline-flex;

        align-items: center;
        justify-content: center;

        margin-top: 7px;

        background: #25D366;

        color: #ffffff;

        text-align: center;
    }

}
/* ========================================
   HERO
========================================= */

.hero {
    min-height: 720px;

    display: flex;
    align-items: center;

    position: relative;

    /* Una sola imagen + filtro azul de la marca */
    background:
        linear-gradient(
            rgba(10, 41, 82, 0.45),
            rgba(10, 41, 82, 0.68)
        ),
        url("img/Crucero.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


/* ========================================
   BOTÓN PRINCIPAL
========================================= */

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: var(--azul-principal);
    color: var(--blanco);

    padding: 14px 25px;

    border: none;
    border-radius: 30px;

    font-weight: 700;

    transition:
        background 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.btn-primary:hover {
    background: var(--azul-secundario);

    transform: translateY(-2px);

    box-shadow: 0 8px 20px rgba(10, 41, 82, 0.25);
}


/* ========================================
   BOTÓN SECUNDARIO
========================================= */

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: transparent;
    color: var(--blanco);

    padding: 12px 23px;

    border: 2px solid var(--beige-claro);
    border-radius: 30px;

    font-weight: 700;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.btn-secondary:hover {
    background: var(--beige-claro);
    color: var(--azul-principal);

    transform: translateY(-2px);
}


/* ========================================
   SECCIONES
========================================= */

.section {
    width: 90%;
    max-width: 1200px;

    margin: auto;

    padding: 100px 0;
}

.section-title {
    margin-bottom: 40px;
}


/* TEXTO PEQUEÑO:
   DESTINOS POPULARES
   CONSEJOS DE VIAJE
   SÍGUENOS EN INSTAGRAM
*/

.section-title > p:first-child {
    color: var(--azul-principal);

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 8px;

    text-transform: uppercase;
}


/* TÍTULO DE SECCIÓN */

.section-title h2 {
    color: var(--azul-principal);

    font-size: 42px;
    line-height: 1.1;

    margin-bottom: 10px;
}


/* DESCRIPCIÓN DEBAJO DEL TÍTULO */

.section-title h2 + p {
    color: var(--texto-suave);

    font-size: 14px;
    line-height: 1.7;
}


/* ========================================
   DESTINOS
========================================= */

.destinos-grid {
    display: grid;

    grid-template-columns: repeat(5, 1fr);

    gap: 18px;
}

.destino {
    height: 390px;

    position: relative;

    overflow: hidden;

    border-radius: 18px;

    color: var(--blanco);

    background: var(--azul-principal);

    box-shadow: 0 8px 24px rgba(10, 41, 82, 0.08);
}

.destino img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.45s ease;
}

.destino:hover img {
    transform: scale(1.07);
}


/* DEGRADADO SOBRE LAS FOTOS */

.destino::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            transparent 35%,
            rgba(6, 28, 56, 0.88)
        );
}


/* TEXTO DEL DESTINO */

.destino div {
    position: absolute;

    bottom: 22px;
    left: 20px;
    right: 15px;

    z-index: 2;
}

.destino h3 {
    color: var(--blanco);

    font-size: 24px;
    line-height: 1.2;

    margin-bottom: 3px;
}

.destino p {
    color: rgba(255, 255, 255, 0.90);

    font-size: 13px;
}


/* ========================================
   RESPONSIVE
========================================= */

@media (max-width: 900px) {

    .destinos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 700px) {

    .hero {
        min-height: 650px;
    }

    .section {
        padding: 70px 0;
    }

    .section-title h2 {
        font-size: 34px;
    }

}


@media (max-width: 500px) {

    .destinos-grid {
        grid-template-columns: 1fr;
    }

    .destino {
        height: 350px;
    }

}
/* ========================================
   SERVICIOS
========================================= */

.servicios {
    padding: 85px 20px;

    /* Fondo cálido inspirado en el logo */
    background-color: var(--beige-claro);
}

.servicios .container {
    width: 100%;
    max-width: 1140px;

    margin: 0 auto;
}


/* ========================================
   TITULO
========================================= */

.servicios .section-title {
    margin-bottom: 42px;
}


/* TEXTO PEQUEÑO: LO QUE HACEMOS POR TI */

.servicios .section-label,
.servicios .section-title > p:first-child {
    margin: 0 0 8px;

    color: var(--azul-principal);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 3px;

    text-transform: uppercase;
}


/* TÍTULO PRINCIPAL */

.servicios .section-title h2 {
    margin: 0 0 14px;

    color: var(--azul-principal);

    font-size: 28px;
    font-weight: 700;

    line-height: 1.2;
}


/* DESCRIPCIÓN */

.servicios-intro {
    max-width: 680px;

    margin: 0;

    color: var(--texto-suave);

    font-size: 15px;
    line-height: 1.8;
}


/* ========================================
   GRID
========================================= */

.servicios-grid {
    display: grid;

    grid-template-columns: repeat(5, 1fr);

    gap: 20px;
}


/* ========================================
   TARJETAS
========================================= */

.servicio {
    padding: 28px 22px;

    background-color: var(--blanco);

    border: 1px solid var(--borde);
    border-radius: 18px;

    box-shadow:
        0 8px 24px rgba(10, 41, 82, 0.06);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


/* TARJETA AL PASAR EL MOUSE */

.servicio:hover {
    transform: translateY(-5px);

    border-color: var(--beige);

    box-shadow:
        0 15px 32px rgba(10, 41, 82, 0.11);
}


/* ICONO AL PASAR EL MOUSE */

.servicio:hover .servicio-icono {
    background-color: var(--azul-principal);

    color: var(--blanco);

    transform: scale(1.05);
}

/* ========================================
   ICONO
========================================= */

.servicio-icono {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 58px;
    height: 58px;

    margin-bottom: 22px;

    background-color: var(--beige-claro);

    border-radius: 16px;

    color: var(--azul-principal);

    font-size: 23px;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}


/* ========================================
   TEXTO
========================================= */

.servicio h3 {
    margin: 0 0 12px;

    color: var(--azul-principal);

    font-size: 16px;
    font-weight: 700;

    line-height: 1.35;
}

.servicio p {
    margin: 0;

    color: var(--texto-suave);

    font-size: 14px;

    line-height: 1.8;
}


/* ========================================
   CIERRE
========================================= */

.servicios-cierre {
    margin-top: 38px;

    color: var(--texto-suave);

    font-size: 14px;

    text-align: center;
}

.servicios-cierre::before {
    content: "";

    display: inline-block;

    width: 24px;
    height: 2px;

    margin-right: 10px;
    margin-bottom: 4px;

    background-color: var(--azul-principal);

    border-radius: 999px;
}

/* ========================================
   RESPONSIVE - SERVICIOS
========================================= */

@media (max-width: 1050px) {

    .servicios-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}


@media (max-width: 760px) {

    .servicios {
        padding: 65px 20px;
    }

    .servicios-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .servicios .section-title h2 {
        font-size: 24px;
    }

}


@media (max-width: 500px) {

    .servicios {
        padding: 55px 18px;
    }

    .servicios-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

}


/* ========================================
   SOBRE SY VIAJES
========================================= */

.sobre-mi {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;

    background-color: #ffffff;
}


/* ========================================
   IMAGEN
========================================= */

.sobre-imagen {
    height: 600px;

    order: 2;

    overflow: hidden;
}

.sobre-imagen img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;
}

.sobre-imagen:hover img {
    transform: scale(1.02);
}


/* ========================================
   TEXTO
========================================= */

.sobre-texto {
    padding: 70px;

    order: 1;

    display: flex;
    flex-direction: column;
    justify-content: center;
}


/* SOBRE NOSOTROS */

.sobre-texto > p:first-child {
    margin-bottom: 8px;

    color: var(--azul-principal);

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;
}


/* ========================================
   TÍTULO
========================================= */

.sobre-texto h2 {
    margin: 8px 0 25px;

    color: var(--azul-principal);

    font-size: 38px;
    font-weight: 700;

    line-height: 1.1;
}


/* LÍNEA DECORATIVA */

.sobre-texto h2::after {
    content: "";

    display: block;

    width: 48px;
    height: 3px;

    margin-top: 16px;

    background: var(--azul-principal);

    border-radius: 10px;
}


/* ========================================
   TEXTO NORMAL
========================================= */

.sobre-texto p {
    margin-bottom: 20px;

    color: var(--texto-suave);

    font-size: 15px;

    line-height: 1.75;
}


/* ========================================
   FRASE DESTACADA
========================================= */

.frase-impacto {
    margin-top: 14px;
}

    color: var(--azul-principal) !important;

    font-size: 16px !important;
    font-weight: 600;

    line-height: 1.6 !important;
}


/* ========================================
   FRASE FINAL
========================================= */

.frase-cierre {
    color: var(--azul-principal) !important;
    font-size: 14px !important;
    font-weight: 600;
    opacity: 0.85;
}

/* ========================================
   RESPONSIVE - TABLET
========================================= */

@media (max-width: 900px) {

    .sobre-mi {
        grid-template-columns: 1fr;
    }

    .sobre-imagen {
        height: 430px;

        order: 1;
    }

    .sobre-texto {
        padding: 55px 8%;

        order: 2;
    }

}


/* ========================================
   RESPONSIVE - CELULAR
========================================= */

@media (max-width: 600px) {

    .sobre-imagen {
        height: 350px;
    }

    .sobre-texto {
        padding: 45px 24px;
    }

    .sobre-texto h2 {
        font-size: 30px;
    }

    .sobre-texto h2::after {
        width: 42px;
        height: 3px;

        margin-top: 14px;
    }

    .sobre-texto p {
        font-size: 14px;
    }

    .frase-impacto {
        font-size: 15px !important;
    }

    .frase-cierre {
        font-size: 13px !important;
    }

}
/* ========================================
   INSTAGRAM SY VIAJES
========================================= */

.instagram-presentacion {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;

    gap: 60px;
    align-items: center;

    max-width: 1050px;
    margin: 0 auto;
}


/* ========================================
   IMAGEN
========================================= */

.instagram-imagen {
    overflow: hidden;

    border-radius: 24px;

    box-shadow:
        0 15px 40px rgba(10, 41, 82, 0.10);
}

.instagram-imagen img {
    width: 100%;
    height: 500px;

    object-fit: cover;

    transition: transform 0.5s ease;
}

.instagram-imagen:hover img {
    transform: scale(1.03);
}


/* ========================================
   INFORMACIÓN
========================================= */

.instagram-info {
    padding: 20px 10px;
}


/* USUARIO DE INSTAGRAM */

.instagram-usuario {
    display: inline-block;

    margin-bottom: 15px;

    color: var(--azul-principal);

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 1px;
}


/* TÍTULO */

.instagram-info h3 {
    margin-bottom: 20px;

    color: var(--azul-principal);

    font-size: 32px;
    line-height: 1.2;
}


/* TEXTO */

.instagram-info p {
    margin-bottom: 30px;

    color: var(--texto-suave);

    font-size: 17px;
    line-height: 1.7;
}


/* ========================================
   BOTÓN INSTAGRAM
========================================= */

.btn-instagram {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    padding: 14px 26px;

    background: linear-gradient(
        135deg,
        #833AB4 0%,
        #C13584 35%,
        #E1306C 60%,
        #F77737 100%
    );

    color: #ffffff;

    border: none;
    border-radius: 30px;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

    box-shadow:
        0 7px 18px rgba(193, 53, 132, 0.22);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        filter 0.3s ease;
}


/* ÍCONO DE INSTAGRAM */

<link
    rel="stylesheet"
    href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css"
>

.btn-instagram i {
    color: #ffffff;

    font-size: 18px;
}


/* HOVER */

.btn-instagram:hover {
    color: #ffffff;

    transform: translateY(-2px);

    box-shadow:
        0 10px 24px rgba(193, 53, 132, 0.30);

    filter: brightness(1.06);
}


/* ========================================
   RESPONSIVE - TABLET
========================================= */

@media (max-width: 900px) {

    .instagram-presentacion {
        grid-template-columns: 1fr;

        gap: 30px;
    }

    .instagram-imagen img {
        height: 400px;
    }

    .instagram-info {
        text-align: center;
    }

}


/* ========================================
   RESPONSIVE - CELULAR
========================================= */

@media (max-width: 600px) {

    .instagram-imagen img {
        height: 350px;
    }

    .instagram-info h3 {
        font-size: 27px;
    }

    .instagram-info p {
        font-size: 16px;
    }

    .btn-instagram {
        padding: 13px 22px;

        font-size: 13px;
    }

}
/* ========================================
   NEWSLETTER
========================================= */

.newsletter {
    background: var(--azul-principal);
    color: var(--blanco);

    padding: 55px 8%;

    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 50px;
}

.newsletter h2 {
    margin-bottom: 8px;

    color: var(--blanco);

    font-size: 35px;
    line-height: 1.2;
}

.newsletter p {
    color: rgba(255, 255, 255, 0.80);

    line-height: 1.7;
}


/* FORMULARIO */

.newsletter form {
    display: flex;

    gap: 10px;

    width: 100%;
    max-width: 520px;
}


/* INPUT */

.newsletter input {
    flex: 1;

    min-width: 0;

    padding: 14px 20px;

    background: var(--blanco);
    color: var(--texto);

    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 30px;

    outline: none;

    transition:
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.newsletter input::placeholder {
    color: #8b96a3;
}

.newsletter input:focus {
    border-color: var(--beige);

    box-shadow:
        0 0 0 3px rgba(219, 202, 177, 0.25);
}


/* BOTÓN */

.newsletter button {
    padding: 14px 24px;

    background: var(--beige);
    color: var(--azul-principal);

    border: none;
    border-radius: 30px;

    font-weight: 700;

    cursor: pointer;

    white-space: nowrap;

    transition:
        background 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.newsletter button:hover {
    background: var(--beige-claro);

    transform: translateY(-2px);

    box-shadow:
        0 7px 18px rgba(0, 0, 0, 0.15);
}
/* ========================================
   FOOTER
========================================= */

footer {
    background: var(--azul-principal);
    color: var(--blanco);

    padding: 55px 8% 25px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;

    gap: 60px;

    max-width: 1200px;
    margin: 0 auto 45px;

    align-items: start;
}


/* TÍTULOS */

.footer-content h2 {
    margin-bottom: 15px;

    color: var(--blanco);
}

.footer-content h3 {
    margin-bottom: 15px;

    color: var(--beige);
}


/* TEXTO */

.footer-content p {
    max-width: 400px;

    color: rgba(255, 255, 255, 0.75);

    line-height: 1.7;
}


/* LINKS */

.footer-content a {
    display: block;

    color: rgba(255, 255, 255, 0.75);

    margin-bottom: 8px;

    transition: color 0.3s ease;
}

.footer-content a:hover {
    color: var(--beige);
}


/* COPYRIGHT */

.copyright {
    max-width: 1200px;

    margin: auto;

    border-top: 1px solid rgba(255, 255, 255, 0.15);

    padding-top: 20px;

    color: rgba(255, 255, 255, 0.60);

    font-size: 13px;
}


/* ========================================
   HERO / PORTADA
========================================= */

.hero {
    min-height: 720px;

    display: flex;
    align-items: center;

    position: relative;

    background:
        linear-gradient(
            90deg,
            rgba(10, 41, 82, 0.82) 0%,
            rgba(10, 41, 82, 0.64) 28%,
            rgba(10, 41, 82, 0.38) 50%,
            rgba(10, 41, 82, 0.15) 72%,
            rgba(10, 41, 82, 0.05) 100%
        ),
        url("img/collage.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


/* ========================================
   CONTENIDO DEL HERO
========================================= */

.hero-content {
    width: 90%;
    max-width: 1200px;

    margin: 0 auto;

    position: relative;
    z-index: 2;
}


/* ========================================
   TEXTO SUPERIOR
========================================= */

.hero-small {
    margin-bottom: 18px;

    color: #ffffff;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 3px;
    text-transform: uppercase;

    text-shadow:
        0 2px 8px rgba(0, 0, 0, 0.30);
}


/* ========================================
   TÍTULO PRINCIPAL
========================================= */

.hero h1 {
    max-width: 720px;

    margin: 0 0 25px;

    color: #ffffff;

    font-size: clamp(50px, 7vw, 82px);
    font-weight: 700;

    line-height: 0.98;

    text-shadow:
        0 3px 14px rgba(0, 0, 0, 0.32);
}

.hero h1 span {
    color: #ffffff;
}


/* ========================================
   DESCRIPCIÓN
========================================= */

.hero-text {
    max-width: 520px;

    margin-bottom: 35px;

    color: rgba(255, 255, 255, 0.94);

    font-size: 18px;
    line-height: 1.6;

    text-shadow:
        0 2px 8px rgba(0, 0, 0, 0.28);
}


/* ========================================
   BOTONES
========================================= */

.hero-buttons {
    display: flex;
    align-items: center;

    gap: 15px;
}


/* BOTÓN PRINCIPAL */

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 14px 26px;

    background: var(--azul-principal);
    color: #ffffff;

    border: 1px solid rgba(255, 255, 255, 0.30);
    border-radius: 30px;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

    cursor: pointer;

    box-shadow:
        0 7px 18px rgba(0, 0, 0, 0.16);

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


/* HOVER */

.btn-primary:hover {
    background: #ffffff;

    color: var(--azul-principal);

    transform: translateY(-2px);

    box-shadow:
        0 10px 24px rgba(0, 0, 0, 0.22);
}


/* ========================================
   RESPONSIVE - TABLET
========================================= */

@media (max-width: 900px) {

    .hero {
        min-height: 650px;

        background-position: 55% center;
    }

    .hero h1 {
        max-width: 650px;

        font-size: clamp(48px, 8vw, 70px);
    }

    .hero-text {
        max-width: 480px;

        font-size: 17px;
    }

}


/* ========================================
   RESPONSIVE - CELULAR
========================================= */

@media (max-width: 600px) {

    .hero {
        min-height: 620px;

        background:
            linear-gradient(
                90deg,
                rgba(10, 41, 82, 0.82) 0%,
                rgba(10, 41, 82, 0.68) 55%,
                rgba(10, 41, 82, 0.48) 100%
            ),
            url("img/collage.png");

        background-size: cover;
        background-position: 58% center;
        background-repeat: no-repeat;
    }

    .hero-content {
        width: 88%;
    }

    .hero-small {
        margin-bottom: 14px;

        font-size: 11px;

        letter-spacing: 2px;
    }

    .hero h1 {
        max-width: 100%;

        margin-bottom: 22px;

        font-size: 46px;

        line-height: 1;
    }

    .hero-text {
        max-width: 390px;

        margin-bottom: 28px;

        font-size: 16px;

        line-height: 1.55;
    }

    .btn-primary {
        padding: 13px 22px;

        font-size: 13px;
    }

}
/* ========================================
   RESPONSIVE - TABLET
========================================= */

@media (max-width: 900px) {

    /* MENÚ */

    nav {
        display: none;
    }


    /* DESTINOS */

    .destinos-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    /* SOBRE NOSOTROS */

    .sobre-mi {
        grid-template-columns: 1fr;
    }

    .sobre-imagen {
        height: 430px;
    }


    /* NEWSLETTER */

    .newsletter {
        flex-direction: column;
        align-items: flex-start;
    }


    /* FOOTER */

    .footer-content {
        grid-template-columns: 1fr 1fr;

        gap: 40px;
    }

}


/* ========================================
   RESPONSIVE - CELULARES
========================================= */

@media (max-width: 600px) {

    /* HERO */

    .hero {
        min-height: 620px;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero-text {
        font-size: 16px;

        margin-bottom: 28px;
    }

    .hero-small {
        font-size: 11px;

        letter-spacing: 2px;
    }


    /* DESTINOS */

    .destinos-grid {
        grid-template-columns: 1fr;
    }

    .destino {
        height: 350px;
    }


    /* SECCIONES */

    .section {
        padding: 70px 0;
    }

    .section-title h2 {
        font-size: 34px;
    }


    /* SOBRE NOSOTROS */

    .sobre-texto {
        padding: 40px 25px;
    }

    .sobre-texto h2 {
        font-size: 30px;
    }


    /* NEWSLETTER */

    .newsletter {
        padding: 45px 7%;
    }

    .newsletter h2 {
        font-size: 28px;
    }

    .newsletter form {
        width: 100%;

        flex-direction: column;
    }

    .newsletter input {
        width: 100%;

        min-width: 0;
    }

    .newsletter button {
        width: 100%;
    }


    /* FOOTER */

    .footer-content {
        grid-template-columns: 1fr;

        gap: 35px;
    }

}
}/* ========================================
   ANIMACIONES
======================================== */

.destino,
.tour,
.section-title,
.sobre-texto {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease,
                transform 0.7s ease;
}

.destino.visible,
.tour.visible,
.section-title.visible,
.sobre-texto.visible {
    opacity: 1;
    transform: translateY(0);
}
/* ========================================
   HEADER AL HACER SCROLL
======================================== */

.header.scrolled {
    background: #ffffff;

    box-shadow:
        0 6px 22px rgba(10, 41, 82, 0.14);

    border-bottom:
        1px solid rgba(10, 41, 82, 0.08);
}
/* ========================================
   TARJETAS GIRATORIAS - SY TRAVEL
======================================== */

.flip-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 35px;
}

.flip-card {
    height: 300px;
    perspective: 1000px;
    cursor: pointer;
}

.flip-card-inner {
    width: 100%;
    height: 100%;
    position: relative;

    transform-style: preserve-3d;
    transition: transform 0.7s ease;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;

    backface-visibility: hidden;

    border-radius: 20px;
    padding: 35px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;
}

.flip-card-front {
    background: #ffffff;

    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
}

.flip-card-back {
    background: #103b47;
    color: white;

    transform: rotateY(180deg);
}

.flip-icon {
    font-size: 35px;
    margin-bottom: 15px;
}

.flip-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.flip-card p {
    color: #66777c;
    font-size: 15px;
    line-height: 1.6;
}

.flip-card-back p {
    color: #d9eeee;
}

.flip-hint {
    margin-top: 20px;

    color: #20b9ad;

    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
}

.acompanamiento {
    text-align: center;
    margin-top: 35px;

    color: #12343b;

    font-size: 17px;
    font-weight: 600;
}


/* ========================================
   CELULARES
======================================== */

@media (max-width: 900px) {

    .flip-cards {
        grid-template-columns: 1fr;
    }

    .flip-card {
        height: 280px;
    }

}
/* ========================================
   SERVICIOS
========================================= */

.servicios {
    padding: 85px 20px;

    background: #F7F9FC;
}

.servicios .container {
    width: 100%;
    max-width: 1140px;

    margin: 0 auto;
}


/* ========================================
   TÍTULO DE LA SECCIÓN
========================================= */

.servicios .section-title {
    margin-bottom: 42px;
}

.servicios .section-label,
.servicios .section-title > p:first-child {
    margin: 0 0 8px;

    color: var(--azul-principal);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 3px;
    text-transform: uppercase;
}

.servicios .section-title h2 {
    margin: 0 0 14px;

    color: var(--azul-principal);

    font-size: 28px;
    font-weight: 700;

    line-height: 1.2;
}

.servicios-intro {
    max-width: 680px;

    margin: 0;

    color: var(--texto-suave);

    font-size: 15px;

    line-height: 1.8;
}


/* ========================================
   GRID DE SERVICIOS
========================================= */

.servicios-grid {
    display: grid;

    grid-template-columns: repeat(5, 1fr);

    gap: 20px;
}


/* ========================================
   TARJETAS
========================================= */

.servicio {
    padding: 28px 22px;

    background: #ffffff;

    border: 1px solid rgba(10, 41, 82, 0.10);

    border-radius: 18px;

    box-shadow:
        0 8px 24px rgba(10, 41, 82, 0.06);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


/* HOVER DE LA TARJETA */

.servicio:hover {
    transform: translateY(-6px);

    border-color: rgba(10, 41, 82, 0.22);

    box-shadow:
        0 16px 32px rgba(10, 41, 82, 0.12);
}


/* ========================================
   ICONOS
========================================= */

.servicio-icono {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 58px;
    height: 58px;

    margin-bottom: 22px;

    background: rgba(10, 41, 82, 0.08);

    border-radius: 16px;

    color: var(--azul-principal);

    font-size: 23px;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}


/* ICONO AL PASAR EL MOUSE */

.servicio:hover .servicio-icono {
    background: var(--azul-principal);

    color: #ffffff;

    transform: scale(1.05);
}


/* ========================================
   TÍTULO DE CADA SERVICIO
========================================= */

.servicio h3 {
    margin: 0 0 12px;

    color: var(--azul-principal);

    font-size: 16px;
    font-weight: 700;

    line-height: 1.35;
}


/* ========================================
   TEXTO
========================================= */

.servicio p {
    margin: 0;

    color: var(--texto-suave);

    font-size: 14px;

    line-height: 1.8;
}


/* ========================================
   FRASE FINAL
========================================= */

.servicios-cierre {
    margin-top: 38px;

    color: var(--texto-suave);

    font-size: 14px;

    text-align: center;
}


/* ========================================
   RESPONSIVE - TABLET
========================================= */

@media (max-width: 1050px) {

    .servicios-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}


@media (max-width: 760px) {

    .servicios {
        padding: 65px 20px;
    }

    .servicios-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .servicios .section-title h2 {
        font-size: 24px;
    }

}


/* ========================================
   RESPONSIVE - CELULAR
========================================= */

@media (max-width: 500px) {

    .servicios {
        padding: 55px 18px;
    }

    .servicios-grid {
        grid-template-columns: 1fr;

        gap: 16px;
    }

}
/* ========================================
   PORTADA ESPECIAL PARA CELULAR
========================================= */

@media (max-width: 600px) {

    .hero {
        min-height: 620px;

        background:
            linear-gradient(
                rgba(10, 41, 82, 0.58),
                rgba(10, 41, 82, 0.58)
            ),
            url("img/playacel.jpg");

        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .hero-content {
        width: 88%;
    }

    .hero-small {
        margin-bottom: 14px;

        font-size: 11px;
        letter-spacing: 2px;
    }

    .hero h1 {
        max-width: 100%;

        margin-bottom: 22px;

        font-size: 46px;
        line-height: 1;
    }

    .hero-text {
        max-width: 390px;

        margin-bottom: 28px;

        font-size: 16px;
        line-height: 1.55;
    }

    .btn-primary {
        padding: 13px 22px;

        font-size: 13px;
    }

}