/* ============================================
   RECANTO NEIVA — Styles
   Rustic Elegant / Modern Farm
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
    --green-dark: #2f4f2f;
    --green-mid: #3d6b3d;
    --green-light: #6b8e23;
    --green-pale: #e8f0dc;
    --beige: #f5f5dc;
    --cream: #faf8f0;
    --white: #ffffff;
    --brown: #8b6f47;
    --brown-dark: #5c4a2a;
    --brown-light: #c4a96a;
    --text-dark: #2c2c2c;
    --text-body: #4a4a4a;
    --text-muted: #7a7a7a;
    --gold: #c4a35a;
    --gold-light: #e8d5a0;
    --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,.12);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition: .3s cubic-bezier(.4,0,.2,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Lato', sans-serif;
    color: var(--text-body);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 { font-family: 'Playfair Display', serif; color: var(--green-dark); line-height: 1.25; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 600; }
p { margin-bottom: 1rem; }

/* ---------- Layout ---------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 3rem 0; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header .badge {
    display: inline-block;
    background: var(--green-pale);
    color: var(--green-dark);
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: .4rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}
.section-header h2 { margin-bottom: .75rem; }
.section-header p { color: var(--text-muted); max-width: 650px; margin: 0 auto; font-size: 1.05rem; }

/* Spacing Utilities */
.pt-0 { padding-top: 0 !important; }
.pb-0 { padding-bottom: 0 !important; }
.py-reduced { padding-top: 4rem !important; padding-bottom: 4rem !important; }
.section-divider {
    border: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--green-mid), transparent);
    margin: 4rem auto;
    max-width: 80%;
    opacity: 0.2;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .85rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: .95rem;
    transition: var(--transition);
    letter-spacing: .02em;
}
.btn-primary { background: var(--green-dark); color: var(--white); }
.btn-primary:hover { background: var(--green-mid); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-whatsapp { background: #25d366; color: var(--white); }
.btn-whatsapp:hover { background: #1ebe57; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--green-dark); border: 2px solid var(--green-dark); }
.btn-outline:hover { background: var(--green-dark); color: var(--white); transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: var(--brown); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.05rem; }

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 248, 240, .92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(47, 79, 47, .08);
    transition: var(--transition);
}
.header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}
.logo-link { display: flex; align-items: center; gap: .6rem; }
.logo-icon {
    width: 42px;
    height: 42px;
    background: var(--green-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo-icon svg { width: 24px; height: 24px; fill: var(--white); }
.logo-text { font-family: 'Playfair Display', serif; font-size: 1.35rem; font-weight: 700; color: var(--green-dark); line-height: 1.1; }
.logo-text span { display: block; font-size: .75rem; font-weight: 400; color: var(--text-muted); letter-spacing: .06em; }

.nav-list { display: flex; align-items: center; gap: 2rem; }
.nav-link {
    font-size: .9rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: var(--transition);
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--green-light);
    transition: var(--transition);
}
.nav-link:hover { color: var(--green-dark); }
.nav-link:hover::after { width: 100%; }

.header-cta {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--green-dark);
    color: var(--white);
    padding: .65rem 1.5rem;
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 700;
    transition: var(--transition);
}
.header-cta:hover { background: var(--green-mid); transform: translateY(-1px); }

/* Social Icons */
.social-links { display: flex; align-items: center; gap: 1rem; }
.social-icon {
    color: var(--green-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.social-icon svg { width: 22px; height: 22px; }
.social-icon:hover { color: var(--green-light); transform: translateY(-2px); }

/* Mobile menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 0;
    z-index: 1600; /* Garantir que o botão (X quando ativo) fique acima do menu */
    position: relative;
}
.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2.5px;
    background: var(--green-dark);
    border-radius: 4px;
    transition: var(--transition);
}
.mobile-menu-btn.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(47,79,47,.75) 0%, rgba(47,79,47,.4) 50%, rgba(0,0,0,.2) 100%);
}
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: -1;
}
.hero-slide.active {
    opacity: 1;
    z-index: 0;
}
.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    min-height: calc(100vh - 80px);
    padding: 2rem 0; /* Reduced from 4rem */
}
.hero-text { max-width: 650px; }
.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(8px);
    color: var(--white);
    font-size: .85rem;
    font-weight: 600;
    padding: .5rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255,255,255,.2);
}
.hero-title {
    color: var(--white);
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    margin-bottom: 1.2rem;
    text-shadow: 0 2px 20px rgba(0,0,0,.2);
}
.hero-subtitle {
    color: rgba(255,255,255,.9);
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    margin-bottom: 2.5rem;
    max-width: 520px;
    line-height: 1.8;
}
.hero-buttons { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-buttons .btn-primary { background: var(--gold); }
.hero-buttons .btn-primary:hover { background: var(--brown); }
.hero-buttons .btn-outline { color: var(--white); border-color: rgba(255,255,255,.5); }
.hero-buttons .btn-outline:hover { background: rgba(255,255,255,.15); border-color: var(--white); color: var(--white); }

/* ============================================
   PROMO SECTION
   ============================================ */
.promo {
    background: var(--green-pale); /* Verde mais claro para contraste */
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}
.promo::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,.03);
    border-radius: 50%;
}
.promo-inner {
    display: flex;
    align-items: center;
    gap: 3rem;
    position: relative;
    z-index: 1;
}
.promo-content { flex: 1; color: var(--green-dark); }
.promo-content h2 { color: var(--green-dark); font-size: 1.8rem; margin-bottom: .5rem; }
.promo-content .promo-sub { color: var(--brown); font-weight: 600; margin-bottom: 1rem; font-size: 1.05rem; }
.promo-content p { color: var(--text-body); }
.promo-badge-area { text-align: center; flex-shrink: 0; }
.promo-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    background: var(--gold);
    border-radius: 50%;
    color: var(--white);
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(196,163,90,.4);
}
.promo-badge .promo-badge-icon { font-size: 1.8rem; margin-bottom: .2rem; }
.promo-badge .promo-badge-text { font-size: .7rem; text-transform: uppercase; letter-spacing: .08em; text-align: center; line-height: 1.2; }
.promo-items {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-top: 1rem;
}
.promo-items span {
    background: rgba(255,255,255,.12);
    padding: .35rem 1rem;
    border-radius: 50px;
    font-size: .85rem;
    color: var(--white);
}
.promo-copy {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,.15);
    color: rgba(255,255,255,.7);
    font-style: italic;
    font-size: .95rem;
}
/* Opcionais Promo Box (Floating Style) */
.opcional-promo {
    background: var(--white);
    border: 2px dashed var(--green-mid);
    border-radius: var(--radius-lg);
    padding: 1rem 2.5rem; /* Thinner padding */
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
    margin-top: -40px; /* Reduced negative margin to clear buttons */
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    position: relative;
    z-index: 100;
}
.opcional-promo::before {
    content: 'Destaque';
    position: absolute;
    top: -12px;
    left: 20px;
    background: var(--gold);
    color: var(--white);
    font-size: .75rem;
    font-weight: 700;
    padding: .25rem .8rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: .05em;
}
.opcional-promo .promo-icon {
    font-size: 3rem;
    flex-shrink: 0;
}
.opcional-promo .promo-text h3 {
    margin-bottom: 0.4rem;
    color: var(--green-dark);
}
.opcional-promo .promo-text p {
    margin-bottom: 0;
    color: var(--text-body);
}

@media (max-width: 768px) {
    .opcional-promo {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        gap: 1.2rem;
        margin-top: 2rem; /* Remove negative margin on mobile to avoid overlap */
        margin-bottom: 3rem; /* Space before next section */
    }
    .opcional-promo .promo-icon { font-size: 2.5rem; }
    .opcional-promo::before { left: 50%; transform: translateX(-50%); }
}

/* ============================================
   ABOUT
   ============================================ */
.about { 
    position: relative;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url('images/about-parallax.png');
    padding: 8rem 0;
    overflow: hidden;
}
.about::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(250, 248, 240, 0.88);
    z-index: 1;
}
.about .container {
    position: relative;
    z-index: 2;
}
.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
}
.about-image-wrapper { position: relative; }
.about-image-wrapper img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}
.about-image-badge {
    display: none; /* Removed in favor of unified floating-badge system */
}

/* Floating Badges System */
.floating-badge {
    position: absolute;
    background: var(--white);
    color: var(--green-dark);
    padding: .6rem 1.1rem;
    border-radius: 50px;
    font-size: .82rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: .5rem;
    box-shadow: var(--shadow-md);
    white-space: nowrap;
    z-index: 10;
    transition: var(--transition);
    border: 1px solid rgba(47, 79, 47, 0.1);
}
.floating-badge:hover {
    transform: translateY(-5px) scale(1.05) !important;
    box-shadow: var(--shadow-lg);
    background: var(--green-pale);
    z-index: 20;
}
.floating-badge svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2.2; }

/* Specific Positions & Animations */
.badge-conforto { top: 25%; left: -45px; animation: float 3s ease-in-out infinite; }
.badge-privacidade { top: -25px; left: 20%; animation: float 3.2s ease-in-out infinite .2s; }
.badge-exclusividade { top: 25%; right: -45px; animation: float 3.5s ease-in-out infinite .4s; }
.badge-natureza { bottom: -25px; left: 10%; animation: float 4s ease-in-out infinite .6s; }
.badge-aconchego { top: -25px; right: 20%; animation: float 3.2s ease-in-out infinite .8s; }
.badge-seguranca { bottom: -25px; right: 10%; animation: float 3.8s ease-in-out infinite 1s; }
.badge-lazer { bottom: -25px; left: 50%; transform: translateX(-50%); animation: float-center 4.2s ease-in-out infinite 1.2s; }
.badge-espaco { top: 65%; left: -45px; animation: float 3.6s ease-in-out infinite 1.4s; }
.badge-diversao { top: 65%; right: -45px; animation: float 3.9s ease-in-out infinite 1.6s; }

@keyframes float-center {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, -10px); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@media (max-width: 992px) {
    .floating-badge { font-size: .75rem; padding: .5rem .9rem; }
    .badge-privacidade { left: 0; }
    .badge-exclusividade { right: 0; }
    .badge-natureza { left: -10px; }
    .badge-lazer { left: -20px; }
}
.about-text h2 { margin-bottom: 1.5rem; }
.about-text p { color: var(--text-body); font-size: 1.05rem; }
.about-link {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: var(--green-dark);
    font-weight: 700;
    margin-top: 1rem;
    transition: var(--transition);
}
.about-link:hover { color: var(--green-light); gap: .8rem; }

/* ============================================
   DIFERENCIAIS
   ============================================ */
.diferenciais { background: var(--white); }
.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.diferencial-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    border-radius: var(--radius-md);
    background: var(--cream);
    border: 1px solid rgba(47,79,47,.06);
    transition: var(--transition);
}
.diferencial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--green-light);
}
.diferencial-icon {
    width: 64px;
    height: 64px;
    background: var(--green-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
}
.diferencial-icon svg { width: 28px; height: 28px; stroke: var(--green-dark); fill: none; stroke-width: 2; }
.diferencial-card h3 { margin-bottom: .5rem; font-size: 1.1rem; }
.diferencial-card p { color: var(--text-muted); font-size: .9rem; margin-bottom: 0; }

/* ============================================
   ESTRUTURA
   ============================================ */
.estrutura { background: var(--beige); }
.estrutura-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.estrutura-cards { display: grid; gap: 1.5rem; }
.estrutura-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    transition: var(--transition);
}
.estrutura-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.estrutura-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--green-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.estrutura-card-icon svg { width: 24px; height: 24px; stroke: var(--green-dark); fill: none; stroke-width: 2; }
.estrutura-card h3 { font-size: 1.1rem; margin-bottom: .3rem; }
.estrutura-card p { color: var(--text-muted); font-size: .9rem; margin-bottom: 0; }
.estrutura-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    aspect-ratio: 16/9;
    object-fit: cover;
    width: 100%;
}
.estrutura-thumbs {
    display: flex;
    gap: .75rem;
    margin-top: 1rem;
}
.estrutura-thumb {
    width: 80px;
    height: 60px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    opacity: .6;
}
.estrutura-thumb:hover { opacity: 1; }
.estrutura-thumb.active { border-color: var(--green-light); opacity: 1; }
.estrutura-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================
   EXPERIENCIAS
   ============================================ */
.experiencias { background: var(--white); }
.exp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.exp-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    aspect-ratio: 4/5;
}
.exp-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.exp-card img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.exp-card:hover img { transform: scale(1.05); }
.exp-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(47,79,47,.85) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem 1.5rem;
    color: var(--white);
}
.exp-card-overlay h3 { color: var(--white); font-size: 1.3rem; margin-bottom: .3rem; }
.exp-card-overlay p { color: rgba(255,255,255,.8); font-size: .9rem; margin-bottom: 0; }

/* Section Sliders */
.section-slider {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    margin-bottom: 3rem;
    background: var(--cream);
    box-shadow: var(--shadow-sm);
}
.slider-container {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.slider-slide {
    min-width: 100%;
    aspect-ratio: 16/9;
}
.slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.slider-nav {
    position: absolute;
    top: 50%;
    left: 1rem;
    right: 1rem;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}
.slider-btn {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-dark);
    pointer-events: auto;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.slider-btn:hover { background: var(--white); transform: scale(1.1); }
.slider-content { padding: 2rem; }
.slider-content h3 { margin-bottom: .75rem; }
.slider-content p { color: var(--text-body); font-size: 1.05rem; line-height: 1.8; }

/* ============================================
   EVENTOS
   ============================================ */
.eventos { background: var(--cream); }
.eventos-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
}
.eventos-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.eventos-image img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.eventos-text h2 { margin-bottom: 1rem; }
.eventos-text p { font-size: 1.05rem; color: var(--text-body); }

/* ============================================
   OPCIONAIS
   ============================================ */
.opcionais { background: var(--white); }
.opcionais-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.opcional-card {
    background: var(--cream);
    border-radius: var(--radius-md);
    padding: 1.8rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    border: 1px solid rgba(47,79,47,.06);
    transition: var(--transition);
}
.opcional-card:hover { border-color: var(--green-light); box-shadow: var(--shadow-sm); }
.opcional-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-pale);
    border-radius: 12px;
}
.opcional-card h3 { font-size: 1rem; margin-bottom: .3rem; }
.opcional-card p { color: var(--text-muted); font-size: .9rem; margin-bottom: 0; }

/* ============================================
   PRODUTOS
   ============================================ */
.produtos { background: var(--beige); }
.produtos-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}
.produto-tag {
    background: var(--white);
    padding: .7rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: .9rem;
    color: var(--green-dark);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: .5rem;
    transition: var(--transition);
}
.produto-tag:hover { background: var(--green-dark); color: var(--white); }

/* ============================================
   SUPORTE
   ============================================ */
.suporte { background: var(--white); }
.suporte-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.suporte-content h2 { margin-bottom: 1rem; }
.suporte-content p { font-size: 1.05rem; }
.suporte-visual {
    background: var(--green-pale);
    border-radius: var(--radius-lg);
    padding: 3rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.suporte-visual svg { width: 64px; height: 64px; stroke: var(--green-dark); fill: none; stroke-width: 1.5; }
.suporte-visual p { color: var(--green-dark); font-weight: 600; font-size: 1.1rem; margin-bottom: 0; }

/* ============================================
   LOCALIZAÇÃO
   ============================================ */
.localizacao { background: var(--cream); }
.localizacao-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.localizacao-map {
    width: 100%;
    height: 350px;
    background: var(--beige);
}
.localizacao-map iframe { width: 100%; height: 100%; border: 0; }
.localizacao-info {
    padding: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
.localizacao-text h3 { margin-bottom: .3rem; }
.localizacao-text p { color: var(--text-muted); margin-bottom: 0; }

/* ============================================
   CTA FINAL
   ============================================ */
.cta-final {
    background: linear-gradient(135deg, var(--green-dark) 0%, #1a3a1a 100%);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-final::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23faf8f0' fill-opacity='0.05' d='M0,224L80,213.3C160,203,320,181,480,181.3C640,181,800,203,960,208C1120,213,1280,203,1360,197.3L1440,192L1440,320L1360,320C1280,320,1120,320,960,320C800,320,640,320,480,320C320,320,160,320,80,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") no-repeat bottom center/cover;
}
.cta-final h2 { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
.cta-final p { color: rgba(255,255,255,.8); font-size: 1.15rem; margin-bottom: 2.5rem; max-width: 550px; margin-left: auto; margin-right: auto; }
.cta-final .cta-buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; position: relative; z-index: 1; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--green-dark);
    color: rgba(255,255,255,.75);
    padding: 4rem 0 2rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer-brand p { margin-top: 1rem; font-size: .9rem; line-height: 1.7; }
.footer h4 {
    color: var(--white);
    font-family: 'Lato', sans-serif;
    font-size: .9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 1.2rem;
}
.footer-links li { margin-bottom: .6rem; }
.footer-links a { font-size: .9rem; transition: var(--transition); }
.footer-links a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-contact p { font-size: .9rem; margin-bottom: .5rem; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: .85rem;
}
.footer-logo-text { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--white); font-weight: 700; }
.footer-logo-text span { display: block; font-size: .7rem; font-weight: 400; color: rgba(255,255,255,.5); }

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,.35);
    transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,.5); }
.whatsapp-float svg { fill: var(--white); width: 30px; height: 30px; }
.whatsapp-pulse {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid #25d366;
    animation: waPulse 2s ease-out infinite;
}
@keyframes waPulse {
    0% { transform: scale(1); opacity: .6; }
    100% { transform: scale(1.4); opacity: 0; }
}

/* ============================================
   INTERNAL PAGES — COMMON
   ============================================ */
.page-hero {
    position: relative;
    padding: 12rem 0 6rem;
    text-align: center;
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
    color: var(--white);
    overflow: hidden;
}
.page-hero.parallax-hero {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.page-hero.parallax-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(47,79,47,0.8) 0%, rgba(47,79,47,0.4) 100%);
    z-index: 1;
}
.page-hero .container {
    position: relative;
    z-index: 2;
}
.page-hero h1 { color: var(--white); margin-bottom: .5rem; font-size: 3.5rem; text-shadow: 0 2px 10px rgba(0,0,0,0.3); }
.page-hero p { color: rgba(255,255,255,.9); font-size: 1.2rem; text-shadow: 0 2px 5px rgba(0,0,0,0.2); }
.page-content { padding: 4rem 0; }
.page-content p { font-size: 1.05rem; line-height: 1.8; }

/* ============================================
   INTERACTIVE SWITCHER BANNER (DEFINITIVO)
   ============================================ */
.interactive-banner {
    position: relative;
    padding: 2rem 0 1.5rem; /* Reduced from 4rem 0 3rem */
    overflow: visible;
    transition: background 0.4s ease;
    min-height: 400px; 
    max-height: 500px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    z-index: 10;
}

/* Background states (Full Width) */
.interactive-banner.bg-white { background: #fafafa; }
.interactive-banner.bg-yellow { background: #fffde7; }
.interactive-banner.bg-green { background: #f1f8e9; }

.banner-controls-wrapper {
    position: relative;
    z-index: 30;
    margin-bottom: 2.5rem;
}

.banner-controls {
    display: flex;
    justify-content: flex-start; /* Alinhado à esquerda */
    gap: 1.2rem;
}

.banner-tab {
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    background: var(--green-dark); /* Botão Real - Verde */
    color: var(--white);
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(47,79,47,0.2);
    white-space: nowrap;
}

.banner-tab:hover {
    transform: scale(1.05);
    background: #1e331e; /* Verde mais escuro no hover */
    box-shadow: 0 6px 20px rgba(47,79,47,0.3);
}

.banner-tab.active {
    background: #152515; /* Estado Ativo - Ainda mais escuro / Invertido */
    transform: scale(1.05);
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.2);
}

.banner-container-relative {
    position: relative;
    width: 100%;
}

.banner-content-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.banner-text-side {
    display: none;
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    text-align: left;
    max-width: 550px;
    z-index: 15;
}

.banner-text-side.active { 
    display: block;
    opacity: 1; 
    transform: translateX(0); 
}

.banner-text-side h2 { font-size: 3rem; margin-bottom: 1rem; line-height: 1.1; color: var(--green-dark); }
.banner-text-side p { font-size: 1.15rem; margin-bottom: 2rem; color: var(--text-body); line-height: 1.6; }

.banner-image-side {
    position: absolute;
    right: 0;
    top: -120px; /* Sobreposição Ampliada (Invade seção de cima) */
    width: 450px;
    height: 130%; 
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 25;
}

.floating-cutout {
    position: absolute;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 25px 50px rgba(0,0,0,0.15));
    animation: floating 4s ease-in-out infinite;
    opacity: 0;
    transform: scale(0.9);
    transition: 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.floating-cutout.active { 
    opacity: 1; 
    transform: scale(1); 
}

/* ============================================
   STORIES GALLERY
   ============================================ */
.stories-section {
    background: #fdfdfd;
    padding: 4rem 0;
}

.stories-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-top: 2rem;
}

.stories-track {
    display: flex;
    gap: 1.5rem;
    padding: 1rem 1.5rem;
    animation: scrollStories 40s linear infinite;
    width: max-content;
}

.stories-track:hover {
    animation-play-state: paused;
}

@keyframes scrollStories {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.story-card {
    flex: 0 0 220px;
    aspect-ratio: 9/16;
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.story-card:hover {
    transform: translateY(-10px) scale(1.02);
}

.story-preview {
    width: 100%;
    height: 100%;
    position: relative;
}

.story-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.3);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.story-play svg { width: 25px; height: 25px; fill: white; }

.story-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 1.5rem 1rem 1rem;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(47, 79, 47, 0.6); /* Verde musgo transparente */
    z-index: 2000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.video-modal.active {
    display: flex;
}

.modal-content {
    width: 90%;
    max-width: 450px;
    aspect-ratio: 9/16;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-modal {
    position: absolute;
    top: -50px;
    right: 0;
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

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

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
    z-index: 2010;
}

.modal-nav:hover { background: rgba(255,255,255,0.4); }

.prev-video { left: -70px; }
.next-video { right: -70px; }

@media (max-width: 600px) {
    .prev-video { left: 10px; }
    .next-video { right: 10px; }
    .modal-nav { width: 40px; height: 40px; font-size: 1.5rem; background: rgba(0,0,0,0.3); }
}

.video-container {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    background: #000;
}

.video-container iframe {
    width: 100%;
    height: 100%;
}

@media (max-width: 1024px) {
    .banner-controls-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 0.5rem;
    }
    .banner-controls {
        justify-content: flex-start;
        width: max-content;
        padding: 0 1rem;
    }
    .interactive-banner { padding: 8rem 0 3rem; max-height: none; min-height: auto; }
    .banner-content-inner { flex-direction: column; text-align: center; }
    .banner-text-side { text-align: center; margin: 0 auto; }
    .banner-image-side { 
        position: relative; 
        top: 2rem; 
        right: auto; 
        width: 300px; 
        height: 300px; 
        margin-top: 2rem;
        z-index: 5;
    }
}
.floating-cutout.active { opacity: 1; transform: scale(1); }

@keyframes floating {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.02); }
}

/* ============================================
   TESTIMONIALS CAROUSEL
   ============================================ */
.testimonials-section {
    padding: 6rem 0;
    background: var(--white);
    overflow: hidden;
}
.testimonials-track {
    display: flex;
    gap: 2.5rem;
    padding: 2rem 0;
    width: max-content;
    animation: scroll 40s linear infinite;
}
.testimonials-track:hover { animation-play-state: paused; }

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.testimonial-card {
    width: 350px;
    background: var(--cream);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
    border: 1px solid rgba(47,79,47,.05);
}
.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.testimonial-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--white);
    box-shadow: var(--shadow-sm);
}
.testimonial-info h4 { margin: 0; font-size: 1.1rem; }
.testimonial-stars { color: var(--gold); font-size: .8rem; }

.testimonial-text {
    font-style: italic;
    color: var(--text-dark);
    font-size: .95rem;
    line-height: 1.6;
}

.testimonials-footer {
    text-align: center;
    margin-top: 3rem;
}
.testimonials-link {
    font-weight: 700;
    color: var(--green-dark);
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    transition: var(--transition);
}
.testimonials-link:hover { gap: .8rem; color: var(--green-light); }

/* Gallery grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}
.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.gallery-item:hover img { transform: scale(1.05); }

/* Gallery with Row Titles */
.gallery-row { margin-bottom: 4rem; }
.gallery-row-title {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
    border-left: 4px solid var(--green-light);
    font-size: 1.5rem;
}
.gallery-3x3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}
.lightbox.active { display: flex; animation: fadeIn .3s ease; }
.lightbox-content {
    max-width: 90%;
    max-height: 85vh;
    border-radius: var(--radius-sm);
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
}
.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    color: var(--white);
    font-size: 2.5rem;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* Contact form */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.contact-form { background: var(--white); padding: 2.5rem; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-weight: 600; font-size: .9rem; color: var(--text-dark); margin-bottom: .4rem; }
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: .85rem 1rem;
    border: 2px solid rgba(47,79,47,.12);
    border-radius: var(--radius-sm);
    font-size: .95rem;
    transition: var(--transition);
    background: var(--cream);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--green-light);
    box-shadow: 0 0 0 3px rgba(107,142,35,.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.btn-full { width: 100%; justify-content: center; }

/* Structure Page Items */
.structure-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 5rem;
}
.structure-item:nth-child(even) { direction: rtl; }
.structure-item:nth-child(even) .structure-item-content { direction: ltr; }
.structure-item-visual { aspect-ratio: 16/9; position: relative; }
.structure-item-visual img { width: 100%; height: 100%; object-fit: cover; }
.structure-item-content { padding: 3rem; }
.structure-item-content h2 { margin-bottom: 1.5rem; font-size: 2.2rem; }
.structure-item-content p { font-size: 1.15rem; color: var(--text-body); margin-bottom: 1.5rem; }
.structure-item-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}
.structure-item-feature {
    display: flex;
    align-items: center;
    gap: .75rem;
    font-weight: 600;
    color: var(--green-dark);
    background: var(--green-pale);
    padding: .75rem 1rem;
    border-radius: var(--radius-sm);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .about-grid,
    .estrutura-grid,
    .eventos-content,
    .suporte-inner,
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .diferenciais-grid,
    .opcionais-grid,
    .gallery-3x3 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .section { padding: 3.5rem 0; }
    .nav-list, .header-cta { display: none; }
    .mobile-menu-btn { display: flex; }

    /* Banner Tabs Mobile */
    .banner-controls {
        gap: 0.4rem;
        padding: 0 0.4rem;
        justify-content: center;
        width: 100%;
    }
    .banner-tab {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }
    
    /* Mobile nav expanded */
    .main-nav.active {
        display: block;
        position: fixed;
        top: 0; /* Começar do topo absoluto */
        left: 0;
        right: 0;
        height: 100vh; /* Altura total da tela */
        background: var(--cream);
        z-index: 1500; /* Acima de tudo */
        overflow-y: auto;
        padding: 6rem 2rem 2rem; /* Espaço para o botão fechar */
        animation: slideDown .3s ease;
    }
    .main-nav.active .nav-list {
        display: flex;
        flex-direction: column;
        gap: 0;
        align-items: center; /* Centralizar itens no mobile */
    }
    .main-nav.active .nav-link {
        display: block;
        padding: 1.5rem 0;
        font-size: 1.4rem; /* Texto maior no mobile */
        border-bottom: 1px solid rgba(47,79,47,.08);
        width: 100%;
        text-align: center;
    }
    .diferenciais-grid,
    .opcionais-grid,
    .gallery-3x3 { grid-template-columns: 1fr; }
    .main-nav.active .nav-link::after { display: none; }
    .main-nav.active + .header-cta-mobile {
        display: block;
    }

    .hero { min-height: auto; padding-top: 100px; }
    .hero-content { min-height: auto; padding: 2rem 1.5rem; text-align: center; }
    .hero-text { max-width: 100%; margin: 0 auto; }
    .hero-buttons { 
        flex-direction: column; 
        align-items: center; 
        gap: 0.8rem; 
    }
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px; /* Botões menores no centro */
        justify-content: center;
    }
    .interactive-banner { padding: 1.5rem 0; }
    .promo-inner { flex-direction: column; text-align: center; }
    .about-grid { grid-template-columns: 1fr; gap: 4rem; }
    .about-image-wrapper { margin: 2rem 0; padding: 0 2rem; position: relative; }
    
    .floating-badge { font-size: .72rem; padding: .4rem .8rem; gap: .3rem; }
    .floating-badge svg { width: 14px; height: 14px; }

    .badge-conforto { left: -10px; top: 15%; }
    .badge-privacidade { left: 5%; top: -20px; }
    .badge-exclusividade { right: -15px; top: 15%; }
    .badge-natureza { left: -10px; bottom: -15px; }
    .badge-aconchego { right: 5%; top: -20px; }
    .badge-seguranca { right: -10px; bottom: -15px; }
    .badge-lazer { bottom: -20px; left: 50%; transform: translateX(-50%); }
    .badge-espaco { left: -20px; top: 75%; }
    .badge-diversao { right: -20px; top: 75%; }

    .exp-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; gap: .5rem; }
    .localizacao-info { flex-direction: column; text-align: center; }
    .localizacao-info .contact-links {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.2rem !important;
        margin-left: 0 !important;
        margin-top: 1.5rem !important;
    }
    .localizacao-info .contact-links .btn {
        width: 100% !important;
        margin-left: 0 !important;
        justify-content: center;
    }

    .cta-banner-buttons,
    .cta-buttons {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.2rem !important;
        width: 100% !important;
    }
    .cta-banner-buttons .btn,
    .cta-buttons .btn {
        width: 100% !important;
        justify-content: center;
    }

    .cta-final h2 { font-size: 1.8rem; }
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ---------- Animations ---------- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity .6s ease, transform .6s ease;
}
.fade-in-left.visible { opacity: 1; transform: translateX(0); }
.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity .6s ease, transform .6s ease;
}
.fade-in-right.visible { opacity: 1; transform: translateX(0); }
