﻿/* ============================================
   GIOVANNA REALI — ATELIÊ AMOR EM PASTA
   Design System Premium
   ============================================ */

/* --- TOKENS --- */
:root {
    --gold:       #D4AF37;
    --gold-dark:  #a0832a;
    --gold-light: #f0d060;
    --choco:      #6b4a1c;
    --choco-dark: #3a2410;
    --cream:      #FFF5F2;
    --cream-dark: #f0e0d6;
    --rose:       #F7C8D0;
    --text:       #2D1A12;
    --white:      #ffffff;

    --ff-display: 'Cormorant Garamond', Georgia, serif;
    --ff-body:    'Poppins', sans-serif;
    --ff-script:  'Great Vibes', cursive;

    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --radius-card: 16px;
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { margin: 0; padding: 0; overflow-x: hidden; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--ff-body);
    background: var(--cream);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
    font-size: 18px;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* --- LAYOUT --- */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

section { padding: 110px 0; }

/* --- LABELS / BADGES --- */
.label {
    display: inline-block;
    font-family: var(--ff-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}
.label.light { color: var(--gold-light); }

/* --- HEADINGS --- */
h2 {
    font-family: var(--ff-display);
    font-size: clamp(38px, 4.5vw, 44px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
    color: var(--text);
}
h2 em {
    display: block;
    font-size: clamp(40px, 4.8vw, 46px);
    line-height: 1.2;
    font-style: italic;
    color: var(--gold);
    margin-top: 8px;
}

/* ============================================
   NAVBAR
   ============================================ */
#navbar {
    position: fixed;   /* flutua sobre o conteúdo */
    top: 0;
    width: 100%;
    z-index: 999;
    padding: 18px 0;
    background: transparent;
    transition: background 0.4s var(--ease), padding 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

#navbar.scrolled {
    background: rgba(255, 245, 242, 0.97);
    padding: 12px 0;
    box-shadow: 0 2px 20px rgba(45, 26, 18, 0.08);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: center; /* Centraliza os links da navegação */
    position: relative;
}

.nav-logo {
    height: 55px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 36px;
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--white);
    transition: color 0.3s;
}

#navbar.scrolled .nav-links a {
    color: var(--text);
}

.nav-links a:hover { color: var(--gold); }

.nav-cta {
    position: absolute;
    right: 32px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--gold);
    border-radius: 50px;
    padding: 10px 24px;
    transition: background 0.3s, color 0.3s;
}

.nav-cta:hover {
    background: var(--gold);
    color: var(--white);
}

/* ============================================
   HERO — VÍDEO (tela inteira, sem corte)
   ============================================ */
#hero-video-section {
    width: 100%;
    height: 100vh;      /* ocupa a tela toda */
    overflow: hidden;
    display: block;
    margin-top: 0;
    padding: 0;         /* <-- REMOVE A TARJA ROSA */
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top; /* Garante que o texto 'ATELIÊ' no topo nunca seja cortado */
    display: block;
}

/* Desktop: mostra horizontal, esconde vertical */
.hero-mobile { display: none; }
.hero-desktop { display: block; }

/* ============================================
   HERO — COPY (seção abaixo do vídeo)
   ============================================ */
#hero-copy {
    background: var(--choco-dark);
    padding: 90px 0;
}

.hero-copy-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 80px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
}

/* Badge superior */
.hero-badge {
    display: inline-block;
    border: 1px solid rgba(212, 175, 55, 0.5);
    border-radius: 50px;
    padding: 8px 24px;
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    backdrop-filter: blur(4px);
    background: rgba(212, 175, 55, 0.06);
}

/* Headline principal (Cursive / Manuscrita) */
.hero-headline {
    font-family: var(--ff-script);
    font-size: clamp(56px, 6vw, 64px);
    font-weight: 400; /* Fontes script geralmente não têm bold */
    line-height: 1.2;
    color: var(--gold); /* Dourado igual à imagem */
    letter-spacing: 1px;
}

.hero-headline em {
    font-style: normal;
    color: var(--gold-light);
}

/* Sub-headline */
.hero-sub {
    font-size: clamp(0.9rem, 1.6vw, 1.05rem);
    font-weight: 300;
    color: rgba(255, 245, 242, 0.82);
    line-height: 1.8;
    max-width: 600px;
}

/* Scroll hint */
.hero-scroll-hint {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 0.68rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
}

.scroll-arrow {
    animation: bounce 1.8s ease-in-out infinite;
    font-size: 1.1rem;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

}

/* ============================================
   TRANSIÇÕES SUAVES ENTRE DOBRAS (Section Bleeds)
   Elimina os cortes secos entre seções
   ============================================ */

/* --- REGRA BASE: todas as seções com transição recebem posição relativa --- */
#hero-copy, #dor, #agitacao, #solucao, #beneficios,
#sobre, #doces, #provas, #garantia, #cadastro, #escassez, #faq {
    position: relative;
}

/* -----------------------------------------------------------
   SOMBRA SUAVE UNIVERSAL (Section Bleed)
   Apenas um "sopro" de escurecimento no rodapé de cada dobra
   Height pequeno, opacidade baixa — designer touch, sem exagero
   ----------------------------------------------------------- */
#hero-copy::after,
#dor::after,
#agitacao::after,
#solucao::after,
#doces::after,
#beneficios::after,
#sobre::after,
#provas::after,
#garantia::after,
#cadastro::after,
#escassez::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.18));
    pointer-events: none;
    z-index: 2;
}

/* ============================================

   DOBRA DA DOR
   ============================================ */
#dor {
    background: var(--cream-dark); /* Um creme levemente mais escuro para contrastar com o Sobre */
    padding: 100px 0;
    text-align: center;
}

.dor-container {
    max-width: 800px;
    margin: 0 auto;
}

.dor-headline {
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--white); /* Melhor contraste caso esteja no fundo escuro */
    margin-bottom: 50px;
    text-align: center;
    width: 100%;
}

.dor-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 50px;
    text-align: left;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

.dor-list li {
    display: flex;
    align-items: center;
    gap: 18px;
    background: rgba(255, 255, 255, 0.03); /* Menos branco para não ficar cinza */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(212, 175, 55, 0.4); /* Fio de ouro mais suave */
    padding: 22px 28px;
    border-radius: var(--radius-card);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.dor-list li:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 175, 55, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), inset 0 0 15px rgba(255, 255, 255, 0.05);
}

.dor-icon {
    color: var(--gold);
    font-weight: bold;
    font-size: 1.2rem;
}

.dor-list p {
    font-size: clamp(20px, 2vw, 22px);
    color: var(--white);
    font-weight: 500;
}

.dor-conclusion {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    color: var(--white);
    padding: 35px 40px;
    border-radius: var(--radius-card);
    border: 1px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.dor-conclusion:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 175, 55, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), inset 0 0 15px rgba(255, 255, 255, 0.05);
}

.dor-conclusion p {
    font-size: 1.15rem;
    line-height: 1.6;
}

.dor-conclusion strong {
    color: var(--gold);
    font-weight: 600;
}

/* ============================================
   AGITAÇÃO
   ============================================ */
#agitacao {
    background: var(--choco-dark);
    padding: 120px 0;
    text-align: center;
    color: var(--white);
}

.agitacao-container {
    max-width: 900px;
    margin: 0 auto;
}

.agitacao-headline {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--white);
}

.agitacao-headline .highlight {
    color: var(--gold);
    font-family: var(--ff-script);
    font-size: 1.1em;
    display: inline-block;
}

.agitacao-sub {
    font-size: 1.2rem;
    color: rgba(255, 245, 242, 0.7);
    margin-bottom: 60px;
}

.genericos-box {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(212, 175, 55, 0.4);
    padding: 50px;
    border-radius: var(--radius-card);
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.genericos-box:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 175, 55, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), inset 0 0 15px rgba(255, 255, 255, 0.05);
}

/* ============================================
   EFEITO ESPELHADO (SHINE) PARA TODOS OS CARDS
   ============================================ */
.dor-list li::before, 
.dor-conclusion::before, 
.genericos-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    transition: all 0.7s ease;
    pointer-events: none;
}

.dor-list li:hover::before, 
.dor-conclusion:hover::before, 
.genericos-box:hover::before {
    left: 150%;
}

.genericos-box h3 {
    font-family: var(--ff-display);
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.genericos-box ul {
    list-style: none;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.genericos-box li {
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    gap: 15px;
    color: rgba(255, 245, 242, 0.9);
}

.genericos-box li::before {
    content: "•";
    color: var(--gold);
    font-size: 1.5rem;
}

/* ============================================
   SOLUÇÃO
   ============================================ */
#solucao {
    background: var(--cream);
    padding: 120px 0;
}

.solucao-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Vitrine de Cristal — wrapper da imagem da solução */
.solucao-image-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Imagem da Solução — volta ao tamanho original com sombra dourada */
.solucao-img {
    width: 100%;
    border-radius: var(--radius-card);
    box-shadow: 24px 24px 0 var(--gold);  /* sombra dourada clássica */
    animation: float-crystal 7s ease-in-out infinite;
    display: block;
}

/* Animação de levitação suave */
@keyframes float-crystal {
    0%   { transform: translateY(0px) rotate(0deg); }
    25%  { transform: translateY(-10px) rotate(0.3deg); }
    50%  { transform: translateY(-18px) rotate(0deg); }
    75%  { transform: translateY(-8px) rotate(-0.3deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

/* Solucao text usa os padrões globais agora */

.solucao-text p {
    color: var(--choco);
    font-size: 18px; /* Aumentado levemente conforme pedido de apoio */
    line-height: 1.6;
    margin-bottom: 36px;
}

.solucao-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px; /* Aumentado para respirar mais */
}

.solucao-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 500;
    color: var(--choco-dark);
    font-size: clamp(20px, 2vw, 22px); /* Mantido maior pois o cliente achou 18px pequeno */
    line-height: 1.8;
}

.check-icon {
    color: var(--gold);
    font-size: 1.2rem;
}

@media (max-width: 960px) {
    .solucao-grid { grid-template-columns: 1fr; gap: 60px; }
}

/* ============================================
   BENEFÍCIOS
   ============================================ */
#beneficios {
    background: var(--cream-dark);
    padding: 120px 0;
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 60px;
}

.beneficio-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-card);
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

/* ============================================
   VITRINE DE CRISTAL — Glassmorphism Minimalista
   Padrão unificado para Benefícios e Depoimentos
   ============================================ */
.beneficio-card.glass-card {
    background: rgba(255, 255, 255, 0.05);       /* Mais cristalino */
    backdrop-filter: blur(20px);                 /* Blur mais profundo */
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.5);  /* Fio de ouro mais nítido */
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
    transition: all 0.5s var(--ease);
}

.beneficio-card.glass-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(212, 175, 55, 1);
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), inset 0 0 20px rgba(255, 255, 255, 0.1);
}

/* Efeito Espelhado (Shine) para Benefícios */
.beneficio-card.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    transition: all 0.7s ease;
    pointer-events: none;
}

.beneficio-card.glass-card:hover::before {
    left: 150%;
}

.beneficio-icon {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-gold {
    width: 42px;
    height: 42px;
    stroke: var(--gold);
    stroke-width: 1.5px;
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.2));
}

.beneficio-card h3 {
    font-family: var(--ff-display);
    font-size: 1.35rem;
    color: var(--choco-dark);
    margin-bottom: 12px;
}

.beneficio-card p {
    font-size: 18px;
    color: var(--choco);
    line-height: 1.6;
}

/* ============================================
   SOBRE
   ============================================ */
#sobre { background: var(--cream); }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-wrap {
    position: relative;
}

.about-portrait {
    width: 100%;
    border-radius: 20px;
    box-shadow: 24px 24px 0 var(--gold);
}

.about-badge-float {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--choco);
    color: var(--gold);
    font-family: var(--ff-display);
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    padding: 20px;
    border-radius: 50%;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
}

.about-text h2 { margin-bottom: 24px; }

.about-text .highlight-text {
    font-family: var(--ff-display);
    font-size: 1.5rem; /* ~27px */
    color: var(--choco-dark);
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 28px;
}

.about-text p {
    color: var(--choco);
    margin-bottom: 24px;
    font-size: 1.15rem; /* ~20px */
    line-height: 1.8;
}

.about-list {
    list-style: none;
    margin: 24px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about-list li {
    font-size: 0.95rem;
    color: var(--text);
    padding-left: 5px;
    position: relative;
}

.about-quote {
    margin: 32px 0;
    padding: 24px;
    background: rgba(212, 175, 55, 0.05);
    border-left: 3px solid var(--gold);
    border-radius: 0 12px 12px 0;
}

.about-quote p {
    margin-bottom: 0;
    font-style: italic;
    font-size: 1.1rem;
}

.about-quote strong {
    color: var(--gold-dark);
}

.btn-secondary {
    display: inline-block;
    margin-top: 20px;
    font-family: var(--ff-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(212, 175, 55, 0.6);
    border-radius: 50px;
    padding: 14px 36px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease);
    background: transparent;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(212,175,55,0) 0%, rgba(212,175,55,0.25) 50%, rgba(212,175,55,0) 100%);
    transform: skewX(-25deg);
    transition: all 0.7s ease;
}

.btn-secondary:hover {
    border-color: rgba(212, 175, 55, 1);
    background: rgba(212, 175, 55, 0.08);
    letter-spacing: 3px;
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.2);
}

.btn-secondary:hover::before {
    left: 150%;
}

/* ============================================
   CRIAÇÕES / CARROSSEL INFINITO
   ============================================ */
#doces {
    background: var(--choco-dark);
    color: var(--white);
    padding-bottom: 0; /* O carrossel já tem padding */
}

#doces h2 { color: var(--white); }
#doces .label { color: var(--gold-light); }

.creations-list ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 40px;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.creations-list li {
    font-size: clamp(20px, 2vw, 22px);
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    margin-bottom: 8px;
}

.creations-footer {
    font-family: var(--ff-display);
    font-size: 1.4rem;
    color: var(--gold-light);
    margin-top: 20px;
    text-align: center;
}

/* Carrossel Infinito */
.infinite-carousel-wrap {
    width: 100%;
    overflow: hidden;
    padding: 60px 0;
    background: transparent;
    position: relative;
}

.carousel-track {
    display: flex;
    width: calc(340px * 28); /* 14 fotos * 2 para o loop (largura do card ajustada) */
    animation: scroll 40s linear infinite;
}

.carousel-slide {
    width: 320px;
    padding: 10px;
    flex-shrink: 0;
    position: relative;
    cursor: pointer;
    margin: 0 10px;
    transition: transform 0.4s var(--ease);
}

.carousel-slide img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 12px;
    
    /* Ajuste de Qualidade: reduz brilho estourado e melhora o contraste */
    filter: brightness(0.92) contrast(1.05);
    
    /* Glow Neon Sutil (Flutuando) */
    border: 1px solid rgba(212, 175, 55, 0.3); /* Linha ultra fina dourada */
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.15); /* Brilho dourado suave */
    
    transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease), filter 0.5s var(--ease);
}

.carousel-slide img:hover, .carousel-slide:active img {
    transform: scale(1.04);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.35); /* Brilho aumenta no hover/clique */
    border-color: rgba(212, 175, 55, 0.6);
    filter: brightness(1) contrast(1.05); /* Acende a imagem ao passar o mouse */
}

/* Pausa o carrossel quando o mouse estiver em cima ou ao clicar */
.infinite-carousel-wrap:hover .carousel-track,
.infinite-carousel-wrap:active .carousel-track {
    animation-play-state: paused;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-300px * 14)); }
}

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

/* ============================================
   CTA FINAL
   ============================================ */
#contato { padding: 0; }

.cta-bg {
    background:
        linear-gradient(rgba(45, 26, 18, 0.88), rgba(45, 26, 18, 0.88)),
        url('servicos-bg.jpeg') center/cover no-repeat fixed;
    padding: 120px 0;
    text-align: center;
    color: var(--white);
}

.cta-wrap h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.cta-wrap h2 em { color: var(--gold); }

.cta-wrap p {
    color: rgba(255,245,242,0.75);
    max-width: 500px;
    margin: 0 auto 40px;
    font-size: 1rem;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: var(--choco-dark);
    padding: 60px 0;
}

.footer-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.footer-logo {
    height: 70px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.7;
}

.footer-copy {
    font-size: 0.78rem;
    color: rgba(255,245,242,0.4);
    letter-spacing: 1px;
}

/* ============================================
   ANIMAÇÕES DE ENTRADA (Intersection Observer)
   ============================================ */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-card.fade-up.visible:nth-child(2) { transition-delay: 0.1s; }
.feature-card.fade-up.visible:nth-child(3) { transition-delay: 0.2s; }
.gallery-item.fade-up.visible:nth-child(2) { transition-delay: 0.08s; }
.gallery-item.fade-up.visible:nth-child(3) { transition-delay: 0.16s; }

/* ============================================
   VÍDEO DE FUNDO GLOBAL — PARALAXE FIXO
   ============================================ */

/* Hero original fica acima do vídeo fixo de fundo */
#hero-video-section {
    position: relative;
    z-index: 10;
    background: var(--choco-dark); /* bloqueia o bg-video de vazar aqui */
}

#page-bg-wrap {
    position: relative;
    /* Sem overflow:hidden para o vídeo fixo funcionar corretamente */
}

/* Sombra/Degradê de transição suave entre o Hero e o wrapper */
#page-bg-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 160px;
    background: linear-gradient(to bottom, var(--choco-dark) 0%, transparent 100%);
    z-index: 3;
    pointer-events: none;
}

/* ─── PARALAXE: vídeo FIXO, preenchendo a janela toda ─── */
#bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;       /* preenche sem distorcer */
    z-index: -1;             /* fica atrás de todo o conteúdo da página */
    pointer-events: none;
    filter: brightness(0.9);
}

/* Overlay semitransparente — permite ver o vídeo e ler o texto */
#bg-video-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26, 15, 7, 0.48);
    z-index: -1;             /* junto com o vídeo, abaixo de tudo */
    pointer-events: none;
}

/* Todas as seções dentro do wrapper ficam acima do vídeo */
#page-bg-wrap > section {
    position: relative;
    z-index: 1;
}

/* Seções dentro do wrapper que precisam de fundo transparente */
#page-bg-wrap #hero-copy { background: rgba(26, 15, 7, 0.45); }
#page-bg-wrap #dor        { background: rgba(26, 15, 7, 0.5); }
#page-bg-wrap #agitacao   { background: rgba(26, 15, 7, 0.55); }
#page-bg-wrap #solucao    { background: rgba(255, 245, 242, 0.06); }
#page-bg-wrap #doces      { background: rgba(26, 15, 7, 0.6); }
#page-bg-wrap #beneficios { background: rgba(26, 15, 7, 0.4); }
#page-bg-wrap #sobre      { background: rgba(26, 15, 7, 0.45); }
#page-bg-wrap #provas     { background: rgba(26, 15, 7, 0.4); }

/* Ajustes de contraste de texto para seções sobre o vídeo */
#page-bg-wrap h2 {
    text-shadow: 0 2px 15px rgba(0,0,0,0.8);
}

#page-bg-wrap p {
    text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}

#page-bg-wrap #dor .dor-headline,
#page-bg-wrap #sobre h2,
#page-bg-wrap #beneficios h2 {
    color: var(--cream);
}

#page-bg-wrap #dor .dor-list li {
    background: rgba(255,245,242,0.07);
    border-left-color: var(--gold);
}

#page-bg-wrap #dor .dor-list p,
#page-bg-wrap #sobre .about-text p,
#page-bg-wrap #solucao .solucao-text p {
    color: rgba(255,245,242,0.8);
}

#page-bg-wrap #solucao .solucao-text h2 { color: var(--cream); }
#page-bg-wrap #solucao .solucao-list li { color: var(--cream); }

#page-bg-wrap .beneficio-card.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}
#page-bg-wrap .beneficio-card.glass-card h3 { color: var(--cream); }
#page-bg-wrap .beneficio-card.glass-card p  { color: rgba(255,245,242,0.7); }
#page-bg-wrap .beneficio-card.glass-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 175, 55, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), inset 0 0 15px rgba(255, 255, 255, 0.05);
}

/* Efeito Espelhado (Shine) para Benefícios com fundo em vídeo */
#page-bg-wrap .beneficio-card.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    transition: all 0.7s ease;
    pointer-events: none;
}

#page-bg-wrap .beneficio-card.glass-card:hover::before {
    left: 150%;
}

#page-bg-wrap .about-text .highlight-text { color: var(--gold-light); }
#page-bg-wrap .about-quote { background: rgba(212,175,55,0.08); }
#page-bg-wrap .about-list li { color: rgba(255,245,242,0.85); }

/* ============================================
   PROVA SOCIAL — CARROSSEL DE COMENTÁRIOS
   ============================================ */
#provas {
    padding: 120px 0 80px;
    text-align: center;
}

#provas h2 { color: var(--cream); }

.provas-sub {
    font-size: 1rem;
    color: rgba(255,245,242,0.65);
    margin-top: 16px;
}

/* Carrossel de Comentários Infinito (Auto-scroll) */
.comentarios-carousel-wrap {
    width: 100%;
    overflow: hidden;
    padding: 40px 0;
    position: relative;
}

.comentarios-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scroll-comments 35s linear infinite;
    padding: 20px 0;
}

@keyframes scroll-comments {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-340px * 5 - 30px * 5)); } /* largura do card + gap * quantidade original */
}

.comentarios-carousel-wrap:hover .comentarios-track {
    animation-play-state: paused;
}

.comentario-card {
    flex: 0 0 340px; /* Largura fixa para facilitar cálculo da animação */
    border-radius: 20px;
    overflow: hidden;
    /* Glassmorphism Minimalista — mesmo padrão dos cards de benefícios */
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-top: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.comentario-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 30px 80px rgba(0,0,0,0.4), 0 0 30px rgba(212,175,55,0.12);
    border-color: rgba(212,175,55,0.4);
}

.comentario-card img {
    width: 100%;
    height: 420px;       /* Altura fixa para alinhar tudo perfeitamente */
    display: block;
    object-fit: cover;   /* PREENCHE tudo sem deixar bordas vazias */
}

/* Botões de navegação */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(212,175,55,0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(212,175,55,0.3);
    color: var(--gold);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, border-color 0.3s, transform 0.2s;
    z-index: 10;
    padding-bottom: 2px; /* compensação óptica da seta */
}

.carousel-btn:hover {
    background: rgba(212,175,55,0.25);
    border-color: rgba(212,175,55,0.6);
    transform: translateY(-50%) scale(1.08);
}

.carousel-btn.prev { left: 20px; }
.carousel-btn.next { right: 20px; }

/* Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(212,175,55,0.3);
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.dot.active {
    background: var(--gold);
    transform: scale(1.4);
}

/* ============================================
   TIPOGRAFIA DA SEÇÃO DE CRIAÇÕES — Hierarquia Premium
   ============================================ */

/* Título da seção: 36-40px com presença */
#doces .section-header h2 {
    font-size: clamp(2rem, 4.5vw, 2.6rem);
    color: var(--cream);
    text-shadow: 0 2px 15px rgba(0,0,0,0.8);
}

/* Container da lista de criações */
.creations-list {
    margin-top: 40px;
}

/* A lista em 2 colunas */
.creations-list ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 60px;       /* espaçamento generoso — "ar" premium */
    max-width: 900px;
    margin: 0 auto;
}

/* Itens: 19px semibold — leitura confortável mesmo sobre vídeo */
.creations-list li {
    font-size: 1.2rem;           /* 19-20px */
    font-weight: 600;            /* semibold — não some no fundo */
    color: rgba(255, 245, 242, 0.92);
    line-height: 1.9;            /* "ar" entre linhas */
    letter-spacing: 0.3px;
    text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}

/* Frase de fechamento da seção */
.creations-footer {
    text-align: center;
    margin-top: 48px;
    font-family: var(--ff-script);
    font-size: 1.8rem;
    color: var(--gold);
    text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

/* ============================================
   GARANTIA
   ============================================ */
#garantia {
    background: transparent; /* Permite ver o VÍDEO de fundo */
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

#garantia .section-header {
    text-align: center;
    margin-bottom: 60px;
}

#garantia h2 { color: var(--gold); }

.garantia-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 CARDS ALINHADOS LATERALMENTE */
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.garantia-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: transform 0.3s;
}

.garantia-item:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
}

.garantia-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.garantia-item h3 {
    color: var(--gold-light);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.garantia-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.5;
}

/* ============================================
   FORMULÁRIO DE CADASTRO (DOBRA ESTRATÉGICA)
   ============================================ */
#cadastro {
    background: var(--cream);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

/* Imagem de fundo fixa de castro (chique) */
.cadastro-bg-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    opacity: 0.05;
    pointer-events: none;
    z-index: 0;
}

.cadastro-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cadastro-text h2 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: var(--choco-dark);
    margin-bottom: 24px;
}

.cadastro-text p {
    font-size: 1.2rem;
    color: var(--text);
    margin-bottom: 30px;
}

.cadastro-form-box {
    background: var(--white);
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    border: 1px solid var(--cream-dark);
}

.cadastro-form-box h3 {
    font-family: var(--ff-display);
    font-size: 2rem;
    color: var(--choco);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input {
    width: 100%;
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid #ddd;
    background: #f9f9f9;
    font-family: var(--ff-body);
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
}

.btn-submit {
    width: 100%;
    padding: 20px;
    border-radius: 50px;
    border: 1px solid rgba(212, 175, 55, 0.5);
    /* Shimmer dourado igual ao design system */
    background: linear-gradient(110deg, #a0832a, 45%, #D4AF37, 55%, #a0832a);
    background-size: 200% 100%;
    animation: shimmer 2.5s linear infinite;
    color: var(--white);
    font-family: var(--ff-body);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.3s;
    margin-top: 10px;
    box-shadow: 0 4px 24px rgba(212, 175, 55, 0.25);
    position: relative;
    overflow: hidden;
}

.btn-submit:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 40px rgba(212, 175, 55, 0.5);
}

@keyframes shimmer {
    from { background-position: 0 0; }
    to   { background-position: -200% 0; }
}

/* Alinhamento da Seção de Criações */
#doces .section-header {
    text-align: center;
    margin-bottom: 60px;
}

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

.creations-list ul {
    justify-content: center;
}


/* ============================================
   ESCASSEZ
   ============================================ */
#escassez {
    padding: 80px 0;
    text-align: center;
}

.escassez-box {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    padding: 50px 30px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.escassez-box:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 175, 55, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), inset 0 0 15px rgba(255, 255, 255, 0.05);
}

.escassez-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    transition: all 0.7s ease;
    pointer-events: none;
}

.escassez-box:hover::before {
    left: 150%;
}

.escassez-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 20px;
}

.escassez-box h2 {
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 15px;
}

.escassez-box p {
    color: var(--cream);
    font-size: 1.1rem;
    line-height: 1.6;
}

.escassez-box p.highlight {
    font-weight: 700;
    color: var(--white);
    margin-top: 15px;
}

/* ============================================
   FAQ / QUEBRA DE OBJEÇÕES
   ============================================ */
#faq {
    padding: 100px 0;
    background: transparent;
}

#faq .section-header {
    text-align: center;
    margin-bottom: 60px;
}

/* Correção do título do FAQ */
#faq .section-header h2 {
    color: var(--cream);
    font-size: clamp(2.5rem, 6vw, 3.8rem); /* Aumenta bastante o tamanho */
}
#faq .section-header .label {
    color: var(--gold);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr; /* Acordeão costuma ficar melhor em 1 coluna, mas 2 também serve. Vamos manter 1 para parecer com o exemplo da WBR */
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

/* Novo Estilo do FAQ (Acordeão / Details) */
.faq-item {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    padding: 0;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 175, 55, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), inset 0 0 15px rgba(255, 255, 255, 0.05);
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    transition: all 0.7s ease;
    pointer-events: none;
}

.faq-item:hover::before {
    left: 150%;
}

.faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    list-style: none; /* Remove seta padrão */
}

.faq-item summary::-webkit-details-marker {
    display: none; /* Remove seta padrão no Chrome/Safari */
}

.faq-item summary h3 {
    color: var(--gold);
    font-size: 1.2rem;
    margin: 0;
    font-family: var(--ff-body);
    font-weight: 600;
}

.faq-icon {
    color: var(--gold-light);
    font-size: 1.8rem;
    line-height: 1;
    font-weight: 300;
    transition: transform 0.3s;
}

.faq-item[open] .faq-icon {
    transform: rotate(45deg); /* Gira o + para virar x */
}

.faq-content {
    padding: 0 30px 25px 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 5px;
    padding-top: 25px;
}

.faq-content p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 10px;
}

.faq-highlight {
    font-weight: 600;
    color: var(--cream) !important;
}

/* ============================================
   FOOTER (PRÊMIUM)
   ============================================ */
footer {
    background: #0f0a05; /* Marrom ultra escuro (Chocolate Profundo) */
    padding: 80px 0 40px;
    color: var(--white);
    position: relative;
    z-index: 10;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr 0.8fr; /* Ajuste para reduzir o buraco da coluna LEGAL */
    gap: 40px;
    max-width: 1100px; /* Limita a largura para aproximar as colunas */
    margin: 0 auto 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo-main {
    height: 100px; /* Aumentado em ~25% para mais autoridade */
    width: auto;
    margin-bottom: 25px;
}

.footer-tagline {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.footer-col h4 {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.footer-links li, .footer-contact li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s;
}

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

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
    color: var(--gold);
    width: 18px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.instagram-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: transform 0.3s;
}

.instagram-link:hover {
    transform: translateX(5px);
}

.social-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: all 0.3s;
    border: 1px solid rgba(212, 175, 55, 0.3); /* Borda dourada sutil */
}

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

.insta-handle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s;
}

.instagram-link:hover .insta-handle {
    color: var(--gold);
}

.social-icon:hover {
    background: var(--gold);
    color: var(--choco-dark);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copy p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-credits {
    display: flex;
    flex-direction: column; 
    align-items: center; /* CENTRALIZADO */
    gap: 8px;
    font-size: 0.65rem; /* DIMINUÍDO */
    color: rgba(255, 255, 255, 0.3);
}

.footer-credits span {
    letter-spacing: 2px;
    text-transform: uppercase;
}

.wbr-logo-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s;
    margin-top: 5px;
}

.wbr-logo-link:hover {
    transform: scale(1.05);
}

.wbr-logo-img {
    height: 45px;
    width: auto;
    mix-blend-mode: screen; /* Remove o fundo escuro da imagem */
    filter: brightness(1.2);
    transition: transform 0.3s, filter 0.3s;
}

.wbr-logo-link:hover .wbr-logo-img {
    transform: scale(1.05);
    filter: brightness(1.4);
}

/* ============================================
   RESPONSIVO
   ============================================ */
@media (max-width: 960px) {
    .about-grid { grid-template-columns: 1fr; gap: 50px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-item.tall { grid-row: span 1; }
    .features-grid { grid-template-columns: 1fr; }
    .creations-list ul { grid-template-columns: 1fr; }
    .garantia-grid { grid-template-columns: 1fr 1fr; }
    .cadastro-container { grid-template-columns: 1fr; gap: 40px; }
    .faq-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 640px) {
    .nav-links { display: none; }
    .nav-cta {
        position: relative;
        right: auto;
        margin: 0 auto;
    }
    .hero-headline { font-size: 2.2rem; }

    /* Vídeo hero: mostra vertical, esconde horizontal */
    .hero-desktop { display: none !important; }
    .hero-mobile { display: block !important; }
    .hero-video {
        object-position: center center;
    }

    .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
    .carousel-btn { display: none; } /* em mobile o swipe basta */
    .comentarios-track { padding: 20px 24px; }
    .comentario-card { width: clamp(220px, 72vw, 300px); }
    .creations-list li { font-size: 1.05rem; }
    .garantia-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-col { display: flex; flex-direction: column; align-items: center; }
    .footer-bottom { flex-direction: column; gap: 30px; text-align: center; }
}
