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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #fff;
    color: #161616;
}

a {
    text-decoration: none;
}

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

/* =========================
CONTAINER
========================= */
.container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
}

/* =========================
BUTTONS
========================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    transition: 0.3s ease;
    cursor: pointer;
}

.btn.primary {
    background: #58B368;
    color: white;
}

.btn.primary:hover {
    background: #4AA35A;
}

/* =========================
HEADER
========================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 18px 0;
    background: rgba(0,0,0,0.25);
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 55px;
    display: block;
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav a {
    color: white;
    font-size: 15px;
    font-weight: 600;
}

.whatsapp {
    padding: 12px 20px;
    border-radius: 10px;
    background: #58B368;
    color: white;
}

/* =========================
HERO PAQUETES
========================= */
.paquetes-hero {
    position: relative;
    min-height: 100vh;
    background: url('../img/paquetes/hero.jpg')
    center center / cover no-repeat;
    display: flex;
    align-items: flex-end;
    color: white;
    overflow: hidden;
}

.paquetes-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      90deg,
      rgba(0,0,0,0.65) 0%,
      rgba(0,0,0,0.35) 50%,
      rgba(0,0,0,0.15) 100%
    ),
    linear-gradient(
      0deg,
      rgba(0,0,0,0.65) 0%,
      rgba(0,0,0,0.15) 100%
    );
}

.paquetes-hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    padding-bottom: 90px;
}

.hero-tag {
    display: inline-block;
    margin-bottom: 18px;
    color: #FFAB00;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.paquetes-hero h1 {
    font-size: clamp(3.3rem, 5vw, 4.5rem);
    line-height: 1.02;
    margin-bottom: 26px;
    font-weight: 800;
    letter-spacing: -2px;
}

.paquetes-hero p {
    max-width: 650px;
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 36px;
    color: rgba(255,255,255,0.92);
}

.hero-btn {
    padding: 18px 34px;
    border-radius: 12px;
    font-size: 17px;
}

/* =========================
MOBILE
========================= */
@media (max-width: 768px) {
    .paquetes-hero {
        min-height: 86vh;
        align-items: flex-end;
    }

    .paquetes-hero-content {
        padding-bottom: 55px;
    }

    .paquetes-hero h1 {
        font-size: 42px;
    }

    .paquetes-hero p {
        font-size: 17px;
    }

    .hero-btn {
        width: 100%;
    }
}

/* =========================
PRÓXIMAS SALIDAS
========================= */
.section {
    padding: 50px 0;
}

.salidas {
    background: #ffffff;
}

.section-tag {
    display: inline-block;
    color: #8A6B4A;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.salidas h2 {
    max-width: 850px;
    font-size: 52px;
    line-height: 1.08;
    color: #161616;
    margin-bottom: 20px;
}

.section-intro {
    max-width: 720px;
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 50px;
}

.section-intro2 {
    max-width: 720px;
    font-size: 11px;
    line-height: 1;
    color: #555;
    margin-top: 25px;
}

.salidas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.salida-card {
    display: flex;
    flex-direction: column;
    background: #f4f0ea;
    border-radius: 24px;
    padding: 32px;
    min-height: 430px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.08);
}

.salida-card.destacado {
    background: #161616;
    color: white;
}

.badge {
    display: inline-block;
    align-self: flex-start;
    margin-bottom: 18px;
    padding: 7px 13px;
    border-radius: 999px;
    background: #FFAB00;
    color: #161616;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.badge.ghost {
    opacity: 0;
}

.salida-card h3 {
    font-size: 26px;
    line-height: 1.15;
    color: #161616;
    margin-bottom: 14px;
}

.salida-card.destacado h3 {
    color: white;
}

.salida-card h3 span {
    display: block;
    margin-bottom: 8px;
    color: #8A6B4A;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.salida-card.destacado h3 span {
    color: #FFAB00;
}

.salida-card p {
    font-size: 15px;
    line-height: 1.65;
    color: #555;
    margin-bottom: 24px;
}

.salida-card.destacado p {
    color: rgba(255,255,255,0.78);
}

.salida-card ul {
    list-style: none;
    margin-bottom: 28px;
    flex-grow: 1;
}

.salida-card li {
    font-size: 14px;
    line-height: 1.55;
    margin-bottom: 10px;
    color: #444;
}

.salida-card.destacado li {
    color: rgba(255,255,255,0.86);
}

.salida-card li::before {
    content: "✓";
    color: #58B368;
    font-weight: 800;
    margin-right: 8px;
}

.salida-card .btn {
    width: 100%;
    padding: 14px 20px;
    border-radius: 12px;
}

/* TABLET */
@media (max-width: 1000px) {
    .salidas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* MOBILE */
@media (max-width: 650px) {
    .section {
        padding: 80px 0;
    }

    .salidas h2 {
        font-size: 36px;
    }

    .section-intro {
        font-size: 16px;
        margin-bottom: 38px;
    }

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

    .salida-card {
        min-height: auto;
    }
}

/* =========================
MODALIDADES
========================= */
.modalidades {
    background: #161616;
    color: white;
}

.modalidades h2 {
    max-width: 820px;
    font-size: 52px;
    line-height: 1.08;
    margin-bottom: 20px;
}

.modalidades .section-intro {
    color: rgba(255,255,255,0.75);
}

.modalidades-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.modalidad-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 28px;
    padding: 38px;
}

.modalidad-card.full {
    background: #f4f0ea;
    color: #161616;
}

.modalidad-card.light {
    background: #434a54;
    color: #161616;
}

.modalidad-badge {
    display: inline-block;
    margin-bottom: 20px;
    padding: 8px 14px;
    border-radius: 999px;
    background: #FFAB00;
    color: #161616;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.modalidad-card h3 {
    font-size: 34px;
    line-height: 1.1;
    margin-bottom: 18px;
}

.modalidad-card p {
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 26px;
    color: rgba(255,255,255,0.78);
}

.modalidad-card.full p {
    color: #555;
}

.modalidad-card ul {
    list-style: none;
}

.modalidad-card li {
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 12px;
    color: rgba(255,255,255,0.82);
}

.modalidad-card.full li {
    color: #444;
}

.modalidad-card li::before {
    content: "✓";
    color: #58B368;
    font-weight: 800;
    margin-right: 8px;
}

.modalidad-badge.ghost {
    opacity: 0;
}

/* MOBILE */
@media (max-width: 768px) {
    .modalidades h2 {
        font-size: 36px;
    }

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

    .modalidad-card {
        padding: 30px;
    }
}

/* =========================
INCLUYE
========================= */
.incluye-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
}

.incluye-content {
    display: grid;
    gap: 20px;
}

.include-card {
    background: #f4f0ea;
    padding: 30px;
    border-radius: 24px;
}

.include-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 18px;
    background: rgba(88,179,104,.10);
}

.include-icon img {
    width: 30px;
    height: 30px;
}

.include-card h3 {
    font-size: 22px;
    line-height: 1.2;
    margin-bottom: 12px;
    color: #161616;
}

.include-card p {
    color: #555;
    line-height: 1.7;
}

.incluye-image {
    height: 100%;
}

.incluye-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

/* MOBILE */
@media (max-width: 900px) {
    .incluye-layout {
        grid-template-columns: 1fr;
    }

    .incluye-image img {
        height: 420px;
    }
}

/* =========================
FAQ
========================= */
.faq {
    background: #ffffff;
}

.faq h2 {
    max-width: 760px;
    font-size: 52px;
    line-height: 1.08;
    color: #161616;
    margin-bottom: 18px;
}

.faq-list {
    max-width: 900px;
    margin-top: 50px;
}

.faq-list details {
    border-top: 1px solid rgba(0,0,0,0.12);
    padding: 24px 0;
}

.faq-list details:last-child {
    border-bottom: 1px solid rgba(0,0,0,0.12);
}

.faq-list summary {
    cursor: pointer;
    font-size: 20px;
    font-weight: 800;
    color: #161616;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    content: "+";
    float: right;
    font-size: 26px;
    color: #8A6B4A;
}

.faq-list details[open] summary::after {
    content: "–";
}

.faq-list p {
    margin-top: 16px;
    max-width: 760px;
    font-size: 16px;
    line-height: 1.75;
    color: #555;
}

/* MOBILE */
@media (max-width: 768px) {
    .faq h2 {
        font-size: 36px;
    }

    .faq-list summary {
        font-size: 18px;
    }
}

/* =========================
CTA FINAL
========================= */
.paquetes-final-cta {
    background: #161616;
    color: white;
    text-align: center;
    padding: 120px 0;
}

.paquetes-final-cta h2 {
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    line-height: 1.05;
    margin: 20px auto;
    max-width: 900px;
}

.paquetes-final-cta p {
    max-width: 760px;
    margin: 0 auto 40px;
    font-size: 20px;
    line-height: 1.8;
    color: rgba(255,255,255,0.8);
}

.paquetes-final-cta .btn {
    padding: 18px 36px;
    border-radius: 12px;
    font-size: 18px;
}

/* =========================
FOOTER
========================= */
.footer {
    background: #111;
    padding: 42px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.footer-logo {
    height: 38px;
    margin-bottom: 12px;
}

.footer p {
    color: rgba(255,255,255,0.55);
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255,255,255,0.72);
    font-size: 14px;
    font-weight: 600;
}

.footer-links a:hover {
    color: #FFAB00;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}

/* =========================
WHATSAPP FLOATING
========================= */
.floating-whatsapp {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: rgba(22,22,22,0.88);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    box-shadow: 0 18px 40px rgba(0,0,0,0.22);
    transition: transform 0.3s ease, background 0.3s ease;
}

.floating-whatsapp img {
    width: 30px;
    height: 30px;
    display: block;
}

.floating-whatsapp:hover {
    transform: translateY(-4px);
    background: #58B368;
}

@media (max-width: 768px) {
    .floating-whatsapp {
        width: 58px;
        height: 58px;
        right: 18px;
        bottom: 18px;
    }

    .floating-whatsapp img {
        width: 28px;
        height: 28px;
    }
}

/* =========================
HEADER SCROLL
========================= */
.header.scrolled {
    background: rgba(22,22,22,0.95);
    backdrop-filter: blur(14px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

/* =========================
NAV MOBILE
========================= */
.menu-toggle {
    display: none;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        background: none;
        border: none;
        color: white;
        font-size: 32px;
        cursor: pointer;
        z-index: 1001;
    }

    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        display: none;
        flex-direction: column;
        align-items: center;
        gap: 22px;
        padding: 28px 0;
        background: rgba(12,12,12,0.96);
        backdrop-filter: blur(14px);
        box-shadow: 0 18px 35px rgba(0,0,0,0.25);
    }

    .nav.active {
        display: flex;
    }
}

/* =========================
TESTIMONIOS PAQUETES
========================= */
.paquetes-testimonios {
    background: #f4f0ea;
}

.paquetes-testimonios h2 {
    max-width: 850px;
    font-size: 52px;
    line-height: 1.08;
    color: #161616;
    margin-bottom: 20px;
}

.paquetes-testimonios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 50px;
}

.paquete-testimonio-card {
    background: white;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 20px 55px rgba(0,0,0,0.08);
}

.paquete-testimonio-card .stars {
    color: #FFAB00;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.paquete-testimonio-card p {
    font-size: 16px;
    line-height: 1.75;
    color: #333;
    margin-bottom: 22px;
}

.paquete-testimonio-card h4 {
    font-size: 15px;
    color: #161616;
    font-weight: 800;
}

/* MOBILE */
@media (max-width: 768px) {
    .paquetes-testimonios h2 {
        font-size: 36px;
    }

    .paquetes-testimonios-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================
HEADER SCROLL PREMIUM
========================= */
.header {
    transition: padding 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease,
    backdrop-filter 0.2s ease;
}

.logo {
    transition: height 0.2s ease,
    filter 0.2s ease;
}

.header.scrolled {
    padding: 10px 0;
    background: rgba(12,12,12,0.88);
    backdrop-filter: blur(16px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.18);
}

.header.scrolled .logo {
    height: 46px;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.25));
}