/* ══════════════════════════════════════════════════════════════════════════
   MONTE CORREIA — LUXO ORGÂNICO & EDITORIAL
   Deep Forest + Cream + Gold Muted + Playfair Display
   "Fundo Creme (Papel) + Tipografia Serifada (Editorial) + Verde Profundo 
    (Natureza) + Espaços Amplos (Luxo) = Monte Correia."
   ══════════════════════════════════════════════════════════════════════════ */

/* Fonts moved to HTML for performance */

:root {
    /* ─── 0. Fontes ─── */
    --font-sans: 'Inter', sans-serif;
    --font-serif: 'Montserrat', sans-serif;
    --font-display: 'Montserrat', sans-serif;

    /* ─── 1. Paleta Luxo Orgânico ─── */
    --deep-forest: #0F1C15;
    --forest-mid: #1A2E1F;
    --forest-light: #2A4030;
    --cream: #F2F2ED;
    --cream-dark: #E8E6DF;
    --cream-mid: #D5D2CA;
    --gold-muted: #C6A87C;
    --gold-light: #D4BC96;
    --gold: #C6A87C;
    --accent: #C6A87C;
    --white-pure: #FFFFFF;
    --black: #000000;

    /* Backgrounds */
    --bg-dark: #0F1C15;
    --bg-primary: #0F1C15;
    --bg-card: rgba(242, 242, 237, 0.6);
    --glass-bg: rgba(15, 28, 21, 0.85);
    --glass-blur: blur(16px);
    --glass-border: 1px solid rgba(242, 242, 237, 0.08);

    /* Text Colors */
    --text-main: #1A2E1F;
    --text-muted: #4A5D50;
    --text-light: #F2F2ED;
    --text-primary: #1A2E1F;
    --text-secondary: #5A6D60;
    --text-on-dark: #F2F2ED;

    /* ─── 2. Typography Scale ─── */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 2rem;
    --text-4xl: 2.5rem;
    --text-hero: clamp(2rem, 5vw, 4rem);

    /* ─── 3. Espaçamento (8pt Grid) ─── */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    --space-2xl: 8rem;
    --space-3xl: 10rem;
    --space-section: 6rem;
    --gutter: clamp(1rem, 4vw, 2rem);
    --container-max: 1200px;

    /* ─── 4. UI Tokens ─── */
    --radius-sm: 4px;
    --radius-md: 12px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 100px;

    --shadow-sm: 0 4px 12px rgba(15, 28, 21, 0.05);
    --shadow-soft: 0 4px 12px rgba(15, 28, 21, 0.05);
    --shadow-md: 0 12px 24px rgba(15, 28, 21, 0.08);
    --shadow-lg: 0 24px 48px rgba(15, 28, 21, 0.12);
    --shadow-strong: 0 24px 48px rgba(15, 28, 21, 0.2);
    --shadow-gold: 0 8px 32px rgba(198, 168, 124, 0.2);
    --shadow-xl: 0 32px 64px rgba(15, 28, 21, 0.15);

    /* ─── 5. Transitions ─── */
    --transition-fast: 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-smooth: 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    --duration-fast: 0.2s;
    --duration-base: 0.4s;
    --duration-slow: 0.8s;
    --ease-out: cubic-bezier(0.25, 1, 0.5, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

    /* ─── 6. Botanical Decorations ─── */
    --succulent-size: 200px;
    --succulent-opacity: 0.15;
}

/* ─── Reset & Base ─── */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--cream);
    color: var(--text-main);
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--deep-forest);
}

p {
    margin-bottom: var(--space-sm);
    color: var(--text-muted);
}

img,
video {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

/* ─── Utilities ─── */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

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

.section {
    padding: var(--space-section) 0;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .section {
        padding: var(--space-lg) 0;
    }
}

.section--compact {
    padding: var(--space-xl) 0;
    background-color: var(--cream-dark);
}

.section--compact .benefit-card {
    background: var(--white-pure);
    border: 1px solid rgba(15, 28, 21, 0.05);
    box-shadow: var(--shadow-soft);
}

.section--compact .benefit-title,
.section--compact p {
    color: var(--deep-forest);
}

/* ─── Section Background Variants (Visual Rhythm) ─── */

.section--dark {
    background-color: var(--bg-dark);
    color: var(--text-on-dark);
}

.section--dark h2,
.section--dark h3 {
    color: var(--cream);
}

/* Deep dark with radial gold glow — adds depth to dark sections */
.section--dark-depth {
    background: var(--bg-dark);
    color: var(--text-on-dark);
}

.section--dark-depth::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(198, 168, 124, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(42, 64, 48, 0.4) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.section--dark-depth h2,
.section--dark-depth h3 {
    color: var(--cream);
}

.section--dark-depth>.container {
    position: relative;
    z-index: 1;
}

/* Light cream with warm diagonal gradient — breaks flat cream monotony */
.section--light {
    background: linear-gradient(168deg, var(--cream) 0%, var(--cream-dark) 100%);
}

/* Warm tinted section — subtle golden warmth */
.section--warm {
    background: linear-gradient(180deg,
            var(--cream) 0%,
            rgba(198, 168, 124, 0.06) 50%,
            var(--cream) 100%);
}

/* Mist/Fog — soft gradient with organic feel */
.section--mist {
    background: linear-gradient(180deg,
            var(--cream-dark) 0%,
            var(--cream) 40%,
            rgba(42, 64, 48, 0.04) 100%);
}

/* Soft bone — slightly different from default cream */
.section--bone {
    background: var(--cream-dark);
}

/* ─── Section Transition Dividers (Dark ↔ Light) ─── */

/* Curve that goes FROM dark TO light — place on the LIGHT section */
.section--wave-top::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 80px;
    background: var(--bg-dark);
    clip-path: ellipse(55% 100% at 50% 0%);
    z-index: 1;
    pointer-events: none;
}

/* Curve that goes FROM light TO dark — place on the DARK section */
.section--wave-top-light::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 80px;
    background: var(--cream);
    clip-path: ellipse(55% 100% at 50% 0%);
    z-index: 1;
    pointer-events: none;
}

/* Angled bottom — dark section bleeding into light via diagonal */
.section--angle-bottom::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 80px;
    background: var(--cream);
    clip-path: polygon(0 100%, 100% 40%, 100% 100%);
    z-index: 1;
    pointer-events: none;
}

/* Fade-out gradient at bottom of a section — smooth blend */
.section--fade-bottom::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, transparent, var(--bg-dark));
    pointer-events: none;
    z-index: 0;
}

/* Fade-in gradient at top — coming from dark */
.section--fade-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, var(--bg-dark), transparent);
    pointer-events: none;
    z-index: 0;
}

/* Subtle top divider line with gold accent */
.section--gold-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(200px, 30%);
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-muted), transparent);
    z-index: 1;
}

/* ─── Editorial Text Utilities ─── */
.text-gold {
    color: var(--accent);
}

.text-italic {
    font-style: italic;
    font-weight: 400;
}

.section-eyebrow {
    font-family: var(--font-sans);
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent);
    margin-bottom: var(--space-md);
    display: block;
}

.section-title {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-lg);
    max-width: 800px;
    /* Increased for better centering */
    margin-inline: auto;
    /* Center the block */
    text-align: center;
    /* Center the text */
}

.section-description {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    font-weight: 300;
    max-width: 600px;
    margin-inline: auto;
    /* Center description */
    line-height: 1.8;
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
        /* Smaller on mobile */
        padding: 0 var(--space-sm);
    }
}

/* ═══════════════════════════════════════════════════════
   STEP-UP / STICKY BAR
   ═══════════════════════════════════════════════════════ */
.sticky-urgency {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #e74c3c;
    color: white;
    text-align: center;
    padding: 8px var(--space-md);
    font-size: 14px;
    font-weight: 700;
    z-index: 2000;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
}

.sticky-urgency span {
    background: rgba(0, 0, 0, 0.2);
    padding: 2px 8px;
    border-radius: 4px;
    animation: stickyPulse 1.5s infinite;
}

@keyframes stickyPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* ═══════════════════════════════════════════════════════
   0. NAVBAR — Glassmorphism Floating
   ═══════════════════════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: var(--space-md) var(--gutter);
    transition: all var(--duration-base) var(--ease-out);
}

.navbar.is-scrolled {
    top: 0;
    padding: var(--space-xs) var(--gutter);
    background: var(--glass-bg);
    -webkit-backdrop-filter: var(--glass-blur);
    backdrop-filter: var(--glass-blur);
    border-bottom: var(--glass-border);
}

.navbar__inner {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar__logo {
    height: 70px;
    width: auto;
    object-fit: contain;
}

.navbar__logo span {
    color: var(--gold-muted);
}

.navbar__links {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.navbar__links a {
    font-family: var(--font-sans);
    font-size: var(--text-base);
    font-weight: 500;
    color: rgba(242, 242, 237, 0.7);
    transition: color var(--duration-fast);
    letter-spacing: 0.02em;
}

.navbar__links a:hover {
    color: var(--gold-muted);
}

.navbar__cta {
    padding: 0.6rem 1.5rem !important;
    font-size: var(--text-xs) !important;
}

.navbar__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 12px;
    margin-right: -10px;
}

.navbar__hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--cream);
    border-radius: 2px;
    transition: all var(--duration-fast);
}

@media (max-width: 768px) {
    .navbar__links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        padding: var(--space-xl) var(--gutter);
        background: var(--bg-dark);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        gap: var(--space-md);
        text-align: center;
    }

    .navbar__links.is-open {
        display: flex;
    }

    .navbar__hamburger {
        display: flex;
    }
}

/* ═══════════════════════════════════════════════════════
   1. HERO — Full Screen Cinematic
   ═══════════════════════════════════════════════════════ */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--deep-forest);
    overflow: hidden;
    padding-top: 80px;
    padding-bottom: 40px;
    border-bottom: 2px solid var(--accent);
    box-shadow: none !important;
}

/* Desktop Constraint */
@media (min-width: 1025px) {
    .hero {
        min-height: 100vh;
        min-height: 100dvh;
        max-height: none;
        padding-top: 80px;
        padding-bottom: 30px;
    }
}

.hero__slider {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero__slide.is-active {
    opacity: 1;
}

.hero__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: kenBurns 20s linear infinite alternate;
}

@keyframes kenBurns {
    from {
        transform: scale(1.0);
    }

    to {
        transform: scale(1.1);
    }
}

.hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: rgba(15, 28, 21, 0.75);
    /* Fixed 75% green overlay */
    pointer-events: none;
}

.hero__container {
    position: relative;
    z-index: 5;
    width: 100%;
}

.hero__content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: var(--space-xl) var(--gutter);
}

/* ─── Hero Mobile Layout (Aruja Style) ─── */
.hero__mobile-layout {
    display: none;
    flex-direction: column;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 10;
}

.hero__mobile-logo {
    height: 100px;
    width: auto;
    margin-bottom: var(--space-xs);
}

.hero__mobile-title {
    font-family: var(--font-serif);
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--cream) !important;
    margin-bottom: 12px;
    text-align: center;
    line-height: 1.2;
}

.hero__mobile-description {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--cream) !important;
    margin-bottom: var(--space-lg);
    text-align: center;
    line-height: 1.5;
}

.hero__mobile-buttons {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    gap: 12px;
    margin-bottom: var(--space-md);
}

.hero__mobile-row {
    display: flex;
    gap: 12px;
    width: 100%;
}

.btn-hero-nav {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    border: none;
    border-radius: 20px;
    background: var(--cream);
    color: var(--deep-forest);
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.btn-hero-nav--full {
    width: 100%;
    background: var(--gold-muted);
    color: var(--deep-forest);
}

.hero__mobile-cta {
    width: 100%;
    max-width: 320px;
    background: var(--deep-forest);
    color: var(--cream);
    border: 1px solid var(--deep-forest);
    border-radius: 24px;
    padding: 14px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: none;
    letter-spacing: normal;
}

@media (max-width: 768px) {
    .navbar {
        display: none !important;
    }

    .hero__desktop-layout {
        display: none !important;
    }

    .hero__mobile-layout {
        display: flex !important;
        margin-top: 0;
    }

    .hero {
        padding-top: 15px !important;
        padding-bottom: 0px !important;
    }
}

@media (min-width: 769px) {
    .hero__mobile-layout {
        display: none !important;
    }
}

.hero__title {
    font-family: var(--font-serif);
    font-size: var(--text-hero);
    font-weight: 700;
    line-height: 1.1;
    color: var(--cream);
    margin-bottom: 24px;

    /* FIXED TYPOGRAPHY SCALING */
    font-size: 2rem;
    /* Mobile: Smaller & Safe */
}

@media (min-width: 768px) {
    .hero__title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero__title {
        font-size: 3.5rem;
    }

    /* Max Desktop Size */
}

.hero__subtitle {
    font-family: var(--font-sans);
    font-size: var(--text-lg);
    font-weight: 300;
    color: rgba(242, 242, 237, 0.9);
    max-width: 650px;
    margin: 0 auto var(--space-2xl);
    line-height: 1.6;
}

.hero__ctas {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.hero__trust {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-lg);
    font-size: var(--text-sm);
    color: rgba(242, 242, 237, 0.6);
}

.hero__trust-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2.25rem;
    border-radius: var(--radius-full);
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    cursor: pointer;
    border: none;
    transition: all var(--duration-base) var(--ease-out);
}

.btn--primary {
    background: var(--gold-muted);
    color: var(--deep-forest);
    box-shadow: var(--shadow-gold);
}

.btn--primary:hover {
    background: var(--gold-light);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(198, 168, 124, 0.35);
}

.btn--secondary {
    background: transparent;
    border: 1px solid rgba(242, 242, 237, 0.25);
    color: var(--cream);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.btn--secondary:hover {
    border-color: var(--gold-muted);
    color: var(--gold-muted);
}

.btn--large {
    padding: 1.25rem 3rem;
    font-size: var(--text-base);
}

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

.btn--whatsapp {
    background: #25D366;
    color: #FFFFFF;
}

.btn--whatsapp:hover {
    background: #1EBE5A;
    transform: translateY(-4px);
}

.btn__icon {
    width: 18px;
    height: 18px;
}

/* ═══════════════════════════════════════════════════════
   5. LAZER — Split Editorial Layout
   ═══════════════════════════════════════════════════════ */
.lazer-split {
    display: flex;
    align-items: stretch;
    gap: var(--space-2xl);
}

.lazer-split__visual {
    flex: 0 0 45%;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 500px;
}

.lazer-split__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--duration-slow) var(--ease-out);
}

.lazer-split__visual:hover .lazer-split__img {
    transform: scale(1.04);
}

.lazer-split__counter {
    position: absolute;
    bottom: var(--space-lg);
    left: var(--space-lg);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-md);
    padding: var(--space-sm) var(--space-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: var(--shadow-lg);
}

.lazer-split__counter-number {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--deep-forest);
    line-height: 1;
}

.lazer-split__counter-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    font-weight: 500;
}

.lazer-split__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    /* Aligned Left */
    align-items: flex-start;
    /* Aligned Left */
}

.lazer-split__content .section-title {
    margin-bottom: var(--space-sm);
    text-align: left;
    /* Force Left */
    margin-inline: 0;
    /* Remove auto margins */
    max-width: 600px;
    /* Limit width */
    font-size: var(--text-3xl);
    /* Slightly smaller than main section titles */
}

.lazer-split__content .section-description {
    margin-bottom: var(--space-xl);
    max-width: 520px;
    text-align: left;
    margin-inline: 0;
}

/* Amenity List */
.amenity-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    margin-bottom: var(--space-xl);
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    transition: all var(--duration-base) var(--ease-out);
    border: 1px solid transparent;
}

.amenity-item:hover {
    background: rgba(0, 0, 0, 0.03);
    border-color: var(--cream-dark);
    transform: translateX(4px);
}

.amenity-item__icon {
    font-size: 1.6rem;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    border-radius: 50%;
}

.amenity-item__title {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 600;
    color: var(--deep-forest);
    margin-bottom: 2px;
}

.amenity-item__text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.4;
}

/* Mobile: stack vertically */
@media (max-width: 768px) {
    .lazer-split {
        flex-direction: column;
    }

    .lazer-split__visual {
        min-height: 280px;
    }
}

/* Lazer on dark background overrides */
.section--dark .amenity-item__title {
    color: var(--cream);
    text-align: left;
    /* Garante alinhamento à esquerda */
}

.section--dark .amenity-item__text {
    color: rgba(242, 242, 237, 0.8);
    text-align: left;
    /* Garante alinhamento à esquerda */
}

.section--dark .amenity-item__icon {
    background: rgba(198, 168, 124, 0.15);
    /* Gold tint background matches theme better */
    color: var(--gold-muted);
    opacity: 1 !important;
}

/* Fix for Safari/iOS fading issues */
.amenity-item__icon,
.beneficio-glass__icon {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
}

/* Permanent Glassmorphism for Amenity Items (Not just hover) */
.section--dark .amenity-item {
    background: rgba(255, 255, 255, 0.05);
    /* Visible glass background */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-xs);
    /* Spacing between items */
}

.section--dark .amenity-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold-muted);
    transform: translateX(4px);
}

.section--dark .section-description {
    color: rgba(242, 242, 237, 0.8);
    margin-inline: 0;
    /* Remove auto margin to align left */
    text-align: left;
    /* Align left */
    max-width: 600px;
}

.section--dark .btn--outline {
    align-self: flex-start;
    /* Align button left if flex container */
    margin-inline: 0;
    border: 1px solid rgba(198, 168, 124, 0.4);
    color: var(--gold-muted);
}

.section--dark .btn--outline:hover {
    background: rgba(198, 168, 124, 0.1);
    border-color: var(--gold-muted);
}


/* ═══════════════════════════════════════════════════════
   3. CREDIBILIDADE — Counters (Glassmorphism)
   ═══════════════════════════════════════════════════════ */
.credibilidade-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-xl);
    text-align: center;
}

.credibilidade-item {
    padding: var(--space-xl) var(--space-md);
}

.credibilidade-number {
    font-family: var(--font-serif);
    font-size: var(--text-4xl);
    font-weight: 700;
    color: var(--gold-muted);
    display: block;
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.credibilidade-label {
    font-family: var(--font-sans);
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 600;
    color: rgba(242, 242, 237, 0.6);
}

/* ═══════════════════════════════════════════════════════
   4. CONCEITO — Assimetria Editorial
   ═══════════════════════════════════════════════════════ */
.conceito-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.conceito-content {
    padding-right: var(--space-xl);
}

.conceito-visual {
    position: relative;
}

.conceito-visual img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 0;
    border-top-left-radius: 150px;
    /* Asymmetric intentional */
    border-bottom-right-radius: var(--radius-lg);
}

.conceito-visual::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 60%;
    height: 60%;
    border: 2px solid var(--gold-muted);
    border-radius: 0;
    border-top-left-radius: 100px;
    border-bottom-right-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.3;
}

/* ═══════════════════════════════════════════════════════
   5. LOCALIZAÇÃO — Proximity Cards
   ═══════════════════════════════════════════════════════ */
.localizacao-split {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--space-2xl);
    align-items: center;
}

.localizacao-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-strong);
    aspect-ratio: 4/3;
}

.localizacao-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.proximity-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.proximity-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--cream-dark);
    transition: all var(--duration-fast) var(--ease-out);
}

.proximity-item:hover {
    border-color: var(--gold-muted);
    transform: translateX(8px);
}

.proximity-icon {
    font-size: 1.5rem;
    min-width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream-dark);
    border-radius: var(--radius-sm);
}

.proximity-time {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: var(--text-xl);
    color: var(--gold-muted);
    display: block;
}

.proximity-label {
    font-size: var(--text-sm);
    color: var(--text-secondary);
}

/* ═══════════════════════════════════════════════════════
   6. GALERIA — Staggered Grid Orgânico
   ═══════════════════════════════════════════════════════ */
.galeria-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 18vw;
    gap: var(--space-sm);
}

.galeria-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
}

.galeria-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease-out);
}

.galeria-item:hover img {
    transform: scale(1.08);
}

.galeria-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 28, 21, 0.5), transparent 60%);
    opacity: 0;
    transition: opacity var(--duration-fast);
}

.galeria-item:hover::after {
    opacity: 1;
}

.galeria-label {
    position: absolute;
    bottom: var(--space-md);
    left: var(--space-md);
    font-family: var(--font-sans);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--cream);
    z-index: 2;
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--duration-base) var(--ease-out);
}

.galeria-item:hover .galeria-label {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered layout expanded for 12 items */
.galeria-item:nth-child(1) {
    grid-column: span 7;
    grid-row: span 2;
    border-radius: var(--radius-lg);
    border-top-left-radius: var(--radius-xl);
}

.galeria-item:nth-child(2) {
    grid-column: span 5;
    grid-row: span 1;
}

.galeria-item:nth-child(3) {
    grid-column: span 5;
    grid-row: span 1;
}

.galeria-item:nth-child(4) {
    grid-column: span 5;
    grid-row: span 2;
}

.galeria-item:nth-child(5) {
    grid-column: span 7;
    grid-row: span 2;
    border-radius: var(--radius-lg);
}

.galeria-item:nth-child(6) {
    grid-column: span 6;
    grid-row: span 1;
}

.galeria-item:nth-child(7) {
    grid-column: span 6;
    grid-row: span 2;
}

.galeria-item:nth-child(8) {
    grid-column: span 6;
    grid-row: span 1;
}

.galeria-item:nth-child(9) {
    grid-column: span 4;
    grid-row: span 2;
}

.galeria-item:nth-child(10) {
    grid-column: span 8;
    grid-row: span 2;
    border-radius: var(--radius-lg);
}

.galeria-item:nth-child(11) {
    grid-column: span 6;
    grid-row: span 1;
}

.galeria-item:nth-child(12) {
    grid-column: span 6;
    grid-row: span 1;
    border-bottom-right-radius: var(--radius-xl);
}

/* ═══════════════════════════════════════════════════════
   7. PREÇOS — Pricing Card Premium
   ═══════════════════════════════════════════════════════ */
.precos-card {
    max-width: 600px;
    margin: var(--space-2xl) auto 0;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-strong);
}

.precos-card__header {
    background: var(--deep-forest);
    padding: var(--space-2xl) var(--space-xl);
    text-align: center;
    color: var(--cream);
}

.precos-card__badge {
    font-family: var(--font-sans);
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold-muted);
    font-weight: 700;
    display: block;
    margin-bottom: var(--space-sm);
}

.precos-card__value {
    font-family: var(--font-serif);
    font-size: var(--text-4xl);
    font-weight: 700;
    color: var(--cream);
    display: block;
}

.precos-card__range {
    font-size: var(--text-sm);
    color: rgba(242, 242, 237, 0.5);
    margin-top: var(--space-xs);
    display: block;
}

.precos-card__body {
    padding: var(--space-2xl) var(--space-xl);
}

.precos-card__features {
    margin-bottom: var(--space-xl);
}

.precos-card__features li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--cream-dark);
    font-size: var(--text-base);
    color: var(--text-secondary);
}

.precos-card__features li:last-child {
    border-bottom: none;
}

.check-icon {
    color: var(--gold-muted);
    flex-shrink: 0;
}

.precos-card__actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

/* ═══════════════════════════════════════════════════════
   8. DEPOIMENTOS — Editorial Quotes
   ═══════════════════════════════════════════════════════ */
.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 15px;
    margin-top: var(--space-2xl);
}

.depoimento-card {
    background: rgba(242, 242, 237, 0.05);
    border: 1px solid rgba(242, 242, 237, 0.08);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    position: relative;
    display: flex;
    flex-direction: column;
}

.depoimento-img-wrapper {
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 12px;
}

.depoimento-img {
    width: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.depoimento-card:hover .depoimento-img {
    transform: scale(1.05);
}

.depoimento-card::before {
    content: '"';
    font-family: var(--font-serif);
    font-size: 5rem;
    color: var(--gold-muted);
    opacity: 0.2;
    position: absolute;
    top: var(--space-md);
    left: var(--space-lg);
    line-height: 1;
}

.depoimento-stars {
    color: var(--gold-muted);
    font-size: var(--text-sm);
    margin-bottom: var(--space-md);
    letter-spacing: 0.1em;
}

.depoimento-text {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: var(--text-lg);
    line-height: 1.8;
    color: var(--cream);
    margin-bottom: var(--space-lg);
}

.depoimento-author {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.depoimento-avatar {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background: var(--forest-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: var(--text-sm);
    color: var(--gold-muted);
}

.depoimento-name {
    font-weight: 600;
    font-size: var(--text-sm);
    color: var(--cream);
}

.depoimento-role {
    font-size: var(--text-xs);
    color: rgba(242, 242, 237, 0.4);
}

/* ═══════════════════════════════════════════════════════
   8.5 BENEFÍCIOS — Split Layout + Glassmorphism Cards
   ═══════════════════════════════════════════════════════ */
.beneficios-split {
    display: flex;
    align-items: stretch;
    gap: var(--space-2xl);
}

.beneficios-split__visual {
    flex: 0 0 42%;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 500px;
}

.beneficios-split__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--duration-slow) var(--ease-out);
}

.beneficios-split__visual:hover .beneficios-split__img {
    transform: scale(1.04);
}

.beneficios-split__counter {
    position: absolute;
    bottom: var(--space-lg);
    left: var(--space-lg);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-md);
    padding: var(--space-sm) var(--space-md);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.beneficios-split__counter-number {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--deep-forest);
    line-height: 1;
}

.beneficios-split__counter-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    font-weight: 500;
}

.beneficios-split__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.beneficios-split__content .section-title {
    margin-bottom: var(--space-sm);
}

.beneficios-split__content .section-description {
    margin-bottom: var(--space-xl);
    max-width: 480px;
}

/* Glassmorphism Cards Grid */
.beneficios-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
}

.beneficio-glass {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 4px 16px rgba(15, 28, 21, 0.06);
    transition: all var(--duration-base) var(--ease-out);
    cursor: default;
}

.beneficio-glass:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(15, 28, 21, 0.1);
    border-color: var(--gold-muted);
    background: rgba(255, 255, 255, 0.65);
}

.beneficio-glass__icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(198, 168, 124, 0.12);
    border-radius: 50%;
}

.beneficio-glass__title {
    font-family: var(--font-serif);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--deep-forest);
    margin-bottom: 2px;
}

.beneficio-glass__text {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.4;
}

/* Mobile: stack vertically */
@media (max-width: 768px) {
    .beneficios-split {
        flex-direction: column;
    }

    .beneficios-split__visual {
        min-height: 280px;
    }

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

/* ═══════════════════════════════════════════════════════
   9. URGÊNCIA — Scarcity Band
   ═══════════════════════════════════════════════════════ */
.urgencia {
    text-align: center;
}

.urgencia h2 {
    color: var(--cream);
}

.countdown {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    margin: var(--space-xl) auto;
}

.countdown__item {
    text-align: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.countdown__number {
    font-family: var(--font-serif);
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--gold-muted);
    display: block;
    line-height: 1;
}

.countdown__label {
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(242, 242, 237, 0.5);
    margin-top: var(--space-xs);
    display: block;
}

.urgencia-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

.urgencia-badge {
    padding: 0.5rem 1rem;
    background: rgba(198, 168, 124, 0.1);
    border: 1px solid rgba(198, 168, 124, 0.2);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    color: var(--gold-muted);
    font-weight: 600;
}

/* ═══════════════════════════════════════════════════════
   10. AGENDAMENTO — Form Editorial
   ═══════════════════════════════════════════════════════ */
/* ─── Text Utilities ─── */
.text-gold {
    color: var(--accent);
}

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

@media (max-width: 968px) {
    .agendamento-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-xl);
    }

    .agendamento-benefits {
        align-items: flex-start !important;
        text-align: left;
        margin-inline: auto;
        max-width: 320px;
    }
}

.agendamento-info h2 {
    margin-bottom: var(--space-md);
}

.agendamento-info p {
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
    line-height: 1.8;
}

.agendamento-benefits {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.agendamento-benefits li {
    font-size: var(--text-base);
    color: var(--text-secondary);
}

.agendamento-form-wrapper {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--cream-dark);
}

.form-field {
    margin-bottom: var(--space-md);
}

.form-field input,
.form-field select {
    width: 100%;
    padding: clamp(0.75rem, 2vw, 1rem);
    border: 1px solid var(--cream-mid);
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: var(--text-base);
    background: var(--cream);
    color: var(--text-primary);
    transition: border-color var(--duration-fast);
}

.form-field input:focus,
.form-field select:focus {
    outline: none;
    border-color: var(--gold-muted);
}

/* ═══════════════════════════════════════════════════════
   11. FAQ — Accordion
   ═══════════════════════════════════════════════════════ */
.faq-list {
    max-width: 800px;
    margin: var(--space-2xl) auto 0;
}

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

.faq-item__question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-lg) 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-serif);
    font-size: var(--text-lg);
    color: var(--text-primary);
    text-align: left;
    transition: color var(--duration-fast);
}

.faq-item__question:hover {
    color: var(--gold-muted);
}

.faq-item__icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: transform var(--duration-fast);
}

.faq-item[open] .faq-item__icon,
.faq-item__question[aria-expanded="true"] .faq-item__icon {
    transform: rotate(45deg);
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--duration-base) var(--ease-out);
}

.faq-item__answer-inner {
    padding-bottom: var(--space-lg);
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ═══════════════════════════════════════════════════════
   12. FINAL CTA — Seção Pré-Rodapé
   ═══════════════════════════════════════════════════════ */
.final-section {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.final-section h2 {
    color: var(--cream);
    margin-bottom: var(--space-md);
}

.final-section p {
    color: rgba(242, 242, 237, 0.6);
    margin-bottom: var(--space-xl);
    line-height: 1.8;
}

.final-section__cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.about-credentials {
    font-size: var(--text-xs);
    color: rgba(242, 242, 237, 0.3);
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
}

/* ═══════════════════════════════════════════════════════
   13. FOOTER
   ═══════════════════════════════════════════════════════ */
.footer {
    background: var(--black);
    padding: var(--space-3xl) 0 var(--space-xl);
    color: rgba(242, 242, 237, 0.4);
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.footer__logo {
    font-family: var(--font-serif);
    font-size: var(--text-2xl);
    color: var(--cream);
    margin-bottom: var(--space-sm);
}

.footer__heading {
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--cream);
    margin-bottom: var(--space-md);
}

.footer__grid ul li {
    margin-bottom: var(--space-xs);
}

.footer__grid ul li a {
    transition: color var(--duration-fast);
}

.footer__grid ul li a:hover {
    color: var(--gold-muted);
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: var(--space-lg);
    text-align: center;
    font-size: var(--text-xs);
}

/* ═══════════════════════════════════════════════════════
   MODAL
   ═══════════════════════════════════════════════════════ */
.form-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 28, 21, 0.85);
    -webkit-backdrop-filter: var(--glass-blur);
    backdrop-filter: var(--glass-blur);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: var(--gutter);
}

.form-modal-overlay.is-active {
    display: flex;
}

.form-modal {
    background: rgba(15, 28, 21, 0.75);
    /* Dark transparent background */
    -webkit-backdrop-filter: blur(24px);
    /* Strong glass blur */
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    /* Subtile border to enhance glass */
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
    /* Deep shadow for depth */

    border-radius: var(--radius-lg);
    max-width: 520px;
    width: 100%;
    max-height: 90vh;
    /* Prevents being cut off on small screens */
    overflow-y: auto;
    /* Adds scroll inside modal if content is too tall */
    position: relative;
    animation: modalSlideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Custom scrollbar for modal (Webkit) */
.form-modal::-webkit-scrollbar {
    width: 6px;
}

.form-modal::-webkit-scrollbar-track {
    background: transparent;
}

.form-modal::-webkit-scrollbar-thumb {
    background: rgba(198, 168, 124, 0.4);
    border-radius: 4px;
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-modal__close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-secondary);
    z-index: 2;
    padding: var(--space-xs);
    transition: color var(--duration-fast);
}

.form-modal__close:hover {
    color: var(--text-primary);
}

.form-modal__header {
    padding: var(--space-2xl) var(--space-xl) var(--space-md);
    text-align: center;
    position: relative;
    z-index: 10;
}

.form-modal__title {
    font-family: var(--font-serif);
    font-size: var(--text-2xl);
    margin-bottom: var(--space-xs);
}

.form-modal__subtitle {
    font-size: var(--text-sm);
    color: var(--text-secondary);
}

.form-modal__body {
    padding: 0 var(--space-xl) var(--space-2xl);
}

.form-steps {
    display: flex;
    justify-content: center;
    gap: var(--space-xs);
    padding: 0 var(--space-xl) var(--space-md);
}

.form-step-indicator {
    width: 40px;
    height: 4px;
    border-radius: 2px;
    background: var(--cream-dark);
    transition: background var(--duration-fast);
}

.form-step-indicator.is-active {
    background: var(--gold-muted);
}

/* ═══════════════════════════════════════════════════════
   WHATSAPP FLOATING
   ═══════════════════════════════════════════════════════ */
.whatsapp-float {
    position: fixed;
    bottom: var(--space-lg);
    right: var(--space-lg);
    z-index: 900;
    width: 56px;
    height: 56px;
    background: #25D366;
    border: none;
    /* Reset button border */
    cursor: pointer;
    /* Reset button cursor */
    padding: 0;
    /* Reset button padding */
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
    transition: all var(--duration-fast) var(--ease-out);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.45);
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
    fill: white;
}

/* ═══════════════════════════════════════════════════════
   PRICING — Premium Dark Section
   ═══════════════════════════════════════════════════════ */
.pricing-section {
    background: var(--deep-forest);
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(198, 168, 124, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.pricing-section__highlight {
    color: var(--accent);
    display: block;
    font-size: 1.15em;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: var(--space-xl);
    position: relative;
    z-index: 1;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.08);
    /* Slightly more visible */
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    /* Stronger border */
    border-radius: var(--radius-lg);
    padding: var(--space-2xl) var(--space-xl);
    position: relative;
    transition: all 0.4s var(--ease-out);
    text-align: center;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(198, 168, 124, 0.4);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
}

.pricing-card--featured {
    border: 1px solid var(--accent);
    /* Explicit border */
    background: linear-gradient(145deg, rgba(198, 168, 124, 0.15), rgba(198, 168, 124, 0.05));
    /* Richer gradient */
    box-shadow: 0 20px 50px rgba(198, 168, 124, 0.15);
    /* Golden glow */
}

.pricing-card__ribbon {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.15);
    color: var(--cream);
    padding: 5px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 1px solid rgba(255, 255, 255, 0.2);
    white-space: nowrap;
}

.pricing-card__ribbon.faq-item.is-active {
    background: var(--cream);
    box-shadow: var(--shadow-md);
    border-color: transparent;
    border-radius: var(--radius-md);
    /* Rounded corners when active/shadowed */
}

.pricing-card__ribbon--gold {
    background: var(--accent);
    color: var(--deep-forest);
    border-color: var(--accent);
    box-shadow: 0 4px 12px rgba(198, 168, 124, 0.4);
}

.pricing-card__label {
    font-family: var(--font-display);
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    /* Brighter label */
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: var(--space-sm);
    margin-top: var(--space-sm);
}

.pricing-card__price {
    font-family: var(--font-serif);
    font-size: 3.2rem;
    color: #ffffff;
    /* Was var(--cream), now pure white for contrast */
    font-weight: 300;
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    /* Added shadow for readability */
}

.pricing-card--featured .pricing-card__price {
    color: var(--accent);
    text-shadow: 0 0 20px rgba(198, 168, 124, 0.3);
    /* Glow on price */
}

.pricing-card__sub {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    /* Was 0.6, increased to 0.9 */
    margin-bottom: var(--space-lg);
}

.pricing-card__perks {
    margin: var(--space-lg) 0 var(--space-xl);
    text-align: left;
}

.pricing-card__perks li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    /* Brighter text */
    font-weight: 400;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.pricing-card__perks li::before {
    content: '✓';
    color: var(--accent);
    font-weight: 700;
    flex-shrink: 0;
}

.pricing-card__perks li:last-child {
    border: none;
}

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

    .pricing-card__price {
        font-size: 2.5rem;
    }
}

/* ═══════════════════════════════════════════════════════
   URGENCY — 3D Floating Card
   ═══════════════════════════════════════════════════════ */
.urgencia-wrapper {
    background: var(--cream);
    perspective: 1200px;
}

.urgencia-card {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(145deg, #c0392b 0%, #e74c3c 40%, #d63031 100%);
    border-radius: 24px;
    padding: var(--space-2xl) var(--space-xl);
    text-align: center;
    transform: rotateX(4deg) scale(0.96);
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow:
        0 30px 60px rgba(192, 57, 43, 0.25),
        0 15px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.urgencia-card.is-visible {
    transform: rotateX(0deg) scale(1);
    box-shadow:
        0 40px 80px rgba(192, 57, 43, 0.3),
        0 20px 40px rgba(0, 0, 0, 0.2);
}

.urgencia-card__glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    pointer-events: none;
    animation: urgencia-glow 4s ease-in-out infinite alternate;
}

@keyframes urgencia-glow {
    from {
        transform: translate(-10%, -10%);
    }

    to {
        transform: translate(10%, 10%);
    }
}

.urgencia-card__content {
    position: relative;
    z-index: 1;
}

.urgencia-card__title {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    color: white;
    margin-bottom: var(--space-sm);
    font-weight: 400;
}

.urgencia-card__title span {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 12px;
    border-radius: 8px;
    font-weight: 700;
}

.urgencia-card__text {
    color: rgba(255, 255, 255, 0.85);
    max-width: 500px;
    margin: 0 auto var(--space-lg);
    font-size: 0.95rem;
    line-height: 1.6;
}

.urgencia-card .countdown {
    margin-bottom: var(--space-lg);
}

.urgencia-card .countdown__item {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.urgencia-card__badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

.urgencia-card__badges span {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: white;
    font-weight: 600;
}

@media (max-width: 768px) {
    .urgencia-card {
        border-radius: 16px;
        padding: var(--space-xl) var(--space-md);
    }

    .urgencia-card__badges span {
        font-size: 0.75rem;
        padding: 4px 12px;
    }
}


.modal--gallery {
    padding: 0;
    background: rgba(15, 28, 21, 0.98);
}

.modal--gallery .modal__overlay {
    position: absolute;
    inset: 0;
    cursor: zoom-out;
}

.gallery-viewer {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.gallery-main {
    max-width: 90vw;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

.gallery-main img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.gallery-caption {
    font-family: var(--font-serif);
    font-size: var(--text-xl);
    color: var(--gold-muted);
    text-align: center;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
    backdrop-filter: blur(5px);
}

.gallery-nav:hover {
    background: var(--gold-muted);
    color: var(--bg-dark);
    border-color: var(--gold-muted);
}

.gallery-nav--prev {
    left: var(--space-xl);
}

.gallery-nav--next {
    right: var(--space-xl);
}

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

.gallery-close {
    position: absolute;
    top: var(--space-xl);
    right: var(--space-xl);
    background: none;
    border: none;
    color: white;
    font-size: 3rem;
    line-height: 1;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.gallery-close:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .gallery-nav {
        width: 44px;
        height: 44px;
        bottom: 5vh;
        top: auto;
        transform: none;
    }

    .gallery-nav--prev {
        left: 25%;
    }

    .gallery-nav--next {
        right: 25%;
    }

    .gallery-main {
        max-width: 95vw;
        max-height: 70vh;
    }

    .gallery-caption {
        font-size: var(--text-lg);
    }
}

/* ═══════════════════════════════════════════════════════
   REVEAL ANIMATIONS (GSAP-driven, CSS fallback)
   ═══════════════════════════════════════════════════════ */
/* 
   .reveal — GSAP drives opacity & transform via JS.
   We do NOT set opacity:0 in CSS to avoid invisible content
   if GSAP fails to load (CDN issues, file:// protocol).
   JavaScript adds the hidden state after confirming GSAP is ready.
*/
.reveal.is-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* 
   Performance Optimization for Smother Scroll 
   Hints browser to promote to compositor layer
*/
.reveal,
.amenity-item,
.pricing-card,
.depoimento-card,
.beneficio-glass,
.galeria-item {
    will-change: transform, opacity;
}

/* 
   Generic Card Hover Effect for Premium Feel 
   Only on non-touch devices to avoid sticky hover states
*/
@media (hover: hover) {

    .amenity-item:hover,
    .pricing-card:hover,
    .depoimento-card:hover,
    .beneficio-glass:hover,
    .faq-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */
@media (max-width: 991px) {
    :root {
        --space-section: 5rem;
    }

    .conceito-grid,
    .localizacao-split,
    .agendamento-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .conceito-content {
        padding-right: 0;
    }

    .galeria-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 45vw;
    }

    .galeria-item:nth-child(n) {
        grid-column: span 1;
        grid-row: span 1;
        border-radius: var(--radius-md) !important;
    }

    .galeria-item:nth-child(1),
    .galeria-item:nth-child(5),
    .galeria-item:nth-child(10) {
        grid-column: span 2;
        grid-row: span 1;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
        text-align: center;
    }

    .footer__heading {
        margin-bottom: var(--space-sm);
    }
}

@media (max-width: 640px) {

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

    .hero {
        height: auto;
        min-height: 100dvh;
        padding-top: 100px;
        padding-bottom: var(--space-xl);
    }

    .hero__content {
        padding: var(--space-xl) var(--gutter);
        text-align: center;
    }

    .hero__title {
        font-size: clamp(2rem, 10vw, 3.5rem);
        margin: 0 auto var(--space-md);
    }

    .hero__subtitle {
        font-size: var(--text-base);
        margin: 0 auto var(--space-xl);
    }

    .hero__ctas {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .hero__ctas .btn {
        width: 100%;
        max-width: 320px;
    }

    .hero__trust {
        flex-direction: column;
        align-items: center;
        gap: var(--space-sm);
    }
}

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    font-family: var(--font-sans);
    font-size: var(--text-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all var(--duration-fast) var(--ease-out);
    border: none;
    text-decoration: none;
}

.btn--large {
    padding: 1.25rem 2.5rem;
    font-size: var(--text-base);
}

.btn--primary {
    background: var(--gold-muted);
    color: var(--deep-forest);
}

.btn--primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn--secondary {
    background: transparent;
    border: 1px solid var(--gold-muted);
    color: var(--gold-muted);
}

.btn--secondary:hover {
    background: rgba(198, 168, 124, 0.1);
    color: var(--gold-light);
    border-color: var(--gold-light);
}

/* ─── Badge ─── */
.badge {
    display: inline-flex;
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    font-family: var(--font-sans);
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-md);
}

.badge--gold {
    background: rgba(198, 168, 124, 0.1);
    color: var(--gold-muted);
    border: 1px solid rgba(198, 168, 124, 0.3);
}

/* ─── Social Demand ─── */
.social-demand {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

.social-demand__card {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--gold-muted);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-full);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* ═══════════════════════════════════════════════════════
   BOTANICAL DECORATIVE ELEMENTS
   ═══════════════════════════════════════════════════════ */
.botanical-decor {
    position: absolute;
    pointer-events: none;
    z-index: 10;
    /* Bring succulents slightly more to the front but behind content */
    opacity: var(--succulent-opacity);
    width: var(--succulent-size);
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    transition: opacity var(--duration-slow) var(--ease-out);
}

.botanical-decor img {
    width: 100%;
    height: auto;
    display: block;
}

.botanical-decor--climbing-right {
    top: 10%;
    right: -100px;
    width: clamp(200px, 20vw, 400px);
    transform: rotate(-5deg);
}

.botanical-decor--climbing-left {
    top: 40%;
    left: -100px;
    width: clamp(200px, 20vw, 400px);
    transform: rotate(5deg) scaleX(-1);
}

.botanical-decor--cluster-bottom {
    bottom: -10%;
    right: -5%;
    width: clamp(300px, 35vw, 600px);
}

section {
    position: relative;
    overflow: hidden;
    /* Ensure botanicals are contained within page width but allow side overflow */
}

/* ═══════════════════════════════════════════════════════
   ADDITIONAL MODALS / POPUPS
   ═══════════════════════════════════════════════════════ */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 28, 21, 0.9);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--duration-base) var(--ease-out);
}

.modal.is-active {
    opacity: 1;
    visibility: visible;
}

.modal__content {
    background: rgba(15, 28, 21, 0.75);
    /* Glass Background */
    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(198, 168, 124, 0.3);
    /* Gold Tinted Border */
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.8), 0 0 20px rgba(198, 168, 124, 0.1);

    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    max-width: 520px;
    width: 95%;
    max-height: 95vh;
    /* Allow expand up to viewport edge without scroll */
    overflow: hidden;
    /* Never Scroll */
    position: relative;
    transform: translateY(20px);
    transition: transform var(--duration-base) var(--ease-spring);
}

.modal__content .form-field input {
    padding: 0.65rem;
    font-size: 0.95rem;
}

.modal__content .btn {
    padding: 0.85rem;
    font-size: 0.95rem;
}

/* Custom scrollbar for glassmodal hidden */
.modal__content::-webkit-scrollbar {
    display: none;
}

@media (max-width: 640px) {
    .modal__content {
        padding: var(--space-lg) var(--space-md);
        margin: auto;
    }
}

.modal.is-active .modal__content {
    transform: translateY(0);
}

.modal__close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 2rem;
    color: var(--cream);
    transition: color var(--duration-fast);
}

.modal__close:hover {
    color: var(--gold);
}

/* ─── Success Theme ─── */
.modal--success .modal__content {
    border-top: 4px solid #4CAF50;
    text-align: center;
}

/* ─── Micro Text ─── */
.btn-micro {
    display: block;
    text-align: center;
    font-size: var(--text-xs);
    color: var(--text-secondary);
    margin-top: var(--space-sm);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* ─── Valuation Comparison ─── */
.valuation-box {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--accent);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    margin-top: var(--space-2xl);
    text-align: center;
}

.valuation-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: var(--space-xl);
    margin-top: var(--space-lg);
}

.valuation-item {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.valuation-label {
    font-size: var(--text-xs);
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.valuation-price {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    color: var(--cream);
}

.valuation-arrow {
    font-size: 2rem;
    color: var(--accent);
}

.valuation-footer {
    margin-top: var(--space-lg);
    font-size: var(--text-sm);
    color: var(--accent);
    font-weight: 600;
}

/* ═══════════════════════════════════════════════════════
   LAYOUT REFINEMENTS - CONCEITO & OVERLAP
   ═══════════════════════════════════════════════════════ */

/* Section Overlap Manager */
.section--hero-overlap {
    margin-top: -180px;
    z-index: 10;
    position: relative;
}

.section--hero-overlap.section--compact {
    padding: var(--space-md) 0 var(--space-lg);
}

@media (max-width: 768px) {
    .section--hero-overlap {
        margin-top: -80px;
    }

    .section--hero-overlap.section--compact {
        padding: var(--space-sm) 0 var(--space-md);
    }
}

/* Conceito Section Split Layout */
.section--conceito {
    background: var(--bg-dark);
    padding: var(--space-3xl) 0;
    overflow: visible;
}

.container--split {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    align-items: center;
    gap: var(--space-3xl);
}

.conceito__visual {
    position: relative;
    padding: var(--space-xl);
}

.floating-botanic {
    width: 100%;
    max-width: 450px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
    position: relative;
    z-index: 2;
}

.conceito__frame {
    position: absolute;
    top: 0;
    right: 0;
    width: 70%;
    height: 90%;
    border: 1px solid var(--accent);
    border-radius: var(--radius-md);
    z-index: 1;
}

.conceito__title {
    font-size: var(--text-4xl);
    color: var(--cream);
    margin-bottom: var(--space-lg);
}

.conceito__text {
    font-size: var(--text-lg);
    color: rgba(242, 242, 237, 0.8);
    margin-bottom: var(--space-xl);
    line-height: 1.8;
}

@media (max-width: 1024px) {
    .container--split {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .conceito__visual {
        order: 2;
    }

    .conceito__frame {
        left: 15%;
        right: auto;
    }
}

/* ═══════════════════════════════════════════════════════
   PROVA REAL - CAROUSEL
   ═══════════════════════════════════════════════════════ */

.testimonials-carousel-wrapper {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: var(--space-2xl);
    align-items: stretch;
    margin-top: var(--space-2xl);
}

.vertical-image-slot {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 650px;
    border: 1px solid var(--accent);
}

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

.testimonials-carousel {
    display: flex;
    gap: var(--space-lg);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: var(--space-md) 0;
    scrollbar-width: none;
}

.testimonials-carousel::-webkit-scrollbar {
    display: none;
}

.testimonial-card-v2 {
    flex: 0 0 60%;
    scroll-snap-align: start;
    background: rgba(242, 242, 237, 0.03);
    border: 1px solid rgba(198, 168, 124, 0.1);
    padding: var(--space-xl);
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.testimonial-card-v2 .depoimento-stars {
    color: var(--accent);
    font-size: 0.9rem;
}

.testimonial-card-v2 .depoimento-text {
    font-size: 1.1rem;
    color: var(--cream);
    opacity: 0.9;
    font-style: italic;
}

.testimonial-v2-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.testimonial-v2-avatar {
    width: 40px;
    height: 40px;
    background: var(--accent);
    color: var(--deep-forest);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

@media (max-width: 1024px) {
    .testimonials-carousel-wrapper {
        grid-template-columns: 1fr;
    }

    .vertical-image-slot {
        height: 450px;
        order: 2;
    }

    .testimonial-card-v2 {
        flex: 0 0 85%;
    }
}

/* ═══════════════════════════════════════════════════════
   11. FOOTER EXTRA
   ═══════════════════════════════════════════════════════ */

/* Social Buttons */
.btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--cream);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.btn-social:hover {
    background: var(--gold);
    color: var(--deep-forest);
    transform: translateY(-2px);
    border-color: var(--gold);
}

.btn-social svg {
    width: 20px;
    height: 20px;
}

/* Footer Accordion (Mobile) */
.footer__heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: default;
}

.footer__chevron {
    display: none;
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {
    .footer__heading {
        cursor: pointer;
        margin-bottom: var(--space-xs);
        padding-block: var(--space-xs);
    }

    .footer__chevron {
        display: inline-block;
        transform: rotate(90deg);
    }

    .footer__heading.is-active .footer__chevron {
        transform: rotate(-90deg);
    }

    [data-accordion-content] {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: all 0.3s ease;
    }

    [data-accordion-content].is-active {
        max-height: 300px;
        opacity: 1;
        margin-bottom: var(--space-md);
    }
}

/* ═══════════════════════════════════════════════════════
   12. VIDEO SPLIT & IPHONE MOCKUP
   ═══════════════════════════════════════════════════════ */
.video-split {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-xl);
}

.video-split__content {
    flex: 1 1 400px;
}

.video-split__visual {
    flex: 1 1 350px;
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.video-features {
    list-style: none;
    padding: 0;
    margin-top: var(--space-md);
}

.video-features li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
    font-weight: 500;
    color: var(--text-main);
}

.video-feature-icon {
    font-size: 1.2rem;
}

/* iPhone Mockup */
.iphone-mockup {
    position: relative;
    width: 320px;
    height: 650px;
    border-radius: 50px;
    background: #000;
    box-shadow:
        inset 0 0 0 2px #555,
        inset 0 0 0 6px #000,
        0 30px 60px rgba(0, 0, 0, 0.3),
        0 10px 20px rgba(198, 168, 124, 0.2);
    padding: 12px;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    margin: 0 auto;
}

.iphone-screen {
    position: relative;
    width: 100%;
    height: 100%;
    background: #111;
    border-radius: 38px;
    overflow: hidden;
    z-index: 2;
}

.iphone-screen iframe {
    pointer-events: auto;
    z-index: 999;
}

/* Dynamic Island */
.dynamic-island {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 30px;
    background: #000;
    border-radius: 20px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 10px;
    gap: 8px;
    box-shadow: inset 0 0 2px rgba(255, 255, 255, 0.2);
    pointer-events: none;
    /* Let clicks pass through to video */
}

/* Glare Effect */
.iphone-glare {
    position: absolute;
    inset: 0;
    z-index: 20;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 40%);
    border-radius: 38px;
    pointer-events: none;
    /* CRITICAL: Let clicks pass through to video */
}

.dynamic-island .lens {
    width: 12px;
    height: 12px;
    background: #111;
    border-radius: 50%;
    box-shadow: inset 0 0 2px rgba(255, 255, 255, 0.4);
    position: relative;
}

.dynamic-island .lens::before {
    content: '';
    position: absolute;
    top: 3px;
    right: 3px;
    width: 3px;
    height: 3px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
}

.dynamic-island .sensor {
    width: 8px;
    height: 8px;
    background: #111;
    border-radius: 50%;
    opacity: 0.5;
}

/* Hardware Buttons */
.iphone-buttons .mute-button {
    position: absolute;
    top: 110px;
    left: -4px;
    width: 4px;
    height: 25px;
    background: #444;
    border-radius: 4px 0 0 4px;
}

.iphone-buttons .vol-up {
    position: absolute;
    top: 160px;
    left: -4px;
    width: 4px;
    height: 50px;
    background: #444;
    border-radius: 4px 0 0 4px;
}

.iphone-buttons .vol-down {
    position: absolute;
    top: 230px;
    left: -4px;
    width: 4px;
    height: 50px;
    background: #444;
    border-radius: 4px 0 0 4px;
}

.iphone-buttons .power-button {
    position: absolute;
    top: 180px;
    right: -4px;
    width: 4px;
    height: 70px;
    background: #444;
    border-radius: 0 4px 4px 0;
}

/* Screen Glare */
.iphone-glare {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.4) 0%,
            rgba(255, 255, 255, 0.1) 30%,
            rgba(255, 255, 255, 0) 50%,
            rgba(255, 255, 255, 0) 100%);
    z-index: 15;
    pointer-events: none;
    border-radius: 50px;
    mix-blend-mode: overlay;
}

/* Copy Visibility Classes */
.video-copy-mobile {
    display: none;
}

.video-copy-desktop {
    display: block;
}

/* Float floating animation */
.floating-animation {
    animation: floatPhone 6s ease-in-out infinite;
    transform-origin: center center;
}

@keyframes floatPhone {
    0% {
        transform: translateY(0) rotateX(10deg) rotateY(-15deg);
    }

    50% {
        transform: translateY(-20px) rotateX(5deg) rotateY(-5deg);
    }

    100% {
        transform: translateY(0) rotateX(10deg) rotateY(-15deg);
    }
}

@media (max-width: 991px) {
    .video-copy-mobile {
        display: block;
        text-align: center;
        margin-bottom: 5px;
        /* Reduzido em aprox 15px do antigo var(--space-sm) de 16px */
    }

    .video-copy-mobile .section-title {
        text-align: center !important;
        margin-inline: auto !important;
    }

    .video-copy-mobile .section-description {
        text-align: center !important;
        margin-inline: auto !important;
    }

    .video-copy-desktop {
        display: none;
    }

    .video-split {
        flex-direction: column;
    }

    .video-split__content {
        text-align: center;
    }

    .video-split__content .section-title,
    .video-split__content .section-description {
        text-align: center !important;
        margin-inline: auto !important;
    }

    .video-features {
        display: inline-flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    /* ================================================
       MOBILE: Esconde o mockup, mostra o player limpo
       ================================================ */
    .video-mockup-desktop {
        display: none !important;
    }

    .video-mobile-clean {
        display: block !important;
        width: 100% !important;
        max-width: 350px !important;
        margin: 0 auto !important;
    }

    .video-mobile-clean__wrapper {
        position: relative;
        width: 100%;
        padding-bottom: 177.78%;
        /* Formato 9:16 (Shorts) */
        height: 0;
        overflow: hidden;
        border-radius: 24px;
        background: #000;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4),
            0 5px 15px rgba(198, 168, 124, 0.15);
        border: 3px solid #222;
    }

    .video-mobile-clean__wrapper iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
    }

    .video-standard-mobile {
        display: none !important;
    }

    .video-split__visual {
        display: flex !important;
        justify-content: center !important;
        width: 100% !important;
        perspective: none !important;
        flex: none !important;
    }
}

/* Player mobile: escondido por padrão (mostrado só no mobile acima) */
.video-mobile-clean {
    display: none;
}

/* Regras para Desktop */
@media (min-width: 992px) {
    .video-mockup-desktop {
        display: block !important;
    }

    .video-mobile-clean {
        display: none !important;
    }
}