/* ============================================================
   PORQUINHO DA ÍNDIA CLUBE DE FESTAS
   Design Premium — Três Lagoas / MS
   ============================================================ */

/* ===== VARIÁVEIS ===== */
:root {
    --primary:       #5D3A1A;
    --primary-light:  #8B5E3C;
    --accent:        #E8853D;
    --accent-light:  #F5A623;
    --caramelo:      #D4915E;
    --cream:         #FFF8F0;
    --cream-dark:    #FFF0D6;
    --green:         #4CAF50;
    --green-dark:    #388E3C;
    --white:         #FFFFFF;
    --text:          #333333;
    --text-light:    #666666;
    --dark:          #1a1a1a;
    --shadow-sm:     0 2px 10px rgba(0,0,0,.06);
    --shadow:        0 4px 24px rgba(93,58,26,.12);
    --shadow-lg:     0 12px 40px rgba(93,58,26,.18);
    --shadow-xl:     0 20px 60px rgba(0,0,0,.15);
    --radius:        16px;
    --radius-lg:     24px;
    --radius-xl:     32px;
    --transition:    .35s cubic-bezier(.4,0,.2,1);
    --font-heading:  'Fredoka One', cursive;
    --font-body:     'Nunito', sans-serif;
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--cream);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.2; }
a { text-decoration: none; color: inherit; }
img, video { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* ===== UTILITÁRIOS ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* Scroll Reveal — state antes da animação */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .7s ease, transform .7s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* ===== NAVBAR ===== */
.navbar {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    background: rgba(93,58,26,.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255,255,255,.06);
    transition: var(--transition);
}
.navbar.scrolled {
    background: rgba(44,26,10,.97);
    box-shadow: 0 4px 30px rgba(0,0,0,.25);
}
.navbar-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    height: 72px; padding: 0 1.5rem;
}
.navbar-logo {
    display: flex; align-items: center; gap: 10px;
    font-family: var(--font-heading); font-size: 1.25rem;
    color: var(--accent-light); text-decoration: none;
}
.navbar-logo .logo-icon { font-size: 2rem; }

/* Nav Links */
.nav-links { display: flex; gap: 1.8rem; }
.nav-links a {
    color: rgba(255,255,255,.85); font-weight: 700; font-size: .92rem;
    letter-spacing: .3px; position: relative;
    transition: color var(--transition);
}
.nav-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 50%; width: 0; height: 2.5px;
    background: var(--accent-light); border-radius: 2px;
    transform: translateX(-50%); transition: width var(--transition);
}
.nav-links a:hover { color: var(--accent-light); }
.nav-links a:hover::after { width: 100%; }

/* Hamburger */
.menu-toggle {
    display: none; background: none; border: none;
    color: var(--white); font-size: 1.5rem; padding: 8px;
    position: relative; z-index: 1001;
}
.menu-toggle .bar {
    display: block; width: 24px; height: 2.5px;
    background: currentColor; border-radius: 2px;
    transition: var(--transition); margin: 5px 0;
}
.menu-toggle.active .bar:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active .bar:nth-child(2) { opacity: 0; }
.menu-toggle.active .bar:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    background: linear-gradient(160deg, #3a1e08 0%, var(--primary) 30%, var(--accent) 70%, var(--accent-light) 100%);
    display: flex; align-items: center; justify-content: center;
    text-align: center; padding: 120px 1.5rem 80px;
    position: relative; overflow: hidden;
}

/* Particulas decorativas */
.hero::before {
    content: ''; position: absolute; top: -30%; right: -15%;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(245,166,35,.15) 0%, transparent 70%);
    border-radius: 50%; animation: float 8s ease-in-out infinite;
}
.hero::after {
    content: ''; position: absolute; bottom: -20%; left: -10%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(76,175,80,.1) 0%, transparent 70%);
    border-radius: 50%; animation: float 10s ease-in-out infinite reverse;
}
@keyframes float {
    0%,100% { transform: translate(0,0) scale(1); }
    50% { transform: translate(30px,-30px) scale(1.05); }
}

.hero-content { position: relative; z-index: 2; max-width: 850px; }
.hero-badge {
    display: inline-block; background: rgba(255,255,255,.12);
    backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,.15);
    border-radius: 50px; padding: 8px 20px;
    font-size: .9rem; color: var(--accent-light); font-weight: 700;
    margin-bottom: 1.5rem; letter-spacing: .5px;
}
.hero-emoji {
    font-size: 4.5rem; margin-bottom: 1rem;
    animation: bounce 2.5s ease-in-out infinite;
}
@keyframes bounce {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-18px); }
}
.hero h1 {
    font-size: clamp(2.2rem, 5vw, 4rem); color: var(--white);
    text-shadow: 0 4px 20px rgba(0,0,0,.3); margin-bottom: .5rem;
}
.hero h1 .destaque {
    display: block; color: var(--accent-light);
    font-size: clamp(1.2rem, 2.5vw, 2rem); margin-top: .4rem;
}
.hero-subtitle {
    color: rgba(255,255,255,.88); font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 600; margin: 1.2rem 0 2.2rem;
}
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== BOTÕES ===== */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 32px; border-radius: 50px;
    font-weight: 800; font-size: .95rem;
    transition: all var(--transition); border: none;
    cursor: pointer; text-decoration: none;
    font-family: var(--font-body);
}
.btn-primary {
    background: var(--green); color: var(--white);
    box-shadow: 0 4px 18px rgba(76,175,80,.35);
}
.btn-primary:hover {
    background: var(--green-dark); transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(76,175,80,.45);
}
.btn-secondary {
    background: transparent; color: var(--white);
    border: 2px solid rgba(255,255,255,.4);
}
.btn-secondary:hover {
    background: rgba(255,255,255,.12); border-color: var(--accent-light);
    color: var(--accent-light); transform: translateY(-3px);
}
.btn-whatsapp {
    background: #25D366; color: var(--white);
    box-shadow: 0 4px 18px rgba(37,211,102,.35);
}
.btn-whatsapp:hover {
    background: #1fba59; transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(37,211,102,.45);
}
.btn-outline {
    background: transparent; color: var(--primary);
    border: 2px solid var(--accent);
}
.btn-outline:hover {
    background: var(--accent); color: var(--white);
    transform: translateY(-3px);
}

/* ===== SEÇÃO GENÉRICA ===== */
.section { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header .badge {
    display: inline-block; background: rgba(232,133,61,.1);
    color: var(--accent); font-weight: 800; font-size: .8rem;
    letter-spacing: 1.5px; text-transform: uppercase;
    padding: 6px 18px; border-radius: 50px; margin-bottom: .8rem;
}
.section-header h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem); color: var(--primary);
    margin-bottom: .6rem;
}
.section-header p {
    color: var(--text-light); font-size: 1.1rem;
    max-width: 600px; margin: 0 auto;
}
.section-header .line {
    width: 60px; height: 4px; background: var(--accent);
    margin: 1rem auto 0; border-radius: 2px;
}

/* ===== SOBRE ===== */
.sobre { background: var(--white); }
.sobre-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 3.5rem; align-items: center;
}
.sobre-img {
    border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow-lg); position: relative;
}
.sobre-img img { width: 100%; height: 420px; object-fit: cover; object-position: top; }
.sobre-img-placeholder {
    width: 100%; height: 420px;
    background: linear-gradient(135deg, var(--caramelo), var(--accent));
    display: flex; flex-direction: column; align-items: center;
    justify-content: center; color: var(--white); font-size: 4rem;
}
.sobre-img-placeholder small { font-size: .9rem; margin-top: .5rem; font-weight: 600; }
.sobre-texto h3 {
    color: var(--primary); font-size: 1.8rem; margin-bottom: 1rem;
}
.sobre-texto p { line-height: 1.85; margin-bottom: 1rem; font-size: 1.05rem; color: var(--text-light); }
.sobre-destaques {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 1rem; margin-top: 1.5rem;
}
.sobre-destaque-item {
    display: flex; align-items: center; gap: 10px;
    font-weight: 700; color: var(--primary-light);
    padding: 8px 12px; border-radius: 10px;
    background: var(--cream); transition: var(--transition);
}
.sobre-destaque-item:hover {
    background: rgba(76,175,80,.08); transform: translateX(4px);
}
.sobre-destaque-item i { color: var(--green); font-size: 1.2rem; }

/* ===== ESTRUTURA ===== */
.estrutura { background: var(--cream); }
.estrutura-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.8rem;
}
.estrutura-card {
    background: var(--white); border-radius: var(--radius-lg);
    overflow: hidden; box-shadow: var(--shadow);
    transition: all var(--transition);
}
.estrutura-card:hover {
    transform: translateY(-10px); box-shadow: var(--shadow-xl);
}
.card-img {
    height: 200px; display: flex; align-items: center;
    justify-content: center; font-size: 4rem; position: relative;
    overflow: hidden;
}
.card-img::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.15));
}
.card-img.piscina     { background: linear-gradient(135deg, #4FC3F7, #0277BD); }
.card-img.churrasqueira { background: linear-gradient(135deg, #FF7043, #BF360C); }
.card-img.cozinha     { background: linear-gradient(135deg, var(--accent-light), var(--caramelo)); }
.card-img.salao       { background: linear-gradient(135deg, #AB47BC, #6A1B9A); }
.card-img.quarto      { background: linear-gradient(135deg, #66BB6A, #2E7D32); }
.card-body { padding: 1.5rem; }
.card-body h3 { color: var(--primary); font-size: 1.2rem; margin-bottom: .4rem; }
.card-body p { color: var(--text-light); line-height: 1.7; font-size: .95rem; }

/* ===== NÚMEROS / STATS ===== */
.stats {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 60px 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem; text-align: center;
}
.stat-item { color: var(--white); }
.stat-number {
    font-family: var(--font-heading); font-size: 3rem;
    color: var(--accent-light); display: block; line-height: 1;
}
.stat-label {
    font-size: .95rem; font-weight: 600;
    opacity: .85; margin-top: 6px;
}

/* ===== GALERIA ===== */
.galeria { background: var(--dark); color: var(--white); }
.galeria .section-header h2 { color: var(--accent-light); }
.galeria .section-header p { color: rgba(255,255,255,.6); }
.galeria .section-header .badge { background: rgba(245,166,35,.15); }
.galeria .line { background: var(--accent-light); }
.galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.2rem;
}
.galeria-item {
    border-radius: var(--radius); overflow: hidden;
    position: relative; height: 260px;
    cursor: pointer; transition: all var(--transition);
}
.galeria-item::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.5));
    opacity: 0; transition: opacity var(--transition);
}
.galeria-item:hover::after { opacity: 1; }
.galeria-item:hover { transform: scale(1.03); }
.galeria-item:hover .galeria-overlay { opacity: 1; transform: translateY(0); }

.galeria-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    z-index: 2; padding: 1.2rem;
    color: var(--white); opacity: 0;
    transform: translateY(10px);
    transition: all var(--transition);
}
.galeria-overlay h4 { font-size: 1rem; font-family: var(--font-heading); }

.galeria-placeholder {
    width: 100%; height: 100%;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    color: var(--white); font-size: 3rem;
}
.galeria-placeholder.g1 { background: linear-gradient(135deg, var(--caramelo), var(--accent)); }
.galeria-placeholder.g2 { background: linear-gradient(135deg, #4FC3F7, #0277BD); }
.galeria-placeholder.g3 { background: linear-gradient(135deg, #66BB6A, #2E7D32); }
.galeria-placeholder.g4 { background: linear-gradient(135deg, #AB47BC, #6A1B9A); }
.galeria-placeholder.g5 { background: linear-gradient(135deg, #FF7043, #BF360C); }
.galeria-placeholder.g6 { background: linear-gradient(135deg, var(--primary-light), var(--primary)); }
.galeria-placeholder small { font-size: .85rem; margin-top: .5rem; opacity: .8; }

/* ===== VÍDEOS ===== */
.video-section { background: var(--white); }
.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.8rem;
}
.video-card {
    border-radius: var(--radius-lg); overflow: hidden;
    background: var(--dark); box-shadow: var(--shadow-lg);
    transition: all var(--transition);
}
.video-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.video-card video {
    width: 100%; aspect-ratio: 16/9; object-fit: cover;
    background: #000;
}
.video-card-body {
    padding: 1.2rem 1.5rem; display: flex;
    align-items: center; justify-content: space-between;
}
.video-card-body h4 {
    color: var(--white); font-family: var(--font-heading);
    font-size: 1rem;
}
.video-card-body .video-tag {
    background: var(--accent); color: var(--white);
    padding: 4px 12px; border-radius: 50px;
    font-size: .75rem; font-weight: 700;
}

/* Video destaque (grande) */
.video-featured {
    max-width: 900px; margin: 0 auto 2rem;
    border-radius: var(--radius-xl); overflow: hidden;
    box-shadow: var(--shadow-xl); background: var(--dark);
    position: relative;
}
.video-featured video {
    width: 100%; aspect-ratio: 16/9; object-fit: cover; background: #000;
}
.video-featured-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 2rem; z-index: 2;
    background: linear-gradient(transparent, rgba(0,0,0,.7));
    color: var(--white);
}
.video-featured-overlay h3 {
    font-size: 1.3rem; margin-bottom: .3rem;
}
.video-featured-overlay p {
    font-size: .9rem; opacity: .8;
}

/* Custom Play Button Overlay */
.video-play-overlay {
    position: absolute; inset: 0; z-index: 3;
    display: flex; align-items: center; justify-content: center;
    background: rgba(0,0,0,.35);
    cursor: pointer; transition: var(--transition);
}
.video-play-overlay:hover { background: rgba(0,0,0,.2); }
.video-play-overlay i {
    font-size: 4.5rem; color: var(--white);
    text-shadow: 0 4px 20px rgba(0,0,0,.5);
    transition: transform var(--transition);
}
.video-play-overlay:hover i { transform: scale(1.15); }
.video-play-overlay.hidden { display: none; }

/* ===== DEPOIMENTOS ===== */
.depoimentos { background: var(--cream); }
.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.8rem;
}
.depoimento-card {
    background: var(--white); border-radius: var(--radius-lg);
    padding: 2rem; box-shadow: var(--shadow);
    transition: all var(--transition); position: relative;
}
.depoimento-card::before {
    content: '\201C'; position: absolute; top: 10px; left: 20px;
    font-size: 4rem; color: var(--accent); opacity: .2;
    font-family: Georgia, serif; line-height: 1;
}
.depoimento-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.depoimento-stars { color: #FFC107; font-size: 1rem; margin-bottom: .8rem; }
.depoimento-text {
    color: var(--text-light); font-style: italic;
    line-height: 1.7; margin-bottom: 1.2rem; font-size: .95rem;
}
.depoimento-author { display: flex; align-items: center; gap: 12px; }
.depoimento-avatar {
    width: 48px; height: 48px; border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-weight: 800; font-size: 1.1rem;
}
.depoimento-author strong { color: var(--primary); display: block; font-size: .95rem; }
.depoimento-author small { color: var(--text-light); font-size: .8rem; }

/* ===== PRÉ-CADASTRO / RESERVA ===== */
.cadastro { background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%); }
.cadastro-wrapper {
    max-width: 720px; margin: 0 auto;
    background: var(--white); border-radius: var(--radius-xl);
    padding: 3rem; box-shadow: var(--shadow-lg);
}
.cadastro-wrapper h3 {
    text-align: center; color: var(--primary);
    font-size: 1.5rem; margin-bottom: .5rem;
}
.cadastro-wrapper > p {
    text-align: center; color: var(--text-light); margin-bottom: 2rem;
}
.form-group { margin-bottom: 1.4rem; }
.form-group label {
    display: block; font-weight: 700; color: var(--primary);
    margin-bottom: .4rem; font-size: .92rem;
}
.form-group label i { margin-right: 4px; color: var(--accent); }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%; padding: 14px 18px;
    border: 2px solid #E8D5C0; border-radius: 12px;
    font-family: var(--font-body); font-size: 1rem;
    color: var(--text); background: var(--cream);
    transition: all var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none; border-color: var(--accent);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(232,133,61,.12);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.btn-enviar { width: 100%; padding: 16px; font-size: 1.1rem; margin-top: .5rem; }

/* ===== LOCALIZAÇÃO ===== */
.localizacao { background: var(--white); }
.localizacao-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 2.5rem; align-items: start;
}
.mapa-container {
    border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow-lg); height: 420px;
}
.mapa-container iframe { width: 100%; height: 100%; border: none; }
.mapa-placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #66BB6A, #2E7D32);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    color: var(--white); font-size: 4rem;
}
.mapa-placeholder small { font-size: 1rem; margin-top: .5rem; }

.info-contato { padding: .5rem 0; }
.info-contato h3 { color: var(--primary); font-size: 1.5rem; margin-bottom: 1.5rem; }
.contato-item {
    display: flex; align-items: flex-start; gap: 15px;
    margin-bottom: 1.2rem; padding: 1rem 1.2rem;
    background: var(--cream); border-radius: var(--radius);
    transition: all var(--transition); border: 1px solid transparent;
}
.contato-item:hover {
    transform: translateX(6px); border-color: var(--accent);
    box-shadow: var(--shadow-sm);
}
.contato-item i {
    font-size: 1.4rem; color: var(--accent); margin-top: 2px;
    min-width: 28px; text-align: center;
}
.contato-item strong { display: block; color: var(--primary); margin-bottom: 2px; }
.contato-item span { color: var(--text-light); font-size: .95rem; }

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(180deg, #2c1a0a, #1a0f05);
    color: rgba(255,255,255,.6); text-align: center;
    padding: 3rem 1.5rem 2rem;
}
.footer-inner { max-width: 800px; margin: 0 auto; }
.footer-logo {
    font-family: var(--font-heading); font-size: 1.6rem;
    color: var(--accent-light); margin-bottom: .5rem;
}
.footer p { font-size: .9rem; margin-bottom: .5rem; }
.footer-social {
    display: flex; justify-content: center; gap: 1.2rem; margin: 1.2rem 0;
}
.footer-social a {
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(255,255,255,.08);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.7); font-size: 1.2rem;
    transition: all var(--transition);
}
.footer-social a:hover {
    background: var(--accent); color: var(--white);
    transform: translateY(-3px);
}
.footer-divider {
    width: 60px; height: 2px; background: rgba(255,255,255,.1);
    margin: 1.5rem auto;
}
.footer-copy { font-size: .82rem; opacity: .5; }

/* ===== WHATSAPP FLUTUANTE ===== */
.whatsapp-float {
    position: fixed; bottom: 28px; right: 28px;
    width: 64px; height: 64px;
    background: #25D366; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-size: 2rem;
    box-shadow: 0 4px 24px rgba(37,211,102,.45);
    z-index: 999; text-decoration: none;
    transition: all var(--transition);
    animation: whatsapp-pulse 2.5s ease-in-out infinite;
}
.whatsapp-float:hover {
    transform: scale(1.12);
    box-shadow: 0 8px 36px rgba(37,211,102,.55);
}
@keyframes whatsapp-pulse {
    0%,100% { box-shadow: 0 4px 24px rgba(37,211,102,.45); }
    50%     { box-shadow: 0 4px 40px rgba(37,211,102,.7); }
}

/* Tooltip do WhatsApp */
.whatsapp-float .wpp-tooltip {
    position: absolute; right: 76px; top: 50%; transform: translateY(-50%);
    background: var(--white); color: var(--text);
    padding: 8px 16px; border-radius: 10px;
    font-size: .85rem; font-weight: 700;
    white-space: nowrap; box-shadow: var(--shadow);
    opacity: 0; pointer-events: none;
    transition: opacity var(--transition);
}
.whatsapp-float:hover .wpp-tooltip { opacity: 1; }

/* ===== LIGHTBOX (Galeria Full-Screen) ===== */
.lightbox {
    position: fixed; 
    inset: 0; 
    z-index: 2000;
    background: rgba(0,0,0,.95); 
    display: none;
    align-items: center; 
    justify-content: center;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.lightbox.active { display: flex; }

/* Botão Fechar */
.lightbox-close {
    position: absolute; 
    top: 20px; 
    right: 20px;
    background: rgba(255,255,255,0.15); 
    border: 2px solid rgba(255,255,255,0.3);
    color: var(--white); 
    font-size: 1.8rem;
    cursor: pointer; 
    z-index: 2002;
    transition: all 0.3s ease;
    width: 50px; 
    height: 50px;
    border-radius: 50%;
    display: flex; 
    align-items: center; 
    justify-content: center;
}
.lightbox-close:hover { 
    background: #ff4444; 
    border-color: #ff4444;
    transform: scale(1.1); 
}

/* Imagem/Vídeo */
.lightbox img, .lightbox video {
    max-width: 85vw; 
    max-height: 80vh;
    border-radius: 12px; 
    object-fit: contain;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

/* Botões de Navegação */
.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    border: none;
    color: var(--white);
    font-size: 1.4rem;
    cursor: pointer;
    z-index: 2002;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(232,133,61,0.4);
}

.lightbox-prev { left: 25px; }
.lightbox-next { right: 25px; }

.lightbox-prev:hover,
.lightbox-next:hover {
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 6px 30px rgba(232,133,61,0.6);
}

.lightbox-prev:active,
.lightbox-next:active {
    transform: translateY(-50%) scale(0.95);
}

/* Contador de Imagens */
.lightbox-counter {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 10px 24px;
    border-radius: 50px;
    z-index: 2002;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    letter-spacing: 1px;
}

/* Responsivo Mobile */
@media (max-width: 768px) {
    .lightbox-prev,
    .lightbox-next {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }
    .lightbox-prev { left: 15px; }
    .lightbox-next { right: 15px; }
    
    .lightbox-close {
        top: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }
    
    .lightbox img, .lightbox video {
        max-width: 92vw;
        max-height: 70vh;
    }
    
    .lightbox-counter {
        bottom: 20px;
        font-size: 0.9rem;
        padding: 8px 18px;
    }
}

@media (max-width: 480px) {
    .lightbox-prev,
    .lightbox-next {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }
    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
    position: fixed; bottom: 100px; right: 30px;
    width: 46px; height: 46px;
    background: var(--primary); color: var(--white);
    border: none; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; cursor: pointer;
    box-shadow: var(--shadow);
    opacity: 0; transform: translateY(20px);
    transition: all var(--transition); z-index: 998;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--accent); transform: translateY(-3px); }

/* ============================================================
   RESPONSIVO
   ============================================================ */

/* Tablet e abaixo */
@media (max-width: 968px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .sobre-grid, .localizacao-grid { grid-template-columns: 1fr; }
    .videos-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    /* Nav Mobile */
    .nav-links {
        display: none; position: fixed;
        top: 0; left: 0; width: 100%; height: 100vh;
        background: rgba(44,26,10,.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center; justify-content: center;
        gap: 1.8rem; padding: 2rem;
        z-index: 999;
    }
    .nav-links.active { display: flex; }
    .nav-links a { font-size: 1.3rem; color: var(--white); }
    .menu-toggle { display: flex; flex-direction: column; }

    .hero { padding: 100px 1.5rem 60px; }
    .hero h1 { font-size: 2rem; }
    .hero h1 .destaque { font-size: 1.2rem; }
    .hero-emoji { font-size: 3.5rem; }

    .section { padding: 70px 0; }
    .section-header h2 { font-size: 1.8rem; }
    .section-header { margin-bottom: 2.5rem; }

    .sobre-grid { gap: 2rem; }
    .sobre-img img, .sobre-img-placeholder { height: 300px; }

    .form-row { grid-template-columns: 1fr; }
    .cadastro-wrapper { padding: 2rem 1.5rem; }
    .sobre-destaques { grid-template-columns: 1fr; }

    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .stat-number { font-size: 2.2rem; }

    .video-featured { border-radius: var(--radius); }
    .videos-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.7rem; }
    .hero-subtitle { font-size: .95rem; }
    .btn { padding: 12px 24px; font-size: .88rem; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .hero-buttons .btn { width: 100%; justify-content: center; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
    .stat-number { font-size: 1.8rem; }
    .estrutura-grid { grid-template-columns: 1fr; }
    .galeria-grid { grid-template-columns: 1fr; }
    .galeria-item { height: 220px; }
    .depoimentos-grid { grid-template-columns: 1fr; }
    .whatsapp-float { width: 56px; height: 56px; font-size: 1.7rem; bottom: 20px; right: 20px; }
    .scroll-top { bottom: 88px; right: 22px; width: 40px; height: 40px; }
}

/* ============================================================
   MELHORIAS PROFISSIONAIS - UPGRADE VISUAL
   ============================================================ */

/* ===== TRANSIÇÕES SUAVES EM IMAGENS ===== */
img {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}

/* ===== GALERIA PROFISSIONAL ===== */
.galeria-item {
    cursor: pointer;
}

.galeria-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== EFEITO SHINE NOS CARDS ===== */
.estrutura-card {
    position: relative;
    overflow: hidden;
}

.estrutura-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
    z-index: 1;
}

.estrutura-card:hover::before {
    opacity: 1;
    left: 100%;
}

/* ===== EFEITO BRILHO NOS BOTÕES ===== */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: left 0.6s ease;
}

.btn:hover::before {
    left: 100%;
}

/* ===== SOMBRA DE TEXTO EM OVERLAYS ===== */
.galeria-overlay,
.video-featured-overlay {
    text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

/* ===== LOADING ANIMATION PARA IMAGENS LAZY ===== */
img[loading="lazy"] {
    background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ===== MELHOR EFEITO NA SEÇÃO SOBRE ===== */
.sobre-img img {
    height: 420px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

/* ===== HOVER EFFECT NA GALERIA ===== */
.galeria-item:hover img {
    transform: scale(1.08);
}

.galeria-item img {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== DEPOIMENTOS CARD PROFISSIONAL ===== */
.depoimento-card {
    border: 1px solid rgba(232,133,61,0.1);
}

.depoimento-card:hover {
    border-color: var(--accent);
}

/* ===== EFEITO GLOW NO WHATSAPP FLOAT ===== */
.whatsapp-float {
    animation: whatsapp-glow 2.5s ease-in-out infinite;
}

@keyframes whatsapp-glow {
    0%, 100% { 
        box-shadow: 0 4px 24px rgba(37,211,102,0.45);
    }
    50% { 
        box-shadow: 0 4px 40px rgba(37,211,102,0.75), 0 0 60px rgba(37,211,102,0.3);
    }
}

/* ===== ANIMAÇÃO DE ENTRADA MELHORADA ===== */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===== FORMULÁRIO PREMIUM ===== */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(232,133,61,0.15), 0 4px 20px rgba(232,133,61,0.1);
}

/* ===== NAVBAR PREMIUM ===== */
.navbar {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    background: rgba(44,26,10,.98);
    box-shadow: 0 4px 30px rgba(0,0,0,.3);
}

/* ===== STATS SECTION GLOW ===== */
.stat-number {
    text-shadow: 0 0 30px rgba(245,166,35,0.3);
}

/* ===== VIDEO CARDS PREMIUM ===== */
.video-card {
    border: 1px solid rgba(255,255,255,0.05);
}

.video-card:hover {
    border-color: var(--accent);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

/* ===== MAPA PREMIUM ===== */
.mapa-container {
    border: 3px solid rgba(232,133,61,0.2);
    transition: all var(--transition);
}

.mapa-container:hover {
    border-color: var(--accent);
    box-shadow: 0 12px 40px rgba(232,133,61,0.2);
}

/* ===== CONTATO ITEMS PREMIUM ===== */
.contato-item {
    border: 1px solid transparent;
}

.contato-item:hover {
    background: var(--white);
    border-color: var(--accent);
    box-shadow: 0 8px 30px rgba(232,133,61,0.1);
}

/* ===== RESPONSIVIDADE EXTRA MOBILE ===== */
@media (max-width: 768px) {
    .galeria-item {
        height: 250px;
    }
    
    .sobre-img img {
        height: 280px;
    }
    
    .galeria-overlay h4 {
        font-size: 0.95rem;
    }
    
    .galeria-overlay p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .galeria-item {
        height: 200px;
    }
    
    .sobre-img img {
        height: 240px;
    }
}
