/* =========================================================
   RENTAVO
   Stay · Drive · Explore
========================================================= */


/* =========================================================
   VARIABLES
========================================================= */

:root {
    --blue: #0077B6;
    --green: #2E8B57;
    --orange: #F05A28;
    --yellow: #F4B942;

    --ivory: #FFF8ED;
    --charcoal: #202524;
    --navy: #073653;
    --white: #ffffff;

    --text-muted: #68757c;

    --shadow-soft:
        0 12px 30px rgba(11, 54, 83, 0.08);

    --shadow-medium:
        0 18px 40px rgba(11, 54, 83, 0.14);
}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family: "Poppins", sans-serif;
    color: var(--charcoal);
    background: var(--ivory);
}


a {
    color: inherit;
    text-decoration: none;
}


button,
input,
textarea,
select {
    font: inherit;
}


img {
    display: block;
    max-width: 100%;
}


button {
    border: none;
}


.container {
    width: min(1400px, 92%);
    margin: 0 auto;
}


/* =========================================================
   HEADER
========================================================= */

.header {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 50;

    padding: 22px 0;
}


.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


.logo {
    flex-shrink: 0;
}


.logo img {
    width: 180px;
    height: auto;
}


.nav {
    display: flex;
    align-items: center;

    gap: 42px;
}


.nav a {
    position: relative;

    color: var(--white);

    font-size: 14px;
    font-weight: 500;

    transition: color 0.25s ease;
}


.nav a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -9px;

    width: 0;
    height: 2px;

    background: var(--orange);

    transition: width 0.25s ease;
}


.nav a:hover::after,
.nav a.active::after {
    width: 100%;
}


.nav-cta {
    flex-shrink: 0;

    padding: 14px 26px;

    border-radius: 50px;

    background: var(--orange);

    color: var(--white);

    font-size: 13px;
    font-weight: 600;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.nav-cta:hover {
    transform: translateY(-2px);

    box-shadow:
        0 10px 24px rgba(240, 90, 40, 0.28);
}


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;

    min-height: 100vh;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        url("../img/hero-rentavo.jpg")
        center center / cover
        no-repeat;
}


.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(3, 40, 66, 0.96) 0%,
            rgba(3, 47, 74, 0.84) 28%,
            rgba(3, 47, 74, 0.48) 48%,
            rgba(3, 47, 74, 0.12) 70%,
            rgba(3, 47, 74, 0) 100%
        );
}


.hero-inner {
    position: relative;

    z-index: 3;

    min-height: 100vh;

    display: flex;
    align-items: center;

    padding-top: 120px;
    padding-bottom: 80px;
}


.hero-copy {
    width: min(760px, 60%);
}


/* HERO TAG */

.hero-tag {
    display: flex;
    align-items: center;

    gap: 12px;

    margin-bottom: 18px;

    font-size: 13px;
    font-weight: 600;

    letter-spacing: 4px;

    color: var(--blue);
}


.hero-tag i {
    display: block;

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: var(--white);
}


.tag-orange {
    color: var(--orange);
}


.tag-green {
    color: #67b75b;
}


/* HERO TITLE */

.hero h1 {
    display: flex;
    flex-direction: column;

    font-family: "Bebas Neue", sans-serif;

    line-height: 0.87;
    letter-spacing: 1px;
}


.hero h1 span {
    display: block;
}


.title-white {
    color: var(--white);

    font-size: clamp(66px, 6.4vw, 105px);
}


.title-green {
    color: #69a943;

    font-size: clamp(76px, 7.2vw, 122px);

    margin: 4px 0;
}


.title-last {
    font-size: clamp(55px, 5.1vw, 84px);
}


/* HERO COPY */

.hero-copy > p {
    max-width: 610px;

    margin-top: 26px;

    color: rgba(255, 255, 255, 0.93);

    font-size: 16px;
    line-height: 1.7;
}


.hero-line {
    width: 65px;
    height: 3px;

    margin-top: 18px;

    background: var(--orange);
}


/* HERO BUTTONS */

.hero-buttons {
    display: flex;
    align-items: center;

    gap: 18px;

    margin-top: 24px;
}


.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 190px;

    padding: 15px 27px;

    border-radius: 50px;

    font-size: 14px;
    font-weight: 600;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        color 0.25s ease,
        box-shadow 0.25s ease;
}


.btn-primary {
    background: var(--orange);
    color: var(--white);
}


.btn-primary:hover {
    transform: translateY(-3px);

    box-shadow:
        0 12px 25px rgba(240, 90, 40, 0.28);
}


.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.75);

    background: rgba(0, 0, 0, 0.06);

    color: var(--white);

    backdrop-filter: blur(6px);
}


.btn-outline:hover {
    background: var(--white);
    color: var(--navy);
}


/* =========================================================
   SERVICES SECTION
========================================================= */

.services-section {
    padding: 100px 0 115px;

    background: var(--ivory);
}


.services-layout {
    display: block;
}


/* INTRO */

.services-intro {
    max-width: 760px;

    margin: 0 auto 50px;

    text-align: center;
}


.section-eyebrow {
    display: inline-block;

    margin-bottom: 12px;

    color: var(--orange);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 4px;
}


.section-eyebrow::after {
    content: "";

    display: block;

    width: 50px;
    height: 2px;

    margin: 8px auto 0;

    background: var(--orange);
}


.services-intro h2 {
    margin-bottom: 16px;

    color: var(--navy);

    font-family: "Bebas Neue", sans-serif;

    font-size: clamp(48px, 5vw, 72px);
    line-height: 0.95;

    letter-spacing: 1px;
}


.services-intro p {
    max-width: 650px;

    margin: 0 auto;

    color: var(--text-muted);

    font-size: 15px;
    line-height: 1.7;
}


/* =========================================================
   SERVICES ACCORDION
========================================================= */

.services-accordion {
    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 18px;

    width: 100%;
}


/*
   IMPORTANTE:
   Esto permite que las 3 tarjetas superiores y
   sus galerías participen en el mismo grid.
*/

.service-expandable {
    display: contents;
}


/* =========================================================
   SERVICE HEADER CARDS
========================================================= */

.service-expandable-header {
    position: relative;

    grid-row: 1;

    width: 100%;
    height: 250px;

    overflow: hidden;

    border-radius: 18px;

    cursor: pointer;

    text-align: left;

    background: var(--navy);

    box-shadow: var(--shadow-soft);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.service-expandable:nth-child(1)
.service-expandable-header {
    grid-column: 1;
}


.service-expandable:nth-child(2)
.service-expandable-header {
    grid-column: 2;
}


.service-expandable:nth-child(3)
.service-expandable-header {
    grid-column: 3;
}


.service-expandable-header:hover {
    transform: translateY(-5px);

    box-shadow: var(--shadow-medium);
}


/* IMAGE */

.service-expandable-image {
    position: absolute;
    inset: 0;
}


.service-expandable-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;
}


.service-expandable-header:hover
.service-expandable-image img {
    transform: scale(1.04);
}


.service-expandable-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.08) 5%,
            rgba(3, 28, 45, 0.38) 50%,
            rgba(3, 28, 45, 0.94) 100%
        );
}


/* CONTENT */

.service-expandable-content {
    position: relative;

    z-index: 2;

    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    padding: 25px;

    color: var(--white);
}


.service-top {
    position: absolute;

    top: 24px;
    left: 25px;

    display: flex;
    align-items: center;

    gap: 15px;
}


.service-top svg {
    width: 38px;
    height: 38px;

    stroke-width: 1.5;
}


.service-big-number {
    font-family: "Bebas Neue", sans-serif;

    font-size: 38px;
    line-height: 1;
}


.service-blue {
    color: #20a7e3;
}


.service-green {
    color: #55ad61;
}


.service-orange {
    color: var(--orange);
}


.service-expandable-content h3 {
    margin-bottom: 8px;

    font-family: "Bebas Neue", sans-serif;

    font-size: 36px;
    line-height: 1;

    letter-spacing: 1px;
}


.service-expandable-content p {
    max-width: 280px;

    color: rgba(255, 255, 255, 0.9);

    font-size: 13px;
    line-height: 1.6;
}


/* CHEVRON */

.service-chevron {
    position: absolute;

    right: 20px;
    bottom: 20px;

    z-index: 4;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    padding: 9px 14px;

    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 50px;

    background: rgba(0, 0, 0, 0.18);

    color: var(--white);

    backdrop-filter: blur(8px);

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}


.service-chevron-text {
    font-size: 10px;
    font-weight: 600;

    text-transform: uppercase;
    letter-spacing: 1.2px;
}


.service-chevron svg {
    width: 15px;
    height: 15px;

    transition: transform 0.35s ease;
}


.service-expandable-header:hover .service-chevron {
    background: var(--orange);
    transform: translateY(-2px);
}


/* CUANDO LA TARJETA ESTÁ ABIERTA */

.service-expandable.active
.service-chevron svg {
    transform: rotate(180deg);
}

.service-expandable.active
.service-chevron-text {
    font-size: 0;
}

.service-expandable.active
.service-chevron-text::after {
    content: "Ocultar";

    font-size: 10px;
    font-weight: 600;

    text-transform: uppercase;
    letter-spacing: 1.2px;
}


/* =========================================================
   SERVICE DROPDOWN
========================================================= */

.service-gallery {
    grid-column: 1 / -1;
    grid-row: 2;

    max-height: 0;

    overflow: hidden;

    opacity: 0;

    pointer-events: none;

    transition:
        max-height 0.6s ease,
        opacity 0.35s ease;
}

.service-expandable.active .service-gallery {
    max-height: 10000px;
    opacity: 1;
    pointer-events: auto;
}


.service-gallery-inner {
    width: 100%;

    margin-top: 24px;

    padding: 30px;

    border: 1px solid rgba(11, 54, 83, 0.08);
    border-radius: 22px;

    background: var(--white);

    box-shadow:
        0 15px 40px rgba(11, 54, 83, 0.08);
}


/* =========================================================
   GALLERY HEADING
========================================================= */

.gallery-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    margin-bottom: 25px;
}


.gallery-heading > div {
    min-width: 0;
}


.gallery-heading span {
    color: var(--blue);

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 1px;
}


.gallery-heading p {
    margin-top: 5px;

    color: #7a858a;

    font-size: 12px;
    line-height: 1.6;
}


.gallery-heading > a {
    flex-shrink: 0;

    color: var(--blue);

    font-size: 13px;
    font-weight: 600;

    transition: color 0.25s ease;
}


.gallery-heading > a:hover {
    color: var(--orange);
}


/* =========================================================
   STAY FILTERS
========================================================= */

.stay-filters {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    margin: 28px 0 30px;
}


.stay-filter {
    min-width: 110px;

    padding: 11px 24px;

    border: 1px solid rgba(11, 54, 83, 0.18);
    border-radius: 50px;

    background: var(--white);

    color: #536168;

    font-size: 12px;
    font-weight: 600;

    cursor: pointer;

    transition:
        color 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.stay-filter:hover {
    transform: translateY(-2px);

    color: var(--blue);

    border-color: var(--blue);
}


.stay-filter.active {
    background: var(--blue);

    color: var(--white);

    border-color: var(--blue);

    box-shadow:
        0 7px 18px rgba(0, 119, 182, 0.18);
}


/* =========================================================
   GALLERY GRID
========================================================= */

.gallery-grid {
    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 22px;
}


/* =========================================================
   GALLERY CARD
========================================================= */

.gallery-card {
    min-width: 0;
    height: 100%;

    display: flex;
    flex-direction: column;

    overflow: hidden;

    border: 1px solid rgba(11, 54, 83, 0.09);
    border-radius: 15px;

    background: var(--white);

    box-shadow:
        0 7px 20px rgba(11, 54, 83, 0.07);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.gallery-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 14px 30px rgba(11, 54, 83, 0.12);
}



/* IMAGEN ESTÁNDAR DE HOSPEDAJES */

.gallery-image {
    position: relative;

    width: 100%;
    height: 220px;

    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    display: block;

    transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-image img {
    transform: scale(1.05);
}


/* BADGE */

.gallery-badge {
    position: absolute;

    top: 12px;
    left: 12px;

    padding: 6px 11px;

    border-radius: 20px;

    color: var(--white);

    font-size: 10px;
    font-weight: 600;
}


.blue-badge {
    background: var(--blue);
}


.green-badge {
    background: var(--green);
}


.orange-badge {
    background: var(--orange);
}


/* CARD CONTENT */

.gallery-content {
    display: flex;
    flex-direction: column;
    flex: 1;

    padding: 19px;
}


.gallery-content h4 {
    margin-bottom: 7px;

    color: #102f46;

    font-size: 18px;
    font-weight: 600;
}


.gallery-location {
    display: flex;
    align-items: center;

    gap: 6px;

    color: var(--text-muted);

    font-size: 11px;
}


.gallery-location svg {
    flex-shrink: 0;

    width: 14px;
    height: 14px;

    color: var(--orange);

    stroke-width: 1.7;
}


/* CARD FEATURES */

.gallery-features {
    display: flex;
    flex-wrap: wrap;

    gap: 10px 16px;

    margin-top: 16px;
}


.gallery-features span {
    display: inline-flex;
    align-items: center;

    gap: 6px;

    color: var(--text-muted);

    font-size: 10px;
}


.gallery-features svg {
    width: 15px;
    height: 15px;

    color: var(--blue);

    stroke-width: 1.5;
}


/* CARD FOOTER */

.gallery-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: 15px;

    margin-top: auto;
    padding-top: 15px;

    border-top: 1px solid rgba(11, 54, 83, 0.08);
}

.gallery-price {
    margin-right: auto;
}


.gallery-price strong {
    color: var(--blue);

    font-size: 21px;
}


.gallery-price span {
    margin-left: 3px;

    color: var(--text-muted);

    font-size: 10px;
}


/* CARD BUTTON */

.gallery-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    padding: 10px 15px;

    border: none;
    border-radius: 8px;

    background: var(--blue);

    color: var(--white);

    font-size: 11px;
    font-weight: 600;

    cursor: pointer;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}


.gallery-btn:hover {
    transform: translateY(-2px);

    background: var(--orange);
}


.gallery-btn svg {
    width: 14px;
    height: 14px;

    stroke-width: 2;
}


/* =========================================================
   DISCOVER EL SALVADOR
========================================================= */

.discover-section {
    position: relative;

    padding: 110px 0 120px;

    overflow: hidden;

    background:
        linear-gradient(
            rgba(255, 248, 237, 0.96),
            rgba(255, 248, 237, 0.96)
        ),
        url("../img/topography.png");

    background-size: cover;
}


.discover-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    align-items: center;

    gap: 90px;
}


/* DISCOVER COLLAGE */

.discover-gallery {
    position: relative;

    min-height: 540px;
}


.discover-photo {
    position: absolute;

    overflow: hidden;

    border: 4px solid var(--ivory);
    border-radius: 18px;

    box-shadow:
        0 18px 45px rgba(15, 53, 72, 0.18);
}


.discover-photo img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.6s ease;
}


.discover-photo:hover img {
    transform: scale(1.05);
}


.discover-photo-beach {
    top: 0;
    left: 0;

    z-index: 1;

    width: 62%;
    height: 300px;
}


.discover-photo-volcano {
    top: 85px;
    right: 0;

    z-index: 2;

    width: 50%;
    height: 290px;
}


.discover-photo-town {
    bottom: 0;
    left: 14%;

    z-index: 3;

    width: 57%;
    height: 250px;
}


.discover-dots {
    position: absolute;

    left: 0;
    bottom: 25px;

    width: 100px;
    height: 100px;

    opacity: 0.55;

    background-image:
        radial-gradient(
            var(--orange) 2px,
            transparent 2px
        );

    background-size: 14px 14px;
}


/* DISCOVER CONTENT */

.discover-content {
    max-width: 620px;
}


.discover-eyebrow {
    display: inline-block;

    margin-bottom: 12px;

    color: var(--orange);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 4px;
}


.discover-content h2 {
    display: flex;
    flex-direction: column;

    color: var(--navy);

    font-family: "Bebas Neue", sans-serif;

    font-size: clamp(65px, 5vw, 88px);
    line-height: 0.86;

    letter-spacing: 1px;
}


.discover-content h2 span {
    margin-top: 10px;

    color: var(--green);

    font-size: 0.72em;
}


.discover-line {
    width: 48px;
    height: 3px;

    margin: 20px 0;

    background: var(--orange);
}


.discover-description {
    max-width: 590px;

    color: #536168;

    font-size: 15px;
    line-height: 1.75;
}


/* DISCOVER BENEFITS */

.discover-benefits {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    margin-top: 38px;
}


.discover-benefit {
    padding: 0 25px;

    border-right:
        1px solid rgba(11, 54, 83, 0.15);
}


.discover-benefit:first-child {
    padding-left: 0;
}


.discover-benefit:last-child {
    padding-right: 0;

    border-right: none;
}


.discover-benefit svg {
    width: 42px;
    height: 42px;

    margin-bottom: 14px;

    stroke-width: 1.5;
}


.discover-benefit h3 {
    margin-bottom: 10px;

    font-size: 15px;
    font-weight: 700;
}


.discover-benefit p {
    color: var(--text-muted);

    font-size: 12px;
    line-height: 1.6;
}


.discover-benefit.stay svg,
.discover-benefit.stay h3 {
    color: var(--blue);
}


.discover-benefit.move svg,
.discover-benefit.move h3 {
    color: var(--green);
}


.discover-benefit.explore svg,
.discover-benefit.explore h3 {
    color: var(--orange);
}


/* DISCOVER CTA */

.discover-btn {
    display: inline-flex;
    align-items: center;

    gap: 12px;

    margin-top: 32px;

    padding: 14px 25px;

    border-radius: 50px;

    background: var(--orange);

    color: var(--white);

    font-size: 13px;
    font-weight: 600;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.discover-btn:hover {
    transform: translateY(-3px);

    box-shadow:
        0 12px 25px rgba(240, 90, 40, 0.25);
}


.discover-btn svg,
.discover-btn i {
    width: 17px;
    height: 17px;

    transition: transform 0.25s ease;
}


.discover-btn:hover svg,
.discover-btn:hover i {
    transform: translateX(4px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .nav {
        gap: 22px;
    }


    .hero-copy {
        width: 70%;
    }


    .discover-layout {
        gap: 55px;
    }

}


/* =========================================================
   MOBILE / TABLET
========================================================= */

@media (max-width: 850px) {

    /* HEADER */

    .nav {
        display: none;
    }


    .logo img {
        width: 165px;
    }


    /* HERO */

    .hero {
        min-height: 760px;

        background-position: 62% center;
    }


    .hero-inner {
        min-height: 760px;

        padding-top: 130px;
        padding-bottom: 70px;
    }


    .hero-copy {
        width: 100%;
    }


    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(3, 40, 66, 0.94),
                rgba(3, 40, 66, 0.70)
            );
    }


    /* SERVICES */

   .services-accordion {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    width: 100%;
}

.service-expandable {
    display: contents;
}


/* LAS TRES TARJETAS SIEMPRE EN LA PRIMERA FILA */

.service-expandable-header {
    grid-row: 1;
}

.service-expandable:nth-child(1) .service-expandable-header {
    grid-column: 1;
}

.service-expandable:nth-child(2) .service-expandable-header {
    grid-column: 2;
}

.service-expandable:nth-child(3) .service-expandable-header {
    grid-column: 3;
}


    /* =========================================================
   GALERÍAS DESPLEGABLES
========================================================= */

/* =========================================================
   GALERÍAS DESPLEGABLES
========================================================= */

.service-gallery {
    grid-column: 1 / -1;
    grid-row: 2;

    width: 100%;

    max-height: 0;
    opacity: 0;

    overflow: hidden;
    pointer-events: none;

    transition:
        max-height 0.55s ease,
        opacity 0.3s ease;
}


/* CUANDO SE ABRE */

.service-expandable.active .service-gallery {
    max-height: 10000px;
    opacity: 1;

    pointer-events: auto;
}


/* SOLO LA GALERÍA ACTIVA APARECE */


    .service-gallery-inner {
        margin-top: 14px;

        padding: 20px;
    }


    .gallery-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    /* DISCOVER */

    .discover-layout {
        grid-template-columns: 1fr;

        gap: 60px;
    }


    .discover-gallery {
        width: 100%;
        max-width: 700px;

        margin: 0 auto;
    }


    .discover-content {
        max-width: 700px;

        margin: 0 auto;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 600px) {

    /* HEADER */

    .header {
        padding: 16px 0;
    }


    .nav-cta {
        display: none;
    }


    .logo img {
        width: 145px;
    }


    /* HERO */

    .hero {
        min-height: 720px;
    }


    .hero-inner {
        min-height: 720px;

        padding-top: 115px;
    }


    .title-white {
        font-size: 60px;
    }


    .title-green {
        font-size: 68px;
    }


    .title-last {
        font-size: 45px;
    }


    .hero-copy > p {
        font-size: 14px;
    }


    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }


    .btn {
        width: 100%;
    }


    /* SERVICES */

    .services-section {
        padding: 70px 0 80px;
    }


    .services-intro {
        margin-bottom: 35px;
    }


    .services-intro h2 {
        font-size: 43px;
    }


    .service-expandable-header {
        height: 210px;
    }


    .gallery-heading {
        flex-direction: column;
        align-items: flex-start;

        gap: 12px;
    }


    .gallery-grid {
        grid-template-columns: 1fr;
    }


    /* FILTERS */

    .stay-filters {
        width: 100%;

        gap: 6px;
    }


    .stay-filter {
        flex: 1;

        min-width: 0;

        padding: 10px 6px;

        font-size: 11px;
    }


    /* DISCOVER */

    .discover-section {
        padding: 75px 0;
    }


    .discover-gallery {
        min-height: 440px;
    }


    .discover-photo-beach {
        width: 72%;
        height: 230px;
    }


    .discover-photo-volcano {
        top: 90px;

        width: 55%;
        height: 220px;
    }


    .discover-photo-town {
        left: 8%;

        width: 70%;
        height: 200px;
    }


    .discover-content h2 {
        font-size: 62px;
    }


    .discover-benefits {
        grid-template-columns: 1fr;

        gap: 24px;
    }


    .discover-benefit {
        padding: 0 0 24px;

        border-right: none;

        border-bottom:
            1px solid rgba(11, 54, 83, 0.12);
    }


    .discover-benefit:last-child {
        padding-bottom: 0;

        border-bottom: none;
    }

}


/* =========================================================
   VERY SMALL SCREENS
========================================================= */

@media (max-width: 390px) {

    .title-white {
        font-size: 52px;
    }


    .title-green {
        font-size: 59px;
    }


    .title-last {
        font-size: 39px;
    }


    .service-expandable-content h3 {
        font-size: 32px;
    }


    .service-gallery-inner {
        padding: 16px;
    }

}

/* =========================================================
   MODAL HOSPEDAJES
========================================================= */

.stay-modal {
    position: fixed;
    inset: 0;

    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 25px;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity .3s ease,
        visibility .3s ease;
}

.stay-modal.active {
    opacity: 1;
    visibility: visible;
}


/* FONDO */

.stay-modal-backdrop {
    position: absolute;
    inset: 0;

    background: rgba(3, 28, 45, .72);

    backdrop-filter: blur(5px);
}


/* CAJA */

.stay-modal-box {
    position: relative;
    z-index: 2;

    width: min(900px, 100%);

    display: grid;
    grid-template-columns: 1.05fr 1fr;

    overflow: hidden;

    border-radius: 22px;

    background: #ffffff;

    box-shadow:
        0 30px 80px rgba(0, 0, 0, .28);

    transform: translateY(25px) scale(.98);

    transition: transform .35s ease;
}

.stay-modal.active .stay-modal-box {
    transform: translateY(0) scale(1);
}


/* IMAGEN */

.stay-modal-image {
    height: 520px;
    min-height: 0;
    overflow: hidden;
}

.stay-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* BOTÓN CERRAR */

.stay-modal-close {
    position: absolute;

    top: 18px;
    right: 18px;

    z-index: 5;

    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #ffffff;

    color: var(--navy);

    cursor: pointer;

    box-shadow:
        0 5px 18px rgba(0, 0, 0, .15);
}

.stay-modal-close svg {
    width: 19px;
    height: 19px;
}


/* CONTENIDO */

.stay-modal-content {
    padding: 55px 42px 40px;
}

.stay-modal-label {
    color: var(--orange);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 3px;
}

.stay-modal-content h3 {
    margin-top: 8px;

    color: var(--navy);

    font-family: "Bebas Neue", sans-serif;

    font-size: 48px;
    line-height: 1;
}


/* UBICACIÓN */

.stay-modal-location {
    display: flex;
    align-items: center;

    gap: 7px;

    margin-top: 12px;

    color: var(--text-muted);

    font-size: 13px;
}

.stay-modal-location svg {
    width: 16px;
    height: 16px;

    color: var(--orange);
}


/* CARACTERÍSTICAS */

.stay-modal-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 10px;

    margin-top: 30px;
}

.stay-modal-features div {
    display: flex;
    flex-direction: column;

    gap: 7px;

    padding: 15px 10px;

    border-radius: 10px;

    background: var(--ivory);

    color: var(--navy);

    font-size: 10px;
    font-weight: 600;
}

.stay-modal-features svg {
    width: 19px;
    height: 19px;

    color: var(--blue);
}


/* CHECK IN / OUT */

.stay-modal-info {
    margin-top: 25px;

    border-top: 1px solid rgba(11, 54, 83, .10);
}

.stay-modal-info div {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 13px 0;

    border-bottom: 1px solid rgba(11, 54, 83, .10);
}

.stay-modal-info span {
    color: var(--text-muted);

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 1px;
}

.stay-modal-info strong {
    color: var(--navy);

    font-size: 12px;
}


/* WHATSAPP */

.stay-modal-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    width: 100%;

    margin-top: 28px;

    padding: 14px 20px;

    border-radius: 50px;

    background: var(--green);

    color: #ffffff;

    font-size: 12px;
    font-weight: 600;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.stay-modal-whatsapp:hover {
    transform: translateY(-2px);

    box-shadow:
        0 10px 24px rgba(46, 139, 87, .25);
}

.stay-modal-whatsapp svg {
    width: 18px;
    height: 18px;
}


/* EVITAR SCROLL DETRÁS DEL MODAL */

body.modal-open {
    overflow: hidden;
}


/* MOBILE */

@media (max-width: 700px) {

    .stay-modal {
        padding: 15px;
    }

    .stay-modal-box {
        grid-template-columns: 1fr;

        max-height: 90vh;

        overflow-y: auto;
    }

    .stay-modal-image {
        min-height: 260px;
        height: 260px;
    }

    .stay-modal-content {
        padding: 30px 22px;
    }

    .stay-modal-content h3 {
        font-size: 40px;
    }

}

/* =========================================================
   TOURS RENTAVO
========================================================= */

.tours-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}


/* TARJETA */

.tour-card {
    position: relative;

    min-height: 470px;

    overflow: hidden;

    border-radius: 18px;

    background: var(--navy);

    box-shadow:
        0 12px 30px rgba(11, 54, 83, .12);

    isolation: isolate;

    transition:
        transform .35s ease,
        box-shadow .35s ease;
}


.tour-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 20px 45px rgba(11, 54, 83, .18);
}


/* FOTO */

.tour-card-image {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    z-index: -3;

    transition: transform .6s ease;
}


.tour-card:hover .tour-card-image {
    transform: scale(1.06);
}


/* DEGRADADO */

.tour-card-overlay {
    position: absolute;

    inset: 0;

    z-index: -2;

    background:
        linear-gradient(
            180deg,
            rgba(2, 25, 40, .10) 15%,
            rgba(2, 25, 40, .30) 45%,
            rgba(2, 25, 40, .95) 100%
        );
}


/* CONTENIDO */

.tour-card-content {
    position: relative;

    z-index: 2;

    height: 100%;

    min-height: 470px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    padding: 25px;
}


/* NÚMERO */

.tour-number {
    width: fit-content;

    color: var(--orange);

    font-family: "Bebas Neue", sans-serif;

    font-size: 38px;
    line-height: 1;
}


.tour-number::after {
    content: "";

    display: block;

    width: 35px;
    height: 2px;

    margin-top: 7px;

    background: var(--orange);
}


/* PARTE INFERIOR */

.tour-card-bottom {
    margin-top: auto;
}


.tour-category {
    display: block;

    margin-bottom: 8px;

    color: var(--yellow);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 2px;
}


.tour-card h4 {
    max-width: 330px;

    color: white;

    font-family: "Bebas Neue", sans-serif;

    font-size: 34px;

    line-height: .98;

    letter-spacing: .5px;
}


/* PRECIO */

.tour-price {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 15px;

    margin-top: 22px;
    padding-top: 18px;

    border-top:
        1px solid rgba(255, 255, 255, .22);
}


.tour-price > div {
    display: flex;
    flex-direction: column;
}


.tour-price small {
    color: rgba(255,255,255,.65);

    font-size: 8px;

    letter-spacing: 1px;
}


.tour-price strong {
    margin-top: 3px;

    color: white;

    font-size: 23px;
}


.tour-price span {
    color: rgba(255,255,255,.75);

    font-size: 9px;
}


/* BOTÓN REDONDO */

.tour-details-btn {
    flex-shrink: 0;

    width: 45px;
    height: 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    border:
        1px solid rgba(255,255,255,.7);

    background:
        rgba(255,255,255,.10);

    color: white;

    cursor: pointer;

    backdrop-filter: blur(7px);

    transition:
        background .25s ease,
        transform .25s ease;
}


.tour-details-btn:hover {
    background: var(--orange);

    transform: rotate(5deg);
}


.tour-details-btn svg {
    width: 18px;
    height: 18px;
}


/* TABLET */

@media (max-width: 900px) {

    .tours-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


/* CELULAR */

@media (max-width: 600px) {

    .tours-grid {
        grid-template-columns: 1fr;
    }


    .tour-card,
    .tour-card-content {
        min-height: 430px;
    }

}

/* =========================================================
   MODAL TOURS
========================================================= */

.tour-modal {
    position: fixed;

    inset: 0;

    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 25px;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity .3s ease,
        visibility .3s ease;
}


.tour-modal.active {
    opacity: 1;
    visibility: visible;
}


.tour-modal-backdrop {
    position: absolute;

    inset: 0;

    background:
        rgba(3, 28, 45, .78);

    backdrop-filter: blur(6px);
}


.tour-modal-box {
    position: relative;

    z-index: 2;

    width: min(950px, 100%);

    display: grid;

    grid-template-columns: .95fr 1.05fr;

    overflow: hidden;

    border-radius: 22px;

    background: white;

    box-shadow:
        0 30px 80px rgba(0, 0, 0, .30);

    transform:
        translateY(25px)
        scale(.98);

    transition:
        transform .35s ease;
}


.tour-modal.active
.tour-modal-box {
    transform:
        translateY(0)
        scale(1);
}


/* FOTO */

.tour-modal-image {
    height: 600px;

    overflow: hidden;
}


.tour-modal-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* CERRAR */

.tour-modal-close {
    position: absolute;

    top: 18px;
    right: 18px;

    z-index: 5;

    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: white;

    color: var(--navy);

    cursor: pointer;

    box-shadow:
        0 5px 18px rgba(0,0,0,.15);
}


/* CONTENIDO */

.tour-modal-content {
    padding: 50px 42px 40px;

    overflow-y: auto;

    max-height: 600px;
}


.tour-modal-label {
    color: var(--orange);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 3px;
}


.tour-modal-content h3 {
    margin-top: 8px;

    color: var(--navy);

    font-family:
        "Bebas Neue",
        sans-serif;

    font-size: 45px;

    line-height: .95;
}


/* RECORRIDO */

.tour-modal-route {
    display: flex;
    flex-direction: column;

    gap: 10px;

    margin-top: 28px;
}


.tour-stop {
    display: flex;

    align-items: flex-start;

    gap: 10px;

    color: #536168;

    font-size: 12px;

    line-height: 1.5;
}


.tour-stop svg {
    flex-shrink: 0;

    width: 16px;
    height: 16px;

    margin-top: 2px;

    color: var(--green);
}


/* PRECIO */

.tour-modal-price {
    margin-top: 28px;

    padding: 20px;

    border-radius: 12px;

    background: var(--ivory);
}


.tour-modal-price div {
    display: flex;
    flex-direction: column;
}


.tour-modal-price span {
    color: var(--text-muted);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 1px;
}


.tour-modal-price strong {
    color: var(--orange);

    font-size: 28px;
}


.tour-modal-price small {
    color: var(--text-muted);

    font-size: 10px;
}


/* WHATSAPP */

.tour-modal-whatsapp {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    margin-top: 25px;

    padding: 14px 20px;

    border-radius: 50px;

    background: var(--green);

    color: white;

    font-size: 12px;
    font-weight: 600;
}


/* MOBILE */

@media (max-width: 700px) {

    .tour-modal-box {
        grid-template-columns: 1fr;

        max-height: 90vh;

        overflow-y: auto;
    }


    .tour-modal-image {
        height: 260px;
    }


    .tour-modal-content {
        padding: 30px 22px;

        max-height: none;

        overflow: visible;
    }

}

/* =========================================================
   ARMA TU VIAJE
========================================================= */

.trip-builder-section {
    padding: 110px 0;

    background:
        linear-gradient(
            135deg,
            #052f49,
            #084e70
        );
}


/* HEADER */

.trip-builder-heading {
    max-width: 760px;

    margin: 0 auto 55px;

    text-align: center;
}


.trip-builder-eyebrow {
    display: inline-block;

    margin-bottom: 12px;

    color: var(--orange);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 4px;
}


.trip-builder-heading h2 {
    display: flex;
    flex-direction: column;

    color: white;

    font-family: "Bebas Neue", sans-serif;

    font-size: clamp(60px, 6vw, 90px);

    line-height: .85;
}


.trip-builder-heading h2 span {
    margin-top: 10px;

    color: #69a943;

    font-size: .65em;
}


.trip-builder-heading p {
    max-width: 570px;

    margin: 22px auto 0;

    color: rgba(255,255,255,.75);

    font-size: 14px;

    line-height: 1.7;
}


/* FORM */

.trip-builder {
    max-width: 1050px;

    margin: 0 auto;

    overflow: hidden;

    border-radius: 26px;

    background: white;

    box-shadow:
        0 30px 80px rgba(0,0,0,.22);
}


/* STEP */

.trip-step {
    display: grid;

    grid-template-columns: 90px 1fr;

    border-bottom:
        1px solid rgba(7,54,83,.09);
}


.trip-last-step {
    border-bottom: none;
}


.trip-step-number {
    display: flex;

    align-items: flex-start;
    justify-content: center;

    padding-top: 38px;

    background: var(--ivory);

    color: var(--orange);

    font-family: "Bebas Neue", sans-serif;

    font-size: 32px;
}


.trip-step-content {
    padding: 35px 40px 40px;
}


.trip-step-label {
    display: block;

    margin-bottom: 25px;

    color: var(--navy);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2px;
}


/* SERVICE SELECTORS */

.trip-service-options {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 14px;
}


.trip-service-option input {
    position: absolute;

    opacity: 0;
    pointer-events: none;
}


.trip-service-box {
    min-height: 150px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 22px;

    border:
        1px solid rgba(7,54,83,.12);

    border-radius: 16px;

    cursor: pointer;

    transition:
        border-color .25s ease,
        background .25s ease,
        transform .25s ease,
        box-shadow .25s ease;
}


.trip-service-box svg {
    width: 30px;
    height: 30px;

    margin-bottom: 15px;

    color: var(--blue);

    stroke-width: 1.5;
}


.trip-service-box strong {
    color: var(--navy);

    font-size: 14px;
}


.trip-service-box small {
    margin-top: 5px;

    color: var(--text-muted);

    font-size: 10px;
}


.trip-service-option:hover
.trip-service-box {
    transform: translateY(-3px);

    border-color:
        rgba(0,119,182,.45);
}


.trip-service-option input:checked
+ .trip-service-box {
    border-color: var(--blue);

    background:
        rgba(0,119,182,.06);

    box-shadow:
        0 8px 24px rgba(0,119,182,.10);
}


/* DYNAMIC BLOCKS */

.trip-dynamic-block {
    display: none;

    padding: 22px;

    margin-top: 15px;

    border-radius: 15px;

    background: var(--ivory);
}


.trip-dynamic-block.active {
    display: block;

    animation: tripBlockIn .3s ease both;
}


@keyframes tripBlockIn {

    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


.trip-field-heading {
    display: flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 18px;

    color: var(--navy);

    font-size: 12px;
    font-weight: 700;
}


.trip-field-heading svg {
    width: 18px;
    height: 18px;

    color: var(--orange);
}


/* FIELDS */

.trip-fields {
    display: grid;

    gap: 15px;
}


.trip-fields-two {
    grid-template-columns:
        repeat(2, 1fr);
}


.trip-fields-three {
    grid-template-columns:
        repeat(3, 1fr);
}


.trip-field {
    display: flex;

    flex-direction: column;

    gap: 7px;
}


.trip-field label {
    color: #536168;

    font-size: 10px;
    font-weight: 600;
}


.trip-field input,
.trip-field select {
    width: 100%;

    padding: 13px 14px;

    border:
        1px solid rgba(7,54,83,.15);

    border-radius: 9px;

    outline: none;

    background: white;

    color: var(--navy);

    font-size: 12px;

    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}


.trip-field input:focus,
.trip-field select:focus {
    border-color: var(--blue);

    box-shadow:
        0 0 0 3px rgba(0,119,182,.08);
}


.trip-field select:disabled {
    opacity: .55;

    cursor: not-allowed;
}


/* SUBMIT */

.trip-submit {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    margin-top: 27px;

    padding: 14px 25px;

    border-radius: 50px;

    background: var(--orange);

    color: white;

    font-size: 12px;
    font-weight: 600;

    cursor: pointer;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}


.trip-submit:hover {
    transform: translateY(-2px);

    box-shadow:
        0 10px 25px rgba(240,90,40,.25);
}


.trip-submit svg {
    width: 16px;
    height: 16px;
}


/* MOBILE */

@media (max-width: 750px) {

    .trip-builder-section {
        padding: 75px 0;
    }


    .trip-step {
        grid-template-columns: 1fr;
    }


    .trip-step-number {
        justify-content: flex-start;

        padding:
            22px 22px 0;

        background: white;
    }


    .trip-step-content {
        padding:
            15px 22px 30px;
    }


    .trip-service-options,
    .trip-fields-two,
    .trip-fields-three {
        grid-template-columns: 1fr;
    }


    .trip-service-box {
        min-height: auto;
    }

}

/* =========================================================
   ARMA TU VIAJE — AVENTURA RENTAVO
========================================================= */

.trip-adventure-section {
    position: relative;
    padding: 110px 0;
    overflow: hidden;

    background:
        linear-gradient(
            rgba(4, 31, 48, .88),
            rgba(4, 31, 48, .94)
        ),
        url("../img/hero-rentavo.jpg")
        center / cover
        no-repeat;
}

.trip-adventure-section::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(105, 169, 67, .13),
            transparent 30%
        ),
        radial-gradient(
            circle at 85% 80%,
            rgba(240, 90, 40, .13),
            transparent 32%
        );

    pointer-events: none;
}

.trip-adventure-shell {
    position: relative;
    z-index: 2;

    max-width: 1180px;
    margin: 0 auto;
}


/* =========================================================
   PROGRESO
========================================================= */

.trip-progress {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: 8px;

    margin-bottom: 35px;
}

.trip-progress-step {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,.45);
    border-radius: 50%;

    color: rgba(255,255,255,.75);

    font-family: "Bebas Neue", sans-serif;
    font-size: 18px;

    transition:
        background .25s ease,
        border-color .25s ease,
        color .25s ease,
        transform .25s ease;
}

.trip-progress-step.active {
    background: var(--orange);
    border-color: var(--orange);
    color: white;

    transform: scale(1.08);
}

.trip-progress-line {
    width: 32px;
    height: 1px;

    background: rgba(255,255,255,.28);
}


/* =========================================================
   PANELES
========================================================= */

.trip-panel {
    display: none;
}

.trip-panel.active {
    display: block;

    animation: tripPanelIn .45s ease both;
}

@keyframes tripPanelIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================================================
   PASO 01
========================================================= */

.trip-panel-heading {
    max-width: 780px;
    margin: 0 auto 38px;

    text-align: center;
}

.trip-panel-eyebrow {
    display: inline-block;

    margin-bottom: 10px;

    color: #7daf44;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 4px;
}

.trip-panel-heading h2 {
    color: white;

    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(72px, 8vw, 122px);

    line-height: .82;
    letter-spacing: 1px;
}

.trip-panel-script {
    display: block;

    margin-top: 10px;

    color: #7daf44;

    font-size: 25px;
    font-weight: 600;

    font-style: italic;
}

.trip-panel-heading p {
    max-width: 530px;
    margin: 20px auto 0;

    color: rgba(255,255,255,.82);

    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   TARJETAS PASO 01
========================================================= */

.trip-adventure-options {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 18px;
}

.trip-adventure-option {
    position: relative;
}

.trip-adventure-option input {
    position: absolute;

    opacity: 0;
    pointer-events: none;
}

.trip-adventure-card {
    position: relative;

    min-height: 390px;

    display: block;

    overflow: hidden;

    border: 1px solid rgba(255,255,255,.42);
    border-radius: 18px;

    cursor: pointer;

    background: #082f46;

    transition:
        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}

.trip-adventure-card img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .6s ease;
}

.trip-adventure-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,.08) 10%,
            rgba(2,24,38,.30) 45%,
            rgba(2,24,38,.92) 100%
        );
}

.trip-adventure-card-content {
    position: absolute;

    left: 24px;
    right: 24px;
    bottom: 24px;

    z-index: 3;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;
}

.trip-adventure-icon {
    width: 54px;
    height: 54px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 14px;

    border: 1px solid rgba(255,255,255,.75);
    border-radius: 50%;

    color: white;

    background: rgba(0,0,0,.20);

    backdrop-filter: blur(8px);
}

.trip-adventure-icon svg {
    width: 25px;
    height: 25px;

    stroke-width: 1.5;
}

.trip-adventure-card strong {
    color: white;

    font-family: "Bebas Neue", sans-serif;
    font-size: 34px;
    line-height: 1;
}

.trip-adventure-card small {
    max-width: 210px;

    margin-top: 7px;

    color: rgba(255,255,255,.80);

    font-size: 10px;
    line-height: 1.5;
}

.trip-adventure-check {
    position: absolute;

    top: 16px;
    right: 16px;

    z-index: 4;

    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,.65);
    border-radius: 50%;

    background: rgba(0,0,0,.30);

    color: white;
}

.trip-adventure-check svg {
    width: 17px;
    height: 17px;

    opacity: 0;

    transition: opacity .25s ease;
}

.trip-adventure-option:hover
.trip-adventure-card {
    transform: translateY(-6px);

    border-color: rgba(255,255,255,.80);

    box-shadow:
        0 20px 45px rgba(0,0,0,.28);
}

.trip-adventure-option:hover
.trip-adventure-card img {
    transform: scale(1.05);
}


/* SELECCIONADO */

.trip-adventure-option input:checked
+ .trip-adventure-card {
    border: 2px solid var(--orange);

    box-shadow:
        0 0 0 1px rgba(240,90,40,.25),
        0 18px 40px rgba(0,0,0,.28);
}

.trip-adventure-option input:checked
+ .trip-adventure-card
.trip-adventure-check {
    background: var(--orange);
    border-color: var(--orange);
}

.trip-adventure-option input:checked
+ .trip-adventure-card
.trip-adventure-check svg {
    opacity: 1;
}


/* =========================================================
   CABECERA PASOS 02 / 03 / 04
========================================================= */

.trip-panel-top {
    margin-bottom: 30px;
}

.trip-step-tag {
    display: inline-block;

    margin-bottom: 10px;
    padding: 7px 12px;

    border-radius: 4px;

    background: #6d922a;

    color: white;

    font-family: "Bebas Neue", sans-serif;
    font-size: 16px;

    letter-spacing: 1px;
}

.trip-panel-top h3 {
    color: white;

    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(42px, 5vw, 68px);

    line-height: .95;
}

.trip-panel-top p {
    margin-top: 8px;

    color: rgba(255,255,255,.72);

    font-size: 13px;
}


/* =========================================================
   PERSONALIZACIÓN
========================================================= */

.trip-customization-list {
    display: flex;
    flex-direction: column;

    gap: 14px;
}

.trip-customization-card {
    display: none;

    grid-template-columns: 150px minmax(0,1fr) 190px;

    align-items: stretch;

    overflow: hidden;

    border-radius: 16px;

    background: rgba(255,255,255,.96);

    box-shadow:
        0 10px 28px rgba(0,0,0,.16);
}

.trip-customization-card.active {
    display: grid;

    animation: tripPanelIn .35s ease both;
}

.trip-customization-type {
    min-height: 145px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 10px;

    color: white;

    text-align: center;
}

.trip-customization-type svg {
    width: 32px;
    height: 32px;

    stroke-width: 1.5;
}

.trip-customization-type strong {
    font-family: "Bebas Neue", sans-serif;
    font-size: 24px;
}

.trip-type-stay {
    background: #0b668f;
}

.trip-type-car {
    background: #5f812b;
}

.trip-type-tour {
    background: #d86308;
}

.trip-customization-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));

    align-content: center;

    gap: 16px;

    padding: 22px;
}

.trip-customization-preview {
    padding: 10px;
}

.trip-customization-preview img {
    width: 100%;
    height: 125px;

    object-fit: cover;

    border-radius: 10px;
}


/* =========================================================
   CAMPOS
========================================================= */

.trip-field {
    display: flex;
    flex-direction: column;

    gap: 7px;
}

.trip-field label {
    color: #2c3d47;

    font-size: 10px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: .8px;
}

.trip-field input,
.trip-field select {
    width: 100%;

    padding: 13px 14px;

    border: 1px solid rgba(7,54,83,.20);
    border-radius: 8px;

    outline: none;

    background: white;

    color: var(--navy);

    font-size: 12px;
}

.trip-field input:focus,
.trip-field select:focus {
    border-color: var(--orange);

    box-shadow:
        0 0 0 3px rgba(240,90,40,.08);
}

.trip-mini-details {
    display: flex;
    flex-wrap: wrap;

    align-items: center;

    gap: 8px;
}

.trip-mini-details span {
    padding: 7px 10px;

    border-radius: 50px;

    background: #f4f0e8;

    color: #47545a;

    font-size: 10px;
}


/* =========================================================
   FECHAS
========================================================= */

.trip-date-card {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    overflow: hidden;

    border-radius: 18px;

    background: rgba(255,255,255,.95);

    box-shadow:
        0 16px 40px rgba(0,0,0,.20);
}

.trip-date-field {
    display: flex;
    align-items: center;

    gap: 14px;

    padding: 25px;

    border-right: 1px solid rgba(7,54,83,.10);
}

.trip-date-field:last-child {
    border-right: 0;
}

.trip-date-icon {
    flex-shrink: 0;

    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #6f9530;

    color: white;
}

.trip-date-icon svg {
    width: 20px;
    height: 20px;
}

.trip-tip {
    max-width: 560px;

    display: flex;
    align-items: center;

    gap: 16px;

    margin: 28px auto 0;
    padding: 18px 20px;

    border: 1px solid rgba(255,255,255,.18);
    border-radius: 14px;

    background: rgba(3,27,42,.78);

    color: white;

    backdrop-filter: blur(8px);
}

.trip-tip-icon {
    flex-shrink: 0;

    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #7daf44;
    border-radius: 50%;

    color: #7daf44;
}

.trip-tip-icon svg {
    width: 22px;
    height: 22px;
}

.trip-tip strong {
    color: #96bd4d;

    font-size: 11px;
}

.trip-tip p {
    margin-top: 4px;

    color: rgba(255,255,255,.72);

    font-size: 10px;
    line-height: 1.5;
}


/* =========================================================
   RESUMEN
========================================================= */

.trip-summary-layout {
    display: grid;
    grid-template-columns: 1.25fr .75fr;

    gap: 18px;
}

.trip-summary-services {
    overflow: hidden;

    border-radius: 16px;

    background: rgba(255,255,255,.96);
}

.trip-summary-service {
    display: none;

    grid-template-columns: 70px 1fr 150px;

    align-items: center;

    min-height: 110px;

    border-bottom: 1px solid rgba(7,54,83,.10);
}

.trip-summary-service.active {
    display: grid;
}

.trip-summary-service:last-child {
    border-bottom: 0;
}

.trip-summary-icon {
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: white;
}

.trip-summary-icon svg {
    width: 27px;
    height: 27px;
}

.trip-summary-service > div:nth-child(2) {
    padding: 18px;
}

.trip-summary-service span {
    display: block;

    color: var(--navy);

    font-size: 9px;
    font-weight: 700;
}

.trip-summary-service strong {
    display: block;

    margin-top: 3px;

    color: #1d303a;

    font-size: 14px;
}

.trip-summary-service small {
    display: block;

    margin-top: 3px;

    color: var(--text-muted);

    font-size: 9px;
}

.trip-summary-service img {
    width: 135px;
    height: 82px;

    object-fit: cover;

    border-radius: 9px;
}

.trip-summary-details {
    padding: 24px;

    border: 1px solid rgba(255,255,255,.15);
    border-radius: 16px;

    background: rgba(3,27,42,.78);

    color: white;

    backdrop-filter: blur(8px);
}

.trip-summary-details-title {
    display: block;

    margin-bottom: 18px;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1px;
}

.trip-summary-details > div {
    display: flex;
    align-items: center;

    gap: 12px;

    padding: 14px 0;

    border-bottom: 1px solid rgba(255,255,255,.10);
}

.trip-summary-details > div:last-child {
    border-bottom: none;
}

.trip-summary-details svg {
    width: 18px;
    height: 18px;

    color: #7daf44;
}

.trip-summary-details small {
    display: block;

    color: rgba(255,255,255,.55);

    font-size: 9px;
}

.trip-summary-details strong {
    display: block;

    margin-top: 2px;

    font-size: 12px;
}


/* CONTACTO */

.trip-contact-fields {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 14px;

    margin-top: 18px;
}

.trip-contact-fields .trip-field {
    padding: 16px;

    border-radius: 12px;

    background: rgba(255,255,255,.94);
}


/* =========================================================
   BOTONES
========================================================= */

.trip-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 14px;

    margin-top: 28px;
}

.trip-actions-center {
    justify-content: center;
}

.trip-next-btn,
.trip-whatsapp-btn {
    min-width: 250px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    padding: 15px 28px;

    border: 0;

    cursor: pointer;

    color: white;

    text-transform: uppercase;

    font-family: "Bebas Neue", sans-serif;
    font-size: 22px;

    letter-spacing: 1px;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.trip-next-btn {
    border-radius: 5px;

    background: var(--orange);

    box-shadow:
        0 10px 25px rgba(240,90,40,.22);
}

.trip-whatsapp-btn {
    border-radius: 5px;

    background: #6f962f;

    box-shadow:
        0 10px 25px rgba(111,150,47,.25);
}

.trip-whatsapp-btn span {
    display: flex;
    flex-direction: column;

    line-height: .9;
}

.trip-whatsapp-btn small {
    margin-top: 5px;

    font-family: "Poppins", sans-serif;
    font-size: 8px;

    letter-spacing: 1px;
}

.trip-next-btn:hover,
.trip-whatsapp-btn:hover {
    transform: translateY(-3px);
}

.trip-next-btn svg,
.trip-whatsapp-btn svg {
    width: 20px;
    height: 20px;
}

.trip-back-btn {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    padding: 12px 18px;

    border: 1px solid rgba(255,255,255,.35);
    border-radius: 6px;

    background: transparent;

    color: white;

    cursor: pointer;

    font-size: 11px;
    font-weight: 600;
}

.trip-back-btn svg {
    width: 16px;
    height: 16px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 900px) {

    .trip-adventure-options {
        grid-template-columns: repeat(2, 1fr);
    }

    .trip-adventure-option:last-child {
        grid-column: 1 / -1;
    }

    .trip-customization-card {
        grid-template-columns: 120px 1fr;
    }

    .trip-customization-preview {
        display: none;
    }

    .trip-summary-layout {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 700px) {

    .trip-adventure-section {
        padding: 75px 0;
    }

    .trip-progress {
        justify-content: center;
    }

    .trip-progress-step {
        width: 32px;
        height: 32px;
    }

    .trip-progress-line {
        width: 20px;
    }

    .trip-adventure-options {
        grid-template-columns: 1fr;
    }

    .trip-adventure-option:last-child {
        grid-column: auto;
    }

    .trip-adventure-card {
        min-height: 300px;
    }

    .trip-customization-card {
        grid-template-columns: 1fr;
    }

    .trip-customization-type {
        min-height: 90px;
    }

    .trip-customization-fields {
        grid-template-columns: 1fr;
    }

    .trip-date-card {
        grid-template-columns: 1fr;
    }

    .trip-date-field {
        border-right: 0;
        border-bottom: 1px solid rgba(7,54,83,.10);
    }

    .trip-date-field:last-child {
        border-bottom: 0;
    }

    .trip-summary-service {
        grid-template-columns: 58px 1fr;
    }

    .trip-summary-service img {
        display: none;
    }

    .trip-contact-fields {
        grid-template-columns: 1fr;
    }

    .trip-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .trip-next-btn,
    .trip-whatsapp-btn,
    .trip-back-btn {
        width: 100%;
    }

}

/* =========================================================
   FOOTER RENTAVO
========================================================= */

.footer {
    padding: 75px 0 25px;

    background: #052f49;

    color: white;
}


.footer-grid {
    display: grid;

    grid-template-columns: 1.5fr 1fr 1fr 1fr;

    gap: 50px;

    padding-bottom: 55px;
}


/* MARCA */

.footer-logo img {
    width: 190px;
}

.footer-brand p {
    max-width: 330px;

    margin-top: 18px;

    color: rgba(255,255,255,.68);

    font-size: 16px;
    line-height: 1.7;
}


.footer-whatsapp {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-top: 22px;

    padding: 10px 16px;

    border: 1px solid rgba(255,255,255,.25);
    border-radius: 50px;

    color: white;

    font-size: 14px;
    font-weight: 600;

    transition:
        background .25s ease,
        transform .25s ease;
}

.footer-whatsapp:hover {
    background: var(--green);

    transform: translateY(-2px);
}

.footer-whatsapp svg {
    width: 17px;
    height: 17px;
}


/* COLUMNAS */

.footer-column {
    display: flex;
    flex-direction: column;

    gap: 12px;
}

.footer-title {
    margin-bottom: 5px;

    color: var(--orange);

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 2px;
}

.footer-column a {
    width: fit-content;

    color: rgba(255,255,255,.72);

    font-size: 14px;

    transition: color .2s ease;
}

.footer-column a:hover {
    color: white;
}


/* CONTACTO */

.footer-contact-item {
    display: flex;

    align-items: center;

    gap: 9px;

    color: rgba(255,255,255,.72);

    font-size: 14px;
}

.footer-contact-item svg {
    width: 15px;
    height: 15px;

    color: #7daf44;
}


/* FRANJA FINAL */

.footer-bottom {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding-top: 22px;

    border-top:
        1px solid rgba(255,255,255,.10);

    color: rgba(255,255,255,.48);

    font-size: 9px;

    letter-spacing: .5px;
}


/* RESPONSIVE */

@media (max-width: 850px) {

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 550px) {

    .footer {
        padding-top: 55px;
    }

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .footer-bottom {
        flex-direction: column;

        align-items: flex-start;
    }

}

/* =========================================================
   WHATSAPP FLOTANTE
========================================================= */

.floating-whatsapp {
    position: fixed;

    right: 24px;
    bottom: 24px;

    z-index: 999;

    display: flex;
    align-items: center;

    gap: 10px;

    color: white;

    transition:
        transform .25s ease;
}


.floating-whatsapp-text {
    padding: 10px 14px;

    border-radius: 50px;

    background: var(--navy);

    font-size: 10px;
    font-weight: 600;

    letter-spacing: .3px;

    box-shadow:
        0 8px 25px rgba(0,0,0,.18);

    opacity: 0;
    transform: translateX(10px);

    transition:
        opacity .25s ease,
        transform .25s ease;
}


.floating-whatsapp-icon {
    width: 56px;
    height: 56px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    background: #25D366;

    box-shadow:
        0 10px 28px rgba(0,0,0,.22);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}


.floating-whatsapp-icon svg {
    width: 25px;
    height: 25px;

    stroke-width: 1.8;
}


.floating-whatsapp:hover {
    transform: translateY(-3px);
}


.floating-whatsapp:hover
.floating-whatsapp-icon {
    box-shadow:
        0 14px 32px rgba(0,0,0,.28);
}


.floating-whatsapp:hover
.floating-whatsapp-text {
    opacity: 1;
    transform: translateX(0);
}


/* CELULAR */

@media (max-width: 600px) {

    .floating-whatsapp {
        right: 16px;
        bottom: 16px;
    }


    .floating-whatsapp-icon {
        width: 52px;
        height: 52px;
    }


    .floating-whatsapp-text {
        display: none;
    }

}

/* =========================================================
   TARJETAS DE SERVICIO — MOBILE
========================================================= */

@media (max-width: 600px) {

    .services-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }


    .service-expandable {
        width: 100%;
        min-height: 0;
    }


    .service-expandable-header {
        position: relative;

        width: 100%;
        height: 190px;
        min-height: 190px;

        overflow: hidden;

        border-radius: 16px;
    }


    /* IMAGEN */

    .service-expandable-header img {
        position: absolute;
        inset: 0;

        width: 100%;
        height: 100%;

        object-fit: cover;
        object-position: center;

        transform: none;
    }


    /* OSCURECIDO PARA LEER EL TEXTO */

    .service-expandable-header::after {
        content: "";

        position: absolute;
        inset: 0;

        background:
            linear-gradient(
                90deg,
                rgba(3, 27, 42, .82) 0%,
                rgba(3, 27, 42, .55) 48%,
                rgba(3, 27, 42, .12) 100%
            );

        z-index: 1;
    }


    /* CONTENIDO */

    .service-expandable-content {
        position: absolute;

        left: 20px;
        right: 110px;
        bottom: 22px;

        z-index: 3;

        padding: 0;

        text-align: left;
    }


    .service-expandable-content h3 {
        margin: 0;

        font-size: 32px;
        line-height: .95;
    }


    .service-expandable-content p {
        margin-top: 7px;

        font-size: 10px;
        line-height: 1.45;
    }


    /* DESCUBRE */

    .service-chevron {
        right: 16px;
        bottom: 17px;

        z-index: 4;

        padding: 8px 11px;

        gap: 5px;
    }


    .service-chevron-text {
        font-size: 8px;
        letter-spacing: .8px;
    }


    .service-chevron svg {
        width: 13px;
        height: 13px;
    }

}

/* =========================================================
   SERVICIOS RENTAVO — MOBILE DEFINITIVO
========================================================= */

@media (max-width: 600px) {

    /* -----------------------------------------
       CONTENEDOR GENERAL
    ----------------------------------------- */

    .services-accordion {
        display: block;

        width: 100%;
    }


    /*
       En escritorio usamos display: contents
       para tener las 3 tarjetas en una fila.

       En móvil cada servicio vuelve a ser
       un bloque independiente.
    */

    .service-expandable {
        display: block;

        width: 100%;

        margin-bottom: 18px;
    }


    /* -----------------------------------------
       TARJETA PRINCIPAL
    ----------------------------------------- */

    .service-expandable-header {
        position: relative;

        display: block;

        width: 90%;
        height: 230px;

        margin: 0 auto;

        grid-column: auto !important;
        grid-row: auto !important;

        overflow: hidden;

        border-radius: 20px;

        text-align: left;
    }


    /* -----------------------------------------
       IMAGEN
    ----------------------------------------- */

    .service-expandable-image {
        position: absolute;
        inset: 0;

        width: 100%;
        height: 100%;
    }


    .service-expandable-image img {
        width: 100%;
        height: 100%;

        object-fit: cover;
        object-position: center;

        transform: none;
    }


    /* DEGRADADO */

    .service-expandable-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(3, 28, 45, .88) 0%,
                rgba(3, 28, 45, .63) 52%,
                rgba(3, 28, 45, .18) 100%
            );
    }


    /* -----------------------------------------
       CONTENIDO
    ----------------------------------------- */

    .service-expandable-content {
        position: relative;

        z-index: 2;

        width: 100%;
        height: 100%;

        display: flex;
        flex-direction: column;
        justify-content: flex-end;

        padding: 22px 22px 24px;

        color: white;
    }


    /* NÚMERO + ICONO */

    .service-top {
        position: absolute;

        top: 20px;
        left: 22px;

        display: flex;
        align-items: center;

        gap: 12px;
    }


    .service-big-number {
        font-size: 34px;
    }


    .service-top svg {
        width: 30px;
        height: 30px;
    }


    /* NOMBRE */

    .service-expandable-content h3 {
        width: calc(100% - 110px);

        margin: 0 0 7px;

        font-size: 36px;
        line-height: .95;

        white-space: normal;
    }


    /* DESCRIPCIÓN */

    .service-expandable-content p {
        width: calc(100% - 115px);
        max-width: none;

        margin: 0;

        font-size: 11px;
        line-height: 1.5;
    }


    /* -----------------------------------------
       BOTÓN DESCUBRE
    ----------------------------------------- */

    .service-chevron {
        position: absolute;

        right: 18px;
        bottom: 22px;

        z-index: 5;

        display: inline-flex;
        align-items: center;
        justify-content: center;

        gap: 6px;

        padding: 9px 12px;

        border: 1px solid rgba(255,255,255,.70);
        border-radius: 50px;

        background: rgba(3, 28, 45, .55);

        color: white;

        backdrop-filter: blur(7px);
    }


    .service-chevron-text {
        font-size: 8px;

        letter-spacing: 1px;
    }


    .service-chevron svg {
        width: 13px;
        height: 13px;
    }


    /* -----------------------------------------
       GALERÍA DESPLEGABLE
    ----------------------------------------- */

    .service-gallery {
        width: 100%;

        grid-column: auto !important;
        grid-row: auto !important;
    }


    .service-gallery-inner {
        width: 100%;

        margin-top: 14px;

        padding: 18px;

        border-radius: 18px;
    }


    /*
       Esto hace que cuando abras Hospedajes,
       Vehículos o Tours, su galería aparezca
       justo debajo de SU tarjeta.
    */

    .service-expandable.active .service-gallery {
        max-height: 20000px;

        opacity: 1;

        pointer-events: auto;
    }

}