/* =========================================================
   RESET Y CONFIGURACIÓN GENERAL
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f5f7f8;
    color: #172125;
}

a {
    text-decoration: none;
}

button,
input {
    font-family: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.contenedor {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.seccion {
    padding: 100px 0;
}



/* =========================================================
   TEXTOS GENERALES
========================================================= */

.titulo-pequeno {
    display: inline-block;

    margin-bottom: 18px;

    color: #0d9f92;

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 2px;
}

.titulo-pequeno.claro {
    color: #72ddd3;
}

.encabezado-seccion {
    max-width: 700px;
    margin-bottom: 60px;
}

.encabezado-seccion h2,
.intro-texto h2,
.ballenas h2,
.extras-contenido h2,
.reserva-info h2 {
    margin-bottom: 25px;

    font-size: clamp(36px, 5vw, 55px);
    line-height: 1.05;
}

.encabezado-seccion h2 span,
.intro-texto h2 span,
.ballenas h2 span,
.extras-contenido h2 span {
    color: #43cbbb;
}

.encabezado-seccion p {
    color: #718084;

    font-size: 17px;
    line-height: 1.7;
}



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

.hero {
    min-height: 720px;

    background:
        linear-gradient(
            90deg,
            rgba(4, 25, 34, 0.88) 0%,
            rgba(4, 25, 34, 0.62) 50%,
            rgba(4, 25, 34, 0.25) 100%
        ),
        url("https://madreagua.co/wp-content/uploads/2023/02/salto-jorobada-scaled-e1676501621727.jpg");

    background-size: cover;
    background-position: center;
}

.hero-overlay {
    min-height: 720px;

    display: flex;
    align-items: center;
}

.hero-content {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;

    color: #ffffff;
}

.hero-badge {
    display: inline-block;

    margin-bottom: 18px;

    padding: 10px 16px;

    border-radius: 30px;

    background: #0d9f92;
    color: #ffffff;

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 2px;
}

.hero h1 {
    max-width: 800px;

    margin-bottom: 28px;

    font-size: clamp(52px, 7vw, 88px);
    line-height: 0.95;
}

.hero h1 span {
    color: #43cbbb;
}

.hero-description {
    max-width: 690px;

    margin-bottom: 38px;

    color: rgba(255, 255, 255, 0.88);

    font-size: 19px;
    line-height: 1.75;
}

.hero-info {
    display: flex;
    flex-wrap: wrap;

    gap: 45px;

    margin-bottom: 40px;
}

.hero-info-item {
    display: flex;
    flex-direction: column;

    gap: 5px;
}

.hero-info-item strong {
    font-size: 20px;
}

.hero-info-item span {
    color: rgba(255, 255, 255, 0.7);

    font-size: 14px;
}

.btn-principal {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 17px 30px;

    border-radius: 10px;

    background: #43cbbb;
    color: #082b31;

    font-weight: 800;

    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

.btn-principal:hover {
    transform: translateY(-3px);

    background: #65dbcf;
}



/* =========================================================
   PASEOS DISPONIBLES
========================================================= */

.paseos-seccion {
    background: #f4f7f7;
}

.encabezado-paseos {
    max-width: 760px;

    margin-left: auto;
    margin-right: auto;

    text-align: center;
}

.encabezado-paseos h2 span {
    color: #43cbbb;
}

.paseos-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;

    align-items: stretch;
}

.paseo-card {
    height: 100%;

    display: flex;
    flex-direction: column;

    background: #ffffff;
    border-radius: 22px;
    overflow: hidden;
}

.paseo-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 22px 55px rgba(8, 47, 54, 0.14);
}


/* IMAGEN DEL PASEO */

.paseo-imagen {
    position: relative;

    height: 330px;

    overflow: hidden;

    background: #0b3b43;
}

.paseo-imagen img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.4s ease;
}

.paseo-card:hover .paseo-imagen img {
    transform: scale(1.04);
}

.paseo-imagen-placeholder {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            135deg,
            #0b3b43,
            #0c786f
        );
}

.paseo-imagen-placeholder span {
    font-size: 75px;
}

.paseo-temporada {
    position: absolute;

    top: 18px;
    left: 18px;

    padding: 9px 14px;

    border-radius: 30px;

    background: rgba(6, 39, 45, 0.86);
    color: #ffffff;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1px;

    backdrop-filter: blur(8px);
}


/* CONTENIDO DEL PASEO */

.paseo-contenido {
    flex: 1;

    display: flex;
    flex-direction: column;

    padding: 30px;
}

.paseo-destino {
    display: block;

    margin-bottom: 12px;

    color: #0b9387;

    font-size: 13px;
    font-weight: 700;
}

.paseo-contenido h3 {
    margin-bottom: 15px;

    color: #143239;

    font-size: 29px;
}

.paseo-descripcion {
    margin-bottom: 25px;

    color: #748184;

    font-size: 14px;
    line-height: 1.7;
}


/* DATOS DEL PASEO */

.paseo-datos {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 15px;

    padding: 20px 0;

    border-top: 1px solid #edf2f2;
    border-bottom: 1px solid #edf2f2;
}

.paseo-datos div {
    display: flex;
    flex-direction: column;

    gap: 5px;
}

.paseo-datos span {
    color: #919c9e;

    font-size: 11px;
}

.paseo-datos strong {
    color: #244047;

    font-size: 14px;
}


/* PRECIO */

.paseo-precio {
    margin-top: auto;
    padding-top: 25px;

    display: flex;
    justify-content: space-between;
    align-items: flex-end;

    gap: 20px;
}

.paseo-precio > div {
    display: flex;
    flex-direction: column;

    gap: 4px;
}

.paseo-precio span {
    color: #020202;

    font-size: 11px;
}

.precio-paseo {
    color: #0a8077;

    font-size: 28px;
}

.paseo-precio small {
    color: #9ca6a8;

    font-size: 11px;
}


/* BOTÓN TARJETA */

.btn-paseo {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 14px 24px;

    border-radius: 10px;

    background: #42cabb;
    color: #073037;

    font-size: 14px;
    font-weight: 800;

    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

.btn-paseo:hover {
    transform: translateY(-2px);

    background: #68ddd1;
}



/* =========================================================
   INTRO
========================================================= */

.intro {
    background: #ffffff;
}

.intro-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 80px;

    align-items: center;
}

.intro-texto p {
    margin-bottom: 18px;

    color: #697579;

    font-size: 17px;
    line-height: 1.8;
}

.intro-cards {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 18px;
}

.mini-card {
    padding: 26px;

    border: 1px solid #e0eded;
    border-radius: 18px;

    background: #f4f8f8;
}

.mini-icon {
    display: block;

    margin-bottom: 18px;

    font-size: 31px;
}

.mini-card strong {
    display: block;

    margin-bottom: 8px;

    font-size: 19px;
}

.mini-card p {
    color: #758084;

    font-size: 14px;
    line-height: 1.5;
}



/* =========================================================
   BALLENAS
========================================================= */

.ballenas {
    padding: 130px 0;

    background:
        linear-gradient(
            90deg,
            rgba(1, 24, 32, 0.94),
            rgba(1, 24, 32, 0.62)
        ),
        url("https://images.unsplash.com/photo-1568430462989-44163eb1752f");

    background-size: cover;
    background-position: center;

    color: #ffffff;
}

.ballenas-contenido {
    max-width: 720px;
}

.ballenas-contenido > p {
    color: rgba(255, 255, 255, 0.8);

    font-size: 18px;
    line-height: 1.8;
}

.ballenas-datos {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 20px;

    margin-top: 45px;
}

.ballenas-datos div {
    padding: 25px;

    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;

    background: rgba(255, 255, 255, 0.06);

    backdrop-filter: blur(5px);
}

.ballenas-datos strong {
    display: block;

    margin-bottom: 6px;

    color: #72ddd3;

    font-size: 32px;
}

.ballenas-datos span {
    color: rgba(255, 255, 255, 0.7);

    font-size: 14px;
}



/* =========================================================
   ITINERARIO
========================================================= */

.itinerario-seccion {
    background: #f5f7f8;
}

.timeline {
    position: relative;
}

.timeline::before {
    content: "";

    position: absolute;

    top: 0;
    bottom: 0;
    left: 67px;

    width: 2px;

    background: #cbe7e4;
}

.dia {
    position: relative;

    display: grid;

    grid-template-columns:
        135px minmax(0, 1fr);

    gap: 38px;

    margin-bottom: 40px;
}

.numero-dia {
    position: relative;

    z-index: 2;

    width: 105px;
    height: 105px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #082f36;
    color: #ffffff;

    box-shadow:
        0 12px 30px rgba(8, 47, 54, 0.18);
}

.numero-dia span {
    color: #72ddd3;

    font-size: 11px;

    letter-spacing: 2px;
}

.numero-dia strong {
    font-size: 34px;
}

.dia-contenido {
    padding: 38px;

    border-radius: 20px;

    background: #ffffff;

    box-shadow:
        0 12px 35px rgba(20, 40, 45, 0.06);
}

.dia-etiqueta {
    display: inline-block;

    margin-bottom: 15px;

    padding: 7px 12px;

    border-radius: 20px;

    background: #eef6f5;
    color: #087a70;

    font-size: 12px;
    font-weight: 700;
}

.dia-etiqueta.destacado {
    background: #d9f4f0;
}

.dia-contenido h3 {
    margin-bottom: 17px;

    font-size: 27px;
}

.dia-contenido p {
    margin-bottom: 15px;

    color: #69777b;

    line-height: 1.75;
}

.nota-dia {
    padding-left: 15px;

    border-left: 4px solid #43cbbb;
}

.dia-tags {
    display: flex;
    flex-wrap: wrap;

    gap: 10px;

    margin-top: 22px;
}

.dia-tags span {
    padding: 9px 12px;

    border-radius: 8px;

    background: #f3f7f7;

    font-size: 13px;
}



/* =========================================================
   QUÉ INCLUYE
========================================================= */

.incluye-seccion {
    background: #ffffff;
}

.incluye-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 20px;
}

.incluye-card {
    padding: 28px;

    border: 1px solid #e4ecec;
    border-radius: 18px;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.incluye-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 14px 35px rgba(8, 47, 54, 0.08);
}

.incluye-card > span {
    display: block;

    margin-bottom: 18px;

    font-size: 32px;
}

.incluye-card h3 {
    margin-bottom: 10px;

    font-size: 19px;
}

.incluye-card p {
    color: #778487;

    font-size: 14px;
    line-height: 1.55;
}



/* =========================================================
   EXPERIENCIAS EXTRA
========================================================= */

.extras-seccion {
    padding: 100px 0;

    background: #082f36;
    color: #ffffff;
}

.extras-contenido {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 80px;

    align-items: center;
}

.extras-contenido > div:first-child p {
    color: rgba(255, 255, 255, 0.7);

    font-size: 17px;
    line-height: 1.8;
}

.extras-lista {
    display: grid;

    gap: 14px;
}

.extras-lista div {
    display: flex;
    align-items: center;

    gap: 16px;

    padding: 18px 20px;

    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;

    background: rgba(255, 255, 255, 0.07);
}

.extras-lista span {
    font-size: 25px;
}



/* =========================================================
   RESEÑAS
========================================================= */

.resenas-seccion {
    background:
        linear-gradient(
            180deg,
            #f5f8f8 0%,
            #ffffff 100%
        );
}

.encabezado-resenas {
    max-width: 760px;

    margin-left: auto;
    margin-right: auto;

    text-align: center;
}

.encabezado-resenas h2 span {
    color: #43cbbb;
}

.resenas-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 28px;
}

.resena-card {
    position: relative;

    padding: 30px;

    border: 1px solid #e3eeee;
    border-radius: 22px;

    background: #ffffff;

    box-shadow:
        0 12px 35px rgba(8, 47, 54, 0.07);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.resena-card:hover {
    transform: translateY(-8px);

    border-color: #bfe8e3;

    box-shadow:
        0 22px 50px rgba(8, 47, 54, 0.13);
}

.resena-superior {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 20px;
}

.persona-resena {
    display: flex;
    align-items: center;

    gap: 14px;
}

.foto-resena {
    width: 62px;
    height: 62px;

    object-fit: cover;

    border: 3px solid #d9f4f0;
    border-radius: 50%;

    box-shadow:
        0 5px 15px rgba(8, 47, 54, 0.12);
}

.persona-resena strong {
    display: block;

    margin-bottom: 5px;

    color: #153238;

    font-size: 16px;
}

.persona-resena span {
    display: block;

    color: #879497;

    font-size: 12px;
}

.comillas {
    color: #d6f2ef;

    font-family: Georgia, serif;
    font-size: 55px;
    line-height: 1;

    user-select: none;
}

.estrellas {
    margin-bottom: 18px;

    color: #f5b301;

    font-size: 19px;

    letter-spacing: 3px;
}

.resena-texto {
    min-height: 145px;

    margin-bottom: 24px;

    color: #617075;

    font-size: 15px;
    line-height: 1.8;
}

.resena-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    padding-top: 18px;

    border-top: 1px solid #edf2f2;
}

.resena-footer > span {
    display: inline-flex;
    align-items: center;

    padding: 8px 12px;

    border-radius: 30px;

    background: #eaf8f6;
    color: #087b72;

    font-size: 12px;
    font-weight: 700;
}

.resena-footer small {
    color: #a0aaac;

    font-size: 11px;
}

.aviso-resenas {
    max-width: 650px;

    margin: 28px auto 0;

    color: #9aa5a7;

    font-size: 11px;
    line-height: 1.6;

    text-align: center;
}



/* =========================================================
   IMPORTANTE / ADVERTENCIA
========================================================= */

.importante {
    background: #f5f7f8;
}

.importante-box {
    display: grid;

    grid-template-columns:
        80px minmax(0, 1fr);

    gap: 25px;

    align-items: center;

    padding: 35px;

    border: 1px solid #f0d3b4;
    border-radius: 20px;

    background: #fff4e9;
}

.importante-icono {
    width: 65px;
    height: 65px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #ff983d;
    color: #ffffff;

    font-size: 30px;
    font-weight: 700;
}

.importante-box h2 {
    margin-bottom: 10px;

    font-size: 26px;
}

.importante-box p {
    color: #765f4a;

    line-height: 1.7;
}



/* =========================================================
   CTA / RESERVA FINAL
========================================================= */

.reserva-seccion {
    padding: 110px 0;

    background:
        linear-gradient(
            110deg,
            rgba(1, 25, 32, 0.96),
            rgba(1, 25, 32, 0.84)
        ),
        url("https://images.unsplash.com/photo-1516026672322-bc52d61a55d5");

    background-size: cover;
    background-position: center;
}

.reserva-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr) 420px;

    gap: 80px;

    align-items: center;
}

.reserva-info {
    color: #ffffff;
}

.reserva-info p {
    max-width: 650px;

    color: rgba(255, 255, 255, 0.72);

    font-size: 17px;
    line-height: 1.8;
}

.reserva-detalles {
    display: flex;
    flex-wrap: wrap;

    gap: 45px;

    margin-top: 35px;
}

.reserva-detalles div {
    display: flex;
    flex-direction: column;

    gap: 6px;
}

.reserva-detalles span {
    color: rgba(255, 255, 255, 0.55);

    font-size: 13px;
}

.reserva-detalles strong {
    font-size: 16px;
}

.reserva-card {
    padding: 38px;

    border-radius: 22px;

    background: #ffffff;

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.25);
}

.precio-label {
    color: #748084;

    font-size: 14px;
}

.precio {
    margin-top: 8px;

    color: #082f36;

    font-size: 37px;
}

.precio-nota {
    margin-top: 8px;

    color: #899396;

    font-size: 13px;
    line-height: 1.5;
}

.btn-reservar {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-top: 28px;

    padding: 17px;

    border-radius: 11px;

    background: #43cbbb;
    color: #06292f;

    font-size: 16px;
    font-weight: 800;

    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

.btn-reservar:hover {
    transform: translateY(-2px);

    background: #65dbcf;
}

.reserva-aviso {
    margin-top: 14px;

    color: #929c9e;

    font-size: 12px;

    text-align: center;
}



/* =========================================================
   BOTÓN FLOTANTE DE RESERVA
========================================================= */

.reserva-flotante {
    position: fixed;

    right: 24px;
    bottom: 100px;

    z-index: 9998;

    display: flex;
    align-items: center;

    gap: 9px;

    padding: 14px 20px;

    border-radius: 40px;

    background: #082f36;
    color: #ffffff;

    font-size: 14px;
    font-weight: 800;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.22);

    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

.reserva-flotante:hover {
    transform: translateY(-3px);

    background: #0c555f;
}

.reserva-flotante-icono {
    color: #61dcd0;

    font-size: 17px;
}



/* =========================================================
   WHATSAPP FLOTANTE
========================================================= */

.whatsapp-float {
    position: fixed;

    right: 25px;
    bottom: 25px;

    z-index: 9999;

    width: 62px;
    height: 62px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #25d366;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.22);

    transition:
        transform 0.25s ease;
}

.whatsapp-float:hover {
    transform: scale(1.08);
}

.whatsapp-float svg {
    width: 34px;
    height: 34px;

    fill: #ffffff;
}



/* =========================================================
   RESPONSIVE - TABLET
========================================================= */

@media (max-width: 950px) {

    .intro-grid,
    .extras-contenido,
    .reserva-grid {
        grid-template-columns: 1fr;
    }

    .paseos-grid {
        grid-template-columns: 1fr;
    }

    .incluye-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .resenas-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .reserva-grid {
        gap: 50px;
    }

    .reserva-card {
        max-width: 550px;
    }

}



/* =========================================================
   RESPONSIVE - MÓVIL
========================================================= */

@media (max-width: 700px) {

    .seccion {
        padding: 75px 0;
    }


    /* HERO */

    .hero,
    .hero-overlay {
        min-height: 660px;
    }

    .hero-info {
        gap: 25px;
    }


    /* INTRO */

    .intro-cards {
        grid-template-columns: 1fr;
    }


    /* BALLENAS */

    .ballenas {
        padding: 90px 0;
    }

    .ballenas-datos {
        grid-template-columns: 1fr;
    }


    /* ITINERARIO */

    .timeline::before {
        display: none;
    }

    .dia {
        grid-template-columns: 1fr;

        gap: 18px;
    }

    .numero-dia {
        width: 80px;
        height: 80px;
    }

    .numero-dia strong {
        font-size: 27px;
    }

    .dia-contenido {
        padding: 28px 22px;
    }


    /* INCLUYE */

    .incluye-grid {
        grid-template-columns: 1fr;
    }


    /* RESEÑAS */

    .resenas-grid {
        grid-template-columns: 1fr;
    }

    .resena-texto {
        min-height: auto;
    }


    /* IMPORTANTE */

    .importante-box {
        grid-template-columns: 1fr;
    }


    /* RESERVA */

    .reserva-detalles {
        flex-direction: column;

        gap: 20px;
    }

}



/* =========================================================
   RESPONSIVE - CELULARES PEQUEÑOS
========================================================= */

@media (max-width: 520px) {

    .contenedor,
    .hero-content {
        width: calc(100% - 30px);
    }


    /* HERO */

    .hero h1 {
        font-size: 46px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-info {
        flex-direction: column;

        gap: 18px;
    }


    /* TÍTULOS */

    .intro-texto h2,
    .encabezado-seccion h2,
    .ballenas h2,
    .extras-contenido h2,
    .reserva-info h2 {
        font-size: 36px;
    }


    /* PASEOS */

    .paseo-imagen {
        height: 250px;
    }

    .paseo-contenido {
        padding: 23px 20px;
    }

    .paseo-precio {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-paseo {
        width: 100%;
    }


    /* RESEÑAS */

    .resena-card {
        padding: 25px 22px;
    }

    .resena-footer {
        flex-direction: column;
        align-items: flex-start;
    }


    /* CTA */

    .reserva-card {
        padding: 28px 22px;
    }


    /* BOTÓN RESERVA FLOTANTE */

    .reserva-flotante {
        right: 16px;
        bottom: 85px;

        padding: 13px 17px;

        font-size: 13px;
    }


    /* WHATSAPP */

    .whatsapp-float {
        right: 17px;
        bottom: 17px;

        width: 55px;
        height: 55px;
    }

    .whatsapp-float svg {
        width: 30px;
        height: 30px;
    }

}

.paseo-card-link {
    display: block;
    height: 100%;

    color: inherit;
    text-decoration: none;
}

.paseo-card-link:visited {
    color: inherit;
}

.paseo-card-link:focus-visible {
    outline: 3px solid #43cbbb;
    outline-offset: 5px;
    border-radius: 22px;
}