/* ============================================================
   TOKENS — Tropical Editorial
   ============================================================ */
:root {
    --bg:         #FEF9F0;
    --surface:    #FFFFFF;
    --surface-2:  #F2EDE4;
    --fg:         #1A2E2E;
    --muted:      #6B7B7B;
    --border:     #D9CFC0;
    --teal:       #0D6B6E;
    --teal-light:  #E8F4F4;
    --coral:      #D95030;
    --coral-light: #FDF0EC;
    --coral-dark: #B33D20;
    --navy:       #1A2E2E;
    --amber:       #C8860A;

    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

    --space-xs:  0.5rem;
    --space-sm:  1rem;
    --space-md:  1.75rem;
    --space-lg:  3rem;
    --space-xl:  5rem;
    --space-2xl: 7.5rem;

    --radius-sm:  4px;
    --radius-md:  8px;
    --radius-lg:  16px;

    --transition: 0.2s ease;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.65;
    color: var(--fg);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

::selection {
    background: var(--teal);
    color: #fff;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.15;
    color: var(--navy);
}

h1 { font-size: clamp(2.2rem, 5.5vw, 2.7rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 4vw, 2.75rem); letter-spacing: -0.015em; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }

.label-caps {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.section { padding: var(--space-xl) 0; }
.section--white { background: var(--surface); }
.section--cream { background: var(--bg); }
.section--dark {
    background: var(--navy);
    color: #fff;
}
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: #fff; }
.section--dark .label-caps { color: rgba(255,255,255,0.55); }
.section--dark .muted { color: rgba(255,255,255,0.65); }

/* ============================================================
   HEADER
   ============================================================ */
.top-disclosure {
    background: var(--navy);
    padding: 0;
    overflow: hidden;
    animation: collapseDisclosure 0.5s ease-in-out 3s forwards;
}

@keyframes collapseDisclosure {
    from { max-height: 40px; }
    to { max-height: 0; }
}

.top-disclosure p {
    padding: 0.5rem 0;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.75);
}
.top-disclosure strong { color: #fff; }

.header {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    gap: var(--space-md);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    color: var(--navy);
}

.logo-sub {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--muted);
    letter-spacing: 0.03em;
}

.nav { display: flex; align-items: center; gap: var(--space-md); }
.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--muted);
    transition: color var(--transition);
    white-space: nowrap;
}
.nav-link:hover { color: var(--teal); }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.625rem 1.375rem;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
    text-decoration: none;
}

.btn-primary {
    background: var(--teal);
    color: #fff;
    border-color: var(--teal);
}
.btn-primary:hover {
    background: var(--coral);
    border-color: var(--coral);
}

.btn-outline {
    background: transparent;
    color: var(--teal);
    border-color: var(--teal);
}
.btn-outline:hover {
    background: var(--teal);
    color: #fff;
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
    border-color: #25D366;
}
.btn-whatsapp:hover {
    background: #1da851;
    border-color: #1da851;
}

.btn-coral {
    background: var(--coral);
    color: #fff;
    border-color: var(--coral);
}
.btn-coral:hover {
    background: var(--coral-dark);
    border-color: var(--coral-dark);
}

.btn-lg { padding: 0.875rem 2rem; font-size: 1rem; }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.825rem; }

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: all var(--transition);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    overflow: hidden;
    background: var(--bg);
    min-height: 500px;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 540px;
    padding: var(--space-xl) 0;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: var(--space-sm);
}

.eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--teal);
    flex-shrink: 0;
}

.hero h1 { margin-bottom: var(--space-sm); }
.hero h1 em {
    font-style: italic;
    color: var(--teal);
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--muted);
    max-width: 48ch;
    margin-bottom: var(--space-md);
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

@media (min-width: 901px) {
    .hero-actions {
        flex-wrap: nowrap;
        flex-direction: row;
    }
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    justify-content: center;
}

.hero-trust-wrap {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: var(--space-sm);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: var(--muted);
}

.trust-badge svg {
    width: 16px;
    height: 16px;
    color: var(--teal);
    flex-shrink: 0;
}

.hero-image-side {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 50%;
}

.hero-image-fade {
    width: 100%;
    height: 100%;
    background-image: url('../img/hero.webp');
    background-size: cover;
    background-position: center;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, transparent 30%, black 70%, black 100%);
    mask-image: linear-gradient(to right, transparent 0%, transparent 30%, black 70%, black 100%);
}

.hero-image-badge {
    position: absolute;
    bottom: var(--space-sm);
    left: var(--space-sm);
    background: var(--coral);
    color: #fff;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
}

/* ============================================================
   PROMO SECTION
   ============================================================ */
.promo-section {
    background: var(--navy);
    color: #fff;
    padding: var(--space-xl) 0;
    position: relative;
    overflow: hidden;
}

.promo-section::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(217,80,48,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.promo-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.promo-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: var(--space-sm);
}

.promo-tag {
    background: var(--coral);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.25rem 0.75rem;
    border-radius: 2px;
}

.promo-section h2 {
    color: #fff;
    margin-bottom: var(--space-xs);
}

.promo-section h2 em {
    font-style: italic;
    color: #F4A68E;
}

.promo-sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: var(--space-md);
}

.promo-price-block {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    margin-bottom: var(--space-md);
}

.promo-price-row {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.promo-price-from {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
}

.promo-price-original {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.4);
    text-decoration: line-through;
}

.promo-price-new {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: #F4A68E;
}

.promo-price-note {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.55);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.promo-price-note svg {
    width: 14px;
    height: 14px;
    color: var(--coral);
}

.promo-donation {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255,255,255,0.06);
    border-radius: var(--radius-sm);
    padding: 0.875rem 1rem;
    margin-bottom: var(--space-md);
    border-left: 3px solid var(--coral);
}

.donation-icon {
    width: 36px;
    height: 36px;
    background: rgba(217,80,48,0.2);
    border-radius: var(--radius-sm);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.donation-icon svg { width: 20px; height: 20px; color: #F4A68E; }

.donation-text { font-size: 0.875rem; color: rgba(255,255,255,0.8); line-height: 1.4; }
.donation-text strong { color: #fff; }

.promo-urgency {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    margin-top: var(--space-sm);
}

.urgency-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--coral);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.promo-card-wrapper {
    position: relative;
}

.promo-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: 0 24px 60px rgba(0,0,0,0.25);
}

.promo-card-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: var(--space-xs);
}

.promo-card-sub {
    font-size: 0.875rem;
    color: var(--muted);
    margin-bottom: var(--space-md);
}

.periods-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: var(--space-md);
}

.period-chip {
    background: var(--surface-2);
    border-radius: var(--radius-sm);
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.period-chip.promo {
    background: var(--coral-light);
    border: 1px solid rgba(217,80,48,0.2);
}

.period-chip-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--muted);
}

.period-chip.promo .period-chip-label { color: var(--coral); }

.period-chip-price {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
}

.period-chip.promo .period-chip-price { color: var(--coral); }

.period-chip-sub {
    font-size: 0.75rem;
    color: var(--muted);
}

.period-chip.promo .period-chip-sub { color: var(--coral); }

.promo-card-note {
    font-size: 0.775rem;
    color: var(--muted);
    padding: 0.75rem;
    background: var(--teal-light);
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-md);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    line-height: 1.5;
}

.promo-card-note svg {
    width: 16px;
    height: 16px;
    color: var(--teal);
    flex-shrink: 0;
    margin-top: 1px;
}

.promo-card-payment {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: var(--space-md);
}

.payment-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.775rem;
    font-weight: 600;
    color: var(--teal);
    background: var(--teal-light);
    padding: 0.4rem 0.75rem;
    border-radius: var(--radius-sm);
}

.payment-tag svg {
    flex-shrink: 0;
}

/* ============================================================
   PRICING SECTION
   ============================================================ */
.pricing-header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.pricing-header h2 { margin-bottom: var(--space-xs); }

.pricing-header p {
    font-size: 1rem;
    color: var(--muted);
    margin-bottom: var(--space-md);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.pricing-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    position: relative;
    transition: box-shadow var(--transition);
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    border-color: var(--teal);
    box-shadow: 0 0 0 1px var(--teal), 0 8px 32px rgba(13,107,110,0.12);
}

.pricing-card.featured::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--teal);
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.pricing-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.2rem 0.6rem;
    border-radius: 2px;
    background: var(--surface-2);
    color: var(--muted);
    margin-bottom: var(--space-sm);
}

.pricing-badge.hot {
    background: var(--coral-light);
    color: var(--coral);
}

.pricing-period {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: var(--space-sm);
}

.pricing-divider {
    height: 1px;
    background: var(--border);
    margin-bottom: var(--space-sm);
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0.4rem 0;
    border-bottom: 1px solid var(--border);
}

.pricing-row:last-child { border-bottom: none; }

.pricing-row-label {
    font-size: 0.875rem;
    color: var(--muted);
}

.pricing-row-value {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
    color: var(--navy);
}

.pricing-row-value.strike {
    text-decoration: line-through;
    color: var(--muted);
    font-weight: 400;
}

.pricing-row-value.accent { color: var(--coral); }

.pricing-special {
    background: var(--coral-light);
    border-radius: var(--radius-sm);
    padding: var(--space-sm);
    text-align: center;
    margin-bottom: var(--space-sm);
}

.pricing-special-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 0.25rem;
}

.pricing-special-price {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--coral);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.pricing-special-note {
    font-size: 0.75rem;
    color: var(--coral-dark);
}

.pricing-cta { margin-top: auto; padding-top: var(--space-sm); }
.pricing-cta .btn { width: 100%; }

/* ============================================================
   EXCURSION
   ============================================================ */
.excursion {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.excursion-icon {
    width: 52px;
    height: 52px;
    background: var(--navy);
    border-radius: var(--radius-sm);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.excursion-icon svg { width: 28px; height: 28px; color: #fff; }

.excursion-content { flex: 1; }
.excursion-content h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}
.excursion-content p {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.5;
}

.excursion-content strong { color: var(--navy); }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.about-content h2 { margin-bottom: var(--space-sm); }

.about-lead {
    font-size: 1.05rem;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: var(--space-md);
    max-width: 52ch;
}

.features-list {
    display: grid;
    gap: var(--space-sm);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: var(--space-sm);
    background: var(--surface-2);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--teal);
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: var(--teal-light);
    border-radius: var(--radius-sm);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.feature-icon svg { width: 22px; height: 22px; color: var(--teal); }

.feature-item h4 { font-size: 0.95rem; margin-bottom: 0.2rem; }
.feature-item p { font-size: 0.85rem; color: var(--muted); line-height: 1.5; }

.about-image-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(13,107,110,0.14);
}

.about-image-wrap img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.gallery-header h2 { margin-bottom: var(--space-xs); }
.gallery-header p { color: var(--muted); }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 220px);
    gap: var(--space-sm);
}

.gallery-item {
    border-radius: var(--radius-sm);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-item:first-child {
    grid-row: 1 / 3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img { transform: scale(1.04); }

/* ============================================================
   GALLERY MODAL
   ============================================================ */
.gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.9);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: var(--space-md);
}

.gallery-modal.open {
    display: flex;
}

.gallery-modal img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: var(--radius-md);
    object-fit: contain;
}

.gallery-modal-close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: rgba(255,255,255,0.15);
    border: none;
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: grid;
    place-items: center;
    font-size: 1.5rem;
    line-height: 1;
    transition: background var(--transition);
}

.gallery-modal-close:hover { background: rgba(255,255,255,0.25); }

.gallery-item-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.75rem 1rem;
    background: linear-gradient(transparent, rgba(26,46,46,0.7));
    color: #fff;
    font-size: 0.8rem;
    font-weight: 500;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.faq-header h2 { margin-bottom: var(--space-xs); }
.faq-header p { color: var(--muted); }

.faq-list { max-width: 760px; margin: 0 auto; }

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) 0;
    cursor: pointer;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--navy);
    list-style: none;
    transition: color var(--transition);
    width: 100%;
    text-align: left;
    background: none;
    border: none;
}

.faq-question:hover { color: var(--teal); }
.faq-question::-webkit-details-marker { display: none; }

.faq-icon {
    width: 28px;
    height: 28px;
    border: 1.5px solid var(--border);
    border-radius: 50%;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    transition: all var(--transition);
    color: var(--muted);
}

.faq-icon svg { width: 14px; height: 14px; }

details[open] .faq-icon {
    background: var(--teal);
    border-color: var(--teal);
    color: #fff;
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 0 var(--space-sm);
    color: var(--muted);
    line-height: 1.7;
}

.faq-answer table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--space-sm) 0;
    font-size: 0.875rem;
}

.faq-answer th {
    background: var(--surface-2);
    padding: 0.5rem 0.75rem;
    text-align: left;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--muted);
    border-bottom: 2px solid var(--border);
}

.faq-answer td {
    padding: 0.5rem 0.75rem;
    border-bottom: 1px solid var(--border);
    color: var(--fg);
}

.faq-answer tr:last-child td { border-bottom: none; }

.faq-note {
    font-size: 0.8rem;
    color: var(--coral);
    margin-top: 0.5rem;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
    background: var(--teal);
    padding: var(--space-xl) 0;
    text-align: center;
}

.cta-section h2 {
    color: #fff;
    margin-bottom: var(--space-sm);
}

.cta-section p {
    color: rgba(255,255,255,0.8);
    font-size: 1.05rem;
    margin-bottom: var(--space-md);
    max-width: 50ch;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.btn-cta-white {
    background: #fff;
    color: var(--teal);
    border: 2px solid #fff;
}

.btn-cta-white:hover {
    background: var(--coral);
    color: #fff;
    border-color: var(--coral);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--navy);
    padding: var(--space-lg) 0 var(--space-md);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo-name { color: #fff; font-size: 1.1rem; }
.footer-brand .logo-sub { color: rgba(255,255,255,0.4); }
.footer-tagline {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    margin-top: 0.5rem;
    max-width: 30ch;
    line-height: 1.6;
}

.footer h4 {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: var(--space-sm);
}

.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.65);
    transition: color var(--transition);
}
.footer-links a:hover { color: #fff; }

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-sm);
}

.footer-legal {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
    text-align: center;
}

.footer-credit {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    text-align: center;
    margin-top: 1rem;
}

.footer-credit a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
}

.footer-credit a:hover {
    color: #fff;
}

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
    position: fixed;
    bottom: var(--space-md);
    right: var(--space-md);
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: grid;
    place-items: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    transition: all var(--transition);
    z-index: 200;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
    filter: brightness(0.9);
}

.whatsapp-float svg { width: 28px; height: 28px; color: #fff; }

.whatsapp-tooltip {
    position: absolute;
    right: 68px;
    background: var(--navy);
    color: #fff;
    font-size: 0.775rem;
    font-weight: 500;
    padding: 0.4rem 0.75rem;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}

.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* ============================================================
   DIVIDER
   ============================================================ */
.divider {
    height: 1px;
    background: var(--border);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
    .nav { display: none; }
    .menu-toggle { display: flex; }

    .nav.open { display: flex; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--surface); padding: var(--space-md); border-bottom: 1px solid var(--border); gap: var(--space-sm); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }

    .hero {
        min-height: auto;
        background-color: #ffffff;
        background-image: url('../img/hero.webp');
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        position: relative;
    }

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(to bottom, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.85) 50%, rgba(255,255,255,0.95) 100%);
        z-index: 0;
    }

    .hero .container {
        position: relative;
        z-index: 1;
    }

    .hero-content {
        max-width: 100%;
        padding: var(--space-lg) 0;
    }

    .hero-image-side { display: none; }

    .promo-inner { grid-template-columns: 1fr; }

    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-card.featured { order: -1; }

    .about-grid { grid-template-columns: 1fr; }
    .about-image-wrap { order: -1; }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 180px);
    }
    .gallery-item:first-child { grid-row: 1; grid-column: 1 / 3; }

    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }

    .excursion { flex-direction: column; text-align: center; }
}

@media (max-width: 640px) {
    .periods-grid { grid-template-columns: 1fr; }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .gallery-item:first-child { grid-column: 1; }
    .gallery-item img { height: 200px; }

    .footer-grid { grid-template-columns: 1fr; text-align: center; align-items: center; }
    .footer-brand { text-align: center; }
    .footer-brand .logo { justify-content: center; }
    .footer-tagline { text-align: center; max-width: 100%; margin-left: auto; margin-right: auto; }
    .footer h4 { text-align: center; }
    .footer-links { align-items: center; text-align: center; }

    .excursion { flex-direction: column; }

    .cta-actions { flex-direction: column; align-items: center; }
    .cta-actions .btn { width: 100%; max-width: 340px; }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

:focus-visible {
    outline: 2px solid var(--teal);
    outline-offset: 3px;
}

.sr-only {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}
