@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

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

:root {
    --bg: #f7f5f0;
    --bg-warm: #faf7f2;
    --white: #ffffff;
    --ink: #141414;
    --ink-soft: #2d2d2d;
    --muted: #6b6560;
    --muted-light: #9a948d;
    --accent: #f0642a;
    --accent-soft: #fff0e8;
    --accent-dark: #d4521e;
    --teal: #0c6e6e;
    --teal-dark: #084f4f;
    --teal-soft: #e8f5f5;
    --sand: #ede6da;
    --green: #1a8a5c;
    --wa: #22c55e;
    --wa-dark: #16a34a;
    --radius: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow-sm: 0 1px 3px rgba(20, 20, 20, 0.06);
    --shadow: 0 8px 32px rgba(20, 20, 20, 0.08);
    --shadow-lg: 0 20px 60px rgba(20, 20, 20, 0.12);
    --font: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    --header-h: 76px;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-h);
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--ink);
    line-height: 1.65;
    font-size: 1rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: inherit;
    text-decoration: none;
}

/* ── Typography scale ── */
h1, h2, h3 {
    font-family: var(--font);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.08;
    color: var(--ink);
}

/* ── Header ── */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-h);
    background: rgba(247, 245, 240, 0.82);
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    border-bottom: 1px solid rgba(20, 20, 20, 0.05);
    z-index: 1000;
    transition: box-shadow 0.35s var(--ease), background 0.35s var(--ease);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-sm);
}

.nav {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.logo-link {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    padding: 0.25rem 0.5rem;
    margin: -0.25rem -0.5rem;
    border-radius: var(--radius);
    transition: opacity 0.2s;
}

.logo-link:hover {
    opacity: 0.85;
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.25rem;
    list-style: none;
}

.nav-links a:not(.nav-cta) {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--muted);
    transition: color 0.2s;
    letter-spacing: -0.01em;
}

.nav-links a:not(.nav-cta):hover {
    color: var(--ink);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.65rem 1.2rem;
    background: var(--wa);
    color: var(--white) !important;
    border-radius: 100px;
    font-size: 0.85rem !important;
    font-weight: 700 !important;
    letter-spacing: -0.01em;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s !important;
    box-shadow: 0 2px 12px rgba(34, 197, 94, 0.3);
}

.nav-cta:hover {
    background: var(--wa-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(34, 197, 94, 0.4);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: var(--radius);
    color: var(--ink);
    flex-shrink: 0;
    position: relative;
    z-index: 1002;
}

.menu-toggle-bar {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px auto;
    background: currentColor;
    border-radius: 2px;
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease), width 0.3s var(--ease);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(2) {
    opacity: 0;
    width: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-backdrop {
    display: none;
}

.menu-toggle:active {
    background: rgba(20, 20, 20, 0.06);
}

.nav-mobile-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 0.15rem;
    padding: 0.2rem;
    background: rgba(20, 20, 20, 0.05);
    border-radius: 100px;
}

.lang-switch--mobile {
    display: none;
}

.lang-btn {
    border: none;
    background: transparent;
    color: var(--muted);
    font-family: var(--font);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    padding: 0.35rem 0.55rem;
    border-radius: 100px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.lang-btn:hover {
    color: var(--ink);
}

.lang-btn.active {
    background: var(--white);
    color: var(--ink);
    box-shadow: var(--shadow-sm);
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.95rem 1.65rem;
    border-radius: 100px;
    font-family: var(--font);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    border: none;
    cursor: pointer;
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s;
    text-decoration: none;
}

.btn:active {
    transform: scale(0.98);
}

.btn-wa {
    background: var(--wa);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.32);
}

.btn-wa:hover {
    background: var(--wa-dark);
    box-shadow: 0 8px 28px rgba(34, 197, 94, 0.4);
    transform: translateY(-2px);
}

.btn-wa svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(8px);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.55);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1.05rem 1.5rem;
    font-size: 0.95rem;
    width: 100%;
}

/* ── Hero ── */
.hero {
    position: relative;
    min-height: 100svh;
    min-height: 100dvh;
    display: grid;
    grid-template-areas: "stack";
    align-items: stretch;
    padding: 0;
    overflow: hidden;
    isolation: isolate;
    background: #06100e;
}

.hero-bg,
.hero-content {
    grid-area: stack;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    min-height: 100%;
    overflow: hidden;
}

.hero-slideshow {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-slides {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.06);
    transition: opacity 1.4s ease;
    will-change: opacity, transform;
}

.hero-slide.is-active {
    opacity: 1;
    z-index: 1;
    animation: heroKenBurns 8s ease forwards;
}

.hero-slide.is-leaving {
    opacity: 0;
    z-index: 0;
}

@keyframes heroKenBurns {
    from { transform: scale(1.06); }
    to { transform: scale(1); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
        linear-gradient(105deg, rgba(6, 14, 13, 0.78) 0%, rgba(6, 14, 13, 0.4) 40%, rgba(6, 14, 13, 0.12) 65%, rgba(6, 14, 13, 0.25) 100%),
        linear-gradient(to top, rgba(6, 14, 13, 0.82) 0%, rgba(6, 14, 13, 0.3) 45%, transparent 100%);
}

.hero-progress {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    z-index: 3;
    background: rgba(255, 255, 255, 0.12);
}

.hero-progress-bar {
    display: block;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--accent), #ffb48a);
    box-shadow: 0 0 12px rgba(240, 100, 42, 0.55);
}

.hero-content {
    position: relative;
    z-index: 4;
    max-width: 1180px;
    margin: 0 auto;
    width: 100%;
    align-self: center;
    justify-self: stretch;
    padding: calc(var(--header-h) + 2.5rem) 1.5rem 3rem;
}

.hero-copy {
    max-width: 620px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.9rem 0.4rem 0.5rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: -0.01em;
    margin-bottom: 1.35rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.hero-eyebrow-dot {
    width: 8px;
    height: 8px;
    background: var(--wa);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--wa);
    animation: blink 2s ease infinite;
}

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

.hero h1 {
    font-size: clamp(2.75rem, 7vw, 4.75rem);
    font-weight: 800;
    color: var(--white);
    max-width: 11ch;
    margin-bottom: 1.15rem;
    letter-spacing: -0.045em;
    text-shadow: 0 4px 32px rgba(0, 0, 0, 0.45);
}

.hero h1 em {
    font-style: normal;
    color: #ffb48a;
}

.hero-sub {
    font-size: clamp(1rem, 2vw, 1.12rem);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.88);
    max-width: 46ch;
    margin-bottom: 1.75rem;
    line-height: 1.7;
    letter-spacing: -0.01em;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.18);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 0.95rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 100px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
    letter-spacing: -0.01em;
}

.hero-stat svg {
    width: 18px;
    height: 18px;
    color: #ffb48a;
    flex-shrink: 0;
}

/* ── FX Banner ── */
.fx-banner {
    background: var(--teal-soft);
    border-bottom: 1px solid rgba(12, 110, 110, 0.1);
    padding: 0.85rem 1.5rem;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--teal-dark);
    letter-spacing: -0.01em;
}

.fx-banner strong {
    font-weight: 700;
}

/* ── Sections ── */
.section {
    padding: 5.5rem 1.5rem;
}

.section-inner {
    max-width: 1180px;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 3rem;
}

.section-header--center {
    text-align: center;
}

.section-header--center .section-label {
    justify-content: center;
}

.section-header--center .section-label::before {
    display: none;
}

.section-header--center p {
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.85rem;
}

.section-label::before {
    content: '';
    width: 20px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

.section-header h2 {
    font-size: clamp(1.85rem, 4.5vw, 2.75rem);
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 0.85rem;
    letter-spacing: -0.04em;
    max-width: 18ch;
}

.section-header--center h2 {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
}

.section-header p {
    color: var(--muted);
    font-size: 1.05rem;
    font-weight: 500;
    max-width: 520px;
    line-height: 1.7;
    letter-spacing: -0.01em;
}

/* ── Packages ── */
.packages {
    background: var(--white);
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.package-card {
    background: var(--bg-warm);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(20, 20, 20, 0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.package-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.package-card.featured {
    grid-column: 1 / -1;
    flex-direction: row;
    background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%);
    border: none;
}

.package-card.featured .package-body {
    color: var(--white);
    justify-content: center;
    padding: 2rem 2.5rem;
}

.package-card.featured .package-body h3 {
    color: var(--white);
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.package-card.featured .package-desc {
    color: rgba(255, 255, 255, 0.75);
}

.package-card.featured .package-highlights li {
    color: rgba(255, 255, 255, 0.9);
}

.package-card.featured .package-highlights li::before {
    color: #7dffe0;
}

.package-card.featured .package-price-block {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
}

.package-card.featured .package-price {
    color: var(--white);
}

.package-card.featured .package-price small {
    color: rgba(255, 255, 255, 0.65);
}

.package-card.featured .package-gallery {
    height: auto;
    min-height: 300px;
    width: 48%;
    flex-shrink: 0;
}

.package-gallery {
    position: relative;
    height: 260px;
    overflow: hidden;
    background: var(--ink);
}

.gallery-track {
    display: flex;
    height: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.gallery-track::-webkit-scrollbar {
    display: none;
}

.gallery-track img {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    scroll-snap-align: start;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: var(--ink);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s, background 0.2s;
    opacity: 0;
}

.package-gallery:hover .gallery-nav,
.package-gallery:focus-within .gallery-nav {
    opacity: 1;
}

.gallery-nav:hover {
    background: var(--white);
    transform: translateY(-50%) scale(1.06);
}

.gallery-nav svg {
    width: 18px;
    height: 18px;
}

.gallery-prev {
    left: 0.65rem;
}

.gallery-next {
    right: 0.65rem;
}

.gallery-counter {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    z-index: 2;
    padding: 0.3rem 0.65rem;
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(8px);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 700;
    border-radius: 100px;
    letter-spacing: 0.02em;
}

@media (max-width: 900px) {
    .gallery-nav {
        opacity: 1;
    }
}

@media (max-width: 600px) {
    .package-gallery {
        height: 220px;
    }
}

.package-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.35rem 0.8rem;
    background: rgba(20, 20, 20, 0.65);
    backdrop-filter: blur(8px);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.package-badge.popular {
    background: var(--accent);
}

.package-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.package-body h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 0.5rem;
    line-height: 1.25;
    letter-spacing: -0.03em;
}

.package-desc {
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
    flex: 1;
    line-height: 1.65;
    letter-spacing: -0.01em;
}

.package-highlights {
    list-style: none;
    margin-bottom: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.package-highlights li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--ink-soft);
    letter-spacing: -0.01em;
}

.package-highlights li::before {
    content: '';
    width: 5px;
    height: 5px;
    background: var(--green);
    border-radius: 50%;
    flex-shrink: 0;
}

.package-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.package-price-block {
    flex: 1;
    min-width: 140px;
}

.package-price {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--ink);
    line-height: 1;
    letter-spacing: -0.04em;
    font-variant-numeric: tabular-nums;
}

.package-price small {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--muted-light);
    margin-top: 0.3rem;
    letter-spacing: 0;
}

.price-per-person {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--green);
    margin-top: 0.35rem;
    letter-spacing: -0.01em;
}

.package-card.featured .price-per-person {
    color: #7dffe0;
}

.package-card .btn-wa {
    flex-shrink: 0;
    width: auto;
    padding: 0.85rem 1.25rem;
    font-size: 0.88rem;
}

.package-card:not(.featured) .package-footer {
    flex-direction: column;
    align-items: stretch;
}

.package-card:not(.featured) .btn-wa {
    width: 100%;
}

/* ── Reviews ── */
.reviews {
    background: var(--bg);
}

.reviews-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.reviews-header h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    max-width: 16ch;
    margin-top: 0.5rem;
}

.reviews-score {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.15rem;
    padding: 1.25rem 1.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(20, 20, 20, 0.06);
    box-shadow: var(--shadow-sm);
    min-width: 180px;
}

.reviews-stars,
.review-stars {
    color: #f5a623;
    font-size: 1rem;
    letter-spacing: 0.05em;
}

.reviews-score strong {
    font-size: 2rem;
    font-weight: 800;
    color: var(--ink);
    line-height: 1;
    letter-spacing: -0.04em;
}

.reviews-score span {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--muted);
    text-align: right;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.review-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    border: 1px solid rgba(20, 20, 20, 0.05);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.review-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.review-card p {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--ink-soft);
    line-height: 1.7;
    flex: 1;
    letter-spacing: -0.01em;
}

.review-card footer {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(20, 20, 20, 0.06);
}

.review-card footer strong {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--ink);
}

.review-card footer span {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--muted-light);
}

/* ── Why Us ── */
.why {
    background: var(--bg);
}

.why-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    align-items: center;
}

.why-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: var(--shadow-lg);
}

.why-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(20, 20, 20, 0.3) 0%, transparent 40%);
}

.why-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-image-caption {
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    z-index: 1;
    padding: 0.6rem 1rem;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    border-radius: var(--radius);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.02em;
}

.why-content h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
    max-width: 16ch;
}

.why-content .lead {
    font-size: 1.05rem;
    color: var(--teal);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.why-content p {
    color: var(--muted);
    font-weight: 500;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.75;
}

.why-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.why-pill {
    padding: 0.45rem 0.9rem;
    background: var(--white);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--ink-soft);
    border: 1px solid rgba(20, 20, 20, 0.07);
    letter-spacing: -0.01em;
}

/* ── FAQ ── */
.faq {
    background: var(--white);
}

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

.faq-item {
    border-bottom: 1px solid rgba(20, 20, 20, 0.07);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.35rem 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--ink);
    text-align: left;
    letter-spacing: -0.02em;
}

.faq-question svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--muted-light);
    transition: transform 0.3s var(--ease);
}

.faq-item.open .faq-question svg {
    transform: rotate(180deg);
    color: var(--accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s var(--ease);
}

.faq-answer p {
    padding-bottom: 1.35rem;
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 500;
    line-height: 1.75;
}

.faq-item.open .faq-answer {
    max-height: 200px;
}

/* ── CTA Final ── */
.cta-final {
    background: var(--ink);
    text-align: center;
    padding: 5.5rem 1.5rem;
    position: relative;
    overflow: hidden;
}

.cta-final::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(240, 100, 42, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.cta-final h2 {
    font-size: clamp(1.85rem, 5vw, 2.75rem);
    color: var(--white);
    margin-bottom: 0.85rem;
    position: relative;
}

.cta-final p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.05rem;
    font-weight: 500;
    max-width: 440px;
    margin: 0 auto 2rem;
    line-height: 1.7;
    position: relative;
}

.cta-final .btn-wa {
    font-size: 1rem;
    padding: 1.1rem 2.25rem;
    position: relative;
}

/* ── Footer ── */
.footer {
    background: #0d0d0d;
    color: rgba(255, 255, 255, 0.55);
    padding: 3.5rem 1.5rem 2rem;
}

.footer-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-brand .logo-img {
    height: 48px;
    margin-bottom: 1rem;
    filter: brightness(1.1);
}

.footer-brand p {
    font-size: 0.88rem;
    font-weight: 500;
    line-height: 1.75;
    max-width: 300px;
}

.footer h4 {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.55rem;
}

.footer-links a {
    font-size: 0.88rem;
    font-weight: 500;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    max-width: 1180px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.78rem;
    font-weight: 500;
}

.footer-cadastur {
    height: 36px;
    opacity: 0.7;
}

/* ── Floating WhatsApp ── */
.wa-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 999;
    width: 56px;
    height: 56px;
    background: var(--wa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.45);
    transition: transform 0.25s var(--ease);
}

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

.wa-float svg {
    width: 28px;
    height: 28px;
    color: var(--white);
}

/* ── Mobile bar ── */
.mobile-wa-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 998;
    padding: 0.7rem 1rem;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(20, 20, 20, 0.06);
}

.mobile-wa-bar .btn-wa {
    width: 100%;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .nav {
        padding: 0 1rem;
    }

    .logo-img {
        height: 42px;
    }

    .nav-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        top: var(--header-h);
        background: rgba(6, 14, 13, 0.5);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.35s var(--ease), visibility 0.35s;
        z-index: 999;
    }

    body.menu-open .nav-backdrop {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    body.menu-open {
        overflow: hidden;
    }

    body.menu-open .header {
        background: rgba(255, 255, 255, 0.98);
        box-shadow: var(--shadow-sm);
    }

    .nav-links {
        position: fixed;
        top: var(--header-h);
        right: 0;
        bottom: 0;
        left: auto;
        width: min(100vw - 2.5rem, 340px);
        max-width: 340px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0.75rem 0 1.5rem;
        background: var(--white);
        border-left: 1px solid rgba(20, 20, 20, 0.06);
        box-shadow: -12px 0 48px rgba(20, 20, 20, 0.14);
        transform: translateX(105%);
        visibility: hidden;
        pointer-events: none;
        transition: transform 0.38s var(--ease), visibility 0.38s;
        z-index: 1001;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav-links::before {
        content: attr(data-menu-label);
        display: block;
        padding: 0.85rem 1.35rem 1rem;
        font-size: 0.72rem;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--muted-light);
        border-bottom: 1px solid rgba(20, 20, 20, 0.06);
        margin-bottom: 0.35rem;
    }

    .nav-links.open {
        transform: translateX(0);
        visibility: visible;
        pointer-events: auto;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a:not(.nav-cta) {
        display: flex;
        align-items: center;
        width: 100%;
        padding: 1.05rem 1.35rem;
        font-size: 1.05rem;
        font-weight: 700;
        color: var(--ink);
        border-bottom: 1px solid rgba(20, 20, 20, 0.05);
        transition: background 0.2s, color 0.2s;
    }

    .nav-links a:not(.nav-cta):active,
    .nav-links a:not(.nav-cta):hover {
        background: var(--bg);
        color: var(--teal-dark);
    }

    .nav-links .lang-switch {
        display: none;
    }

    .lang-switch--mobile {
        display: inline-flex;
    }

    .menu-toggle {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .nav-links li:last-child {
        margin-top: auto;
        padding: 1.25rem 1.35rem 0;
    }

    .nav-links .nav-cta {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.25rem !important;
        font-size: 0.95rem !important;
        border-radius: var(--radius);
    }

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

    .package-card.featured {
        flex-direction: column;
    }

    .package-card.featured .package-gallery {
        width: 100%;
        min-height: 220px;
        height: 220px;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .why-image {
        aspect-ratio: 4 / 5;
        max-height: none;
        min-height: 360px;
        max-width: 420px;
        margin: 0 auto;
        width: 100%;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .reviews-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .reviews-score {
        align-items: flex-start;
        width: 100%;
    }

    .reviews-score span {
        text-align: left;
    }
}

@media (max-width: 767px) {
    .hero-overlay {
        background:
            linear-gradient(180deg,
                rgba(6, 14, 13, 0.15) 0%,
                rgba(6, 14, 13, 0.45) 45%,
                rgba(6, 14, 13, 0.92) 100%);
    }

    .hero-content {
        align-self: end;
        padding: calc(var(--header-h) + 1rem) 1.15rem 1.75rem;
    }

    .hero-copy {
        max-width: none;
    }

    .hero h1 {
        font-size: clamp(2.1rem, 9.5vw, 2.75rem);
        max-width: none;
    }

    .hero-sub {
        font-size: 0.92rem;
        max-width: none;
        margin-bottom: 1.25rem;
    }

    .hero-stats {
        display: none;
    }

    .hero-actions {
        flex-direction: column;
        margin-bottom: 0;
    }

    .hero-actions .hero-cta-wa {
        order: -1;
    }

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

@media (prefers-reduced-motion: reduce) {
    .hero-slide,
    .hero-slide.is-active {
        animation: none;
        transform: none;
        transition: opacity 0.4s ease;
    }
}

@media (max-width: 600px) {
    .hero-content {
        padding-bottom: calc(5.75rem + env(safe-area-inset-bottom, 0px));
    }

    .hero-actions .hero-cta-wa {
        display: none;
    }

    .section {
        padding: 4rem 1.25rem;
    }

    .wa-float {
        bottom: 5.25rem;
        width: 50px;
        height: 50px;
    }

    .wa-float svg {
        width: 24px;
        height: 24px;
    }

    .mobile-wa-bar {
        display: block;
    }

    body {
        padding-bottom: 76px;
    }

    .package-card .btn-wa {
        width: 100%;
    }
}
