/* =========================================
   1. RESET E VARIÁVEIS (LIGHT MODE)
========================================= */
:root {
    --bg-color: #f8fafc; 
    --text-main: #0f172a; 
    --text-muted: #64748b; 
    --primary-blue: #0284c7; 
    --highlight: #eab308; 
    --accent-green: #25d366; 
    
    --metal-gradient: linear-gradient(135deg, #ffffff 0%, #e2e8f0 40%, #ffffff 80%, #cbd5e1 100%);
    
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: 1px solid rgba(255, 255, 255, 1);
    --glass-shadow: 0 10px 30px rgba(0, 0, 0, 0.05), inset 0 1px 2px rgba(255, 255, 255, 0.9);
    --invert-icons: 0;
}

/* =========================================
   2. VARIÁVEIS DARK MODE
========================================= */
:root.dark-theme {
    --bg-color: #0f172a; 
    --text-main: #f8fafc; 
    --text-muted: #94a3b8; 
    --primary-blue: #38bdf8; 
    --highlight: #facc15; 
    
    --metal-gradient: linear-gradient(135deg, #1e293b 0%, #334155 40%, #1e293b 80%, #475569 100%);
    
    --glass-bg: rgba(30, 41, 59, 0.65);
    --glass-border: 1px solid rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 1px 2px rgba(255, 255, 255, 0.05);
    --invert-icons: 1;
}

/* =========================================
   3. BASE E TYPOGRAPHY
========================================= */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; }
body { background-color: var(--bg-color); color: var(--text-main); overflow-x: hidden; transition: background-color 0s; }
a { text-decoration: none; color: inherit; transition: color 0.3s, background-color 0.3s; }
ul { list-style: none; }

/* =========================================
   4. UTILS, PRELOADER E PROGRESS BAR
========================================= */
.theme-wave { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background: #0f172a; pointer-events: none; z-index: 9998; clip-path: circle(0px at 50% 50%); }
.warm-overlay { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background: radial-gradient(circle at 50% 80%, rgba(234, 179, 8, 0.08), transparent 70%); z-index: -6; pointer-events: none; opacity: 0; }
#page-progress { position: fixed; top: 0; left: 0; width: 0%; height: 4px; background: var(--highlight); z-index: 10000; transition: width 0.1s ease-out; }

#preloader { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background: var(--bg-color); z-index: 9999; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 20px; }
.spinner { width: 50px; height: 50px; border: 4px solid rgba(2, 132, 199, 0.2); border-top-color: var(--primary-blue); border-radius: 50%; animation: spin 1s infinite linear; }
@keyframes spin { 100% { transform: rotate(360deg); } }
.tw-cursor { display: inline-block; color: var(--highlight); font-weight: 300; animation: blink 0.8s step-end infinite; margin-left: 2px; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
.reveal-word { display: inline-block; overflow: hidden; vertical-align: top; }
.reveal-word span { display: inline-block; }
.magnetic-wrap { display: inline-block; }

/* =========================================
   5. GLASSMORPHISM CORE (O EFEITO DE VIDRO)
========================================= */
.thick-glass {
    background: var(--glass-bg); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border: var(--glass-border); box-shadow: var(--glass-shadow); border-radius: 24px;
    position: relative; overflow: hidden; transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s ease, background 0.4s, border 0.4s;
}
.thick-glass::before {
    content: ""; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.3), transparent 40%);
    z-index: 0; opacity: 0; transition: opacity 0.3s; pointer-events: none;
}
:root.dark-theme .thick-glass::before { background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.1), transparent 40%); }
.thick-glass:hover::before { opacity: 1; }
.thick-glass::after {
    content: ''; position: absolute; top: 0; left: -150%; width: 50%; height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0), rgba(255,255,255,0.4), rgba(255,255,255,0));
    transform: skewX(-20deg); transition: 0.7s; z-index: 10; pointer-events: none;
}
:root.dark-theme .thick-glass::after { background: linear-gradient(to right, rgba(255,255,255,0), rgba(255,255,255,0.1), rgba(255,255,255,0)); }
.thick-glass:hover::after { left: 200%; }
.thick-glass > * { position: relative; z-index: 1; }

/* =========================================
   6. HEADER E NAVEGAÇÃO
========================================= */
header { position: fixed; top: 0; left: 0; width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 0 5%; height: 90px; z-index: 1000; background: transparent; transition: all 0.4s ease; color: #ffffff; }
header.scrolled { background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); color: var(--text-main); box-shadow: 0 4px 20px rgba(0,0,0,0.05); border-bottom: 1px solid var(--glass-border); height: 80px; }
:root.dark-theme header.scrolled { background: rgba(15, 23, 42, 0.95); box-shadow: 0 4px 20px rgba(0,0,0,0.5); }
nav { display: flex; align-items: center; height: 100%; }
nav ul { display: flex; align-items: center; height: 100%; gap: 1rem; } 
nav a { font-weight: 600; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; transition: 0.3s; padding: 10px 20px; border-radius: 4px; display: inline-block;}
nav a:hover { opacity: 0.7; }
.nav-highlight { background-color: var(--highlight) !important; color: #111 !important; font-weight: 800; opacity: 1 !important; }
.social-icons { display: flex; gap: 10px; align-items: center; margin-left: 1rem; }
.social-btn { width: 35px; height: 35px; background: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #111; font-size: 1rem; transition: transform 0.3s, background 0.3s, color 0.3s; cursor: pointer; border: none; }
header.scrolled .social-btn { background: var(--text-main); color: var(--bg-color); }
.social-btn svg { width: 16px; height: 16px; fill: currentColor; pointer-events: none; }
.menu-mobile-btn { display: none; font-size: 1.8rem; cursor: pointer; background: none; border: none; color: inherit; z-index: 1001; }
:root.dark-theme .invert-on-dark { filter: brightness(0) invert(1); }

.mobile-menu-overlay { position: fixed; top: 0; left: 100%; width: 100vw; height: 100dvh; background: var(--glass-bg); backdrop-filter: blur(25px); z-index: 999; display: flex; flex-direction: column; justify-content: center; align-items: center; transition: left 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); }
.mobile-menu-overlay.active { left: 0; }
.mobile-menu-overlay ul { display: flex; flex-direction: column; gap: 2rem; text-align: center; }
.mobile-menu-overlay a { font-size: 2rem; font-weight: 800; color: var(--text-main); padding: 10px 20px; }
.mobile-menu-overlay a.nav-highlight { background: transparent !important; color: var(--highlight) !important; }

/* =========================================
   7. SEÇÕES GERAIS (WRAPPERS E HEADERS)
========================================= */
.section-wrapper { padding: 6rem 5%; max-width: 1200px; margin: 0 auto; position: relative; z-index: 2; }
.section-header { text-align: center; margin-bottom: 5rem; width: 100%; position: relative; }
.section-header h2 { font-size: 2.8rem; font-weight: 900; margin-bottom: 1rem; color: var(--text-main); letter-spacing: -1px; margin-left: auto; margin-right: auto;}
.section-header p { color: var(--text-muted); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* =========================================
   8. HERO SECTION (HOME)
========================================= */
.hero { position: relative; width: 100vw; height: 100dvh; display: flex; flex-direction: column; align-items: center; justify-content: center; overflow: hidden; color: white; text-align: center; }
.video-wrapper { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -2; overflow: hidden; }
.video-wrapper video { position: absolute; top: 50%; left: 50%; min-width: 100%; min-height: 100%; width: auto; height: auto; transform: translate(-50%, -50%); object-fit: cover; pointer-events: none; z-index: -2; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 40%, rgba(0,0,0,0.5) 100%); z-index: -1; }
.hero-content { position: relative; z-index: 10; max-width: 900px; padding: 0 5%; margin-top: 50px; }
.hero h1 { font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 900; line-height: 1.1; margin-bottom: 1.5rem; text-shadow: 0 4px 20px rgba(0,0,0,0.5); letter-spacing: -1px; text-align: center; }
.hero p { font-size: 1.2rem; font-weight: 400; margin-bottom: 2rem; text-shadow: 0 2px 10px rgba(0,0,0,0.5); }
.btn-hero { background: var(--primary-blue); color: white; padding: 16px 40px; border-radius: 50px; font-weight: 700; font-size: 1.1rem; display: inline-block; border: 2px solid var(--primary-blue); transition: background 0.3s; }
.btn-hero:hover { background: transparent; color: var(--primary-blue); }

/* =========================================
   9. STATS & COBERTURA NACIONAL
========================================= */
.stats-section { padding: 4rem 5%; position: relative; z-index: 2; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 1100px; margin: 0 auto; }
.stat-card { padding: 2rem 1.5rem; text-align: center; transition: transform 0.3s ease; }
.stat-card:hover { transform: translateY(-6px); }
.stat-icon { font-size: 2rem; margin-bottom: 0.8rem; display: block; }
.stat-number { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; color: var(--primary-blue); line-height: 1; letter-spacing: -2px; display: block; margin-bottom: 0.4rem; }
.stat-suffix { color: var(--highlight); }
.stat-label { font-size: 0.85rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

.coverage-banner { max-width: 1100px; margin: 16px auto 0; display: flex; align-items: center; justify-content: center; gap: 10px; padding: 14px 28px; border-radius: 50px; font-size: 0.88rem; font-weight: 700; color: var(--text-muted); letter-spacing: 0.3px; flex-wrap: wrap; text-align: center; }
.coverage-dot { width: 8px; height: 8px; background: var(--primary-blue); border-radius: 50%; display: inline-block; box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.2); animation: radar-pulse 2s infinite ease-out; flex-shrink: 0; }
.coverage-divider { width: 1px; height: 16px; background: var(--glass-border); display: inline-block; }
.coverage-highlight { color: var(--text-main); font-weight: 800; }
.coverage-flag { font-size: 1.1rem; }

/* =========================================
   10. TIMELINE (SOBRE NÓS & HOME)
========================================= */
.timeline { position: relative; max-width: 1000px; margin: 0 auto; padding: 2rem 0; }
.timeline-line { position: absolute; width: 6px; background: var(--metal-gradient); top: 0; left: 50%; margin-left: -3px; border-radius: 10px; height: 0; box-shadow: 0 0 20px rgba(2, 132, 199, 0.4); z-index: 0; }
.timeline-item { padding: 20px 40px; position: relative; width: 50%; box-sizing: border-box; z-index: 2; }
.timeline-left { left: 0; text-align: right; }
.timeline-right { left: 50%; text-align: left; }
.timeline-item::after { content: ''; position: absolute; width: 24px; height: 24px; right: -12px; background-color: var(--primary-blue); border: 4px solid var(--bg-color); top: 35px; border-radius: 50%; z-index: 1; box-shadow: 0 0 15px rgba(2, 132, 199, 0.5); transition: border-color 0.4s; }
.timeline-right::after { left: -12px; }
.timeline-content { padding: 2rem; display: inline-block; width: 100%; max-width: 450px; text-align: left; }
.timeline-content h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 0.5rem; color: var(--text-main); display: flex; align-items: center; gap: 10px; }
.timeline-content p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.6; }
.timeline-icon { font-size: 1.5rem; background: var(--metal-gradient); padding: 8px; border-radius: 12px; border: 1px solid var(--glass-border); display: inline-block; }

/* =========================================
   11. CARROSSEL DE PRODUTOS
========================================= */
.carousel-wrapper { position: relative; padding-bottom: 1rem; }
.carousel-nav { position: absolute; top: 40%; transform: translateY(-50%); z-index: 10; width: 45px; height: 45px; border-radius: 50%; background: var(--text-main); border: 1px solid var(--glass-border); display: flex; align-items: center; justify-content: center; color: var(--bg-color); box-shadow: 0 4px 10px rgba(0,0,0,0.05); transition: 0.3s; cursor: pointer;}
.carousel-nav:hover { background: var(--primary-blue); color: white; border-color: var(--primary-blue); transform: translateY(-50%) scale(1.1); }
.nav-prev { left: -20px; } .nav-next { right: -20px; }
.slider-container { display: flex; gap: 24px; overflow-x: auto; padding: 20px 5px; scrollbar-width: none; -ms-overflow-style: none; cursor: grab; user-select: none; touch-action: pan-x; -webkit-overflow-scrolling: touch; scroll-behavior: smooth; }
.slider-container:active { cursor: grabbing; }
.slider-container::-webkit-scrollbar { display: none; }
.product-card { flex: 0 0 300px; height: 440px; padding: 15px; display: flex; flex-direction: column; cursor: grab; }
.product-card:active { cursor: grabbing; }
.product-image-box { width: 100%; height: 260px; background: transparent; border-radius: 16px; margin-bottom: 1.5rem; display: flex; align-items: center; justify-content: center; padding: 10px; perspective: 1000px; }
.product-image-box img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 15px 15px rgba(0,0,0,0.15)); transition: filter 0.3s ease, transform 0.3s ease; pointer-events: none;}
.product-card:hover .product-image-box img { filter: drop-shadow(0 25px 20px rgba(0,0,0,0.2)); transform: scale(1.05); }
.product-card h4 { font-size: 1.15rem; font-weight: 800; margin-bottom: 5px; color: var(--text-main); }
.product-card p { font-size: 0.9rem; color: var(--primary-blue); font-weight: 600; }
.progress-bar-container { width: 200px; height: 4px; background: var(--glass-border); border-radius: 4px; margin: 10px auto 0; overflow: hidden; }
.progress-bar-fill { width: 20%; height: 100%; background: var(--primary-blue); border-radius: 4px; transition: width 0.1s linear; }

/* =========================================
   12. FAQ TABS
========================================= */
.faq-tabs-nav { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 24px; }
.faq-tab-btn { padding: 8px 20px; border-radius: 50px; font-size: 0.82rem; font-weight: 700; border: 2px solid var(--glass-border); background: var(--glass-bg); backdrop-filter: blur(10px); color: var(--text-muted); cursor: pointer; transition: all 0.25s ease; font-family: 'Inter', sans-serif; letter-spacing: 0.3px; }
.faq-tab-btn:hover:not(.active) { border-color: var(--primary-blue); color: var(--primary-blue); transform: translateY(-2px); }
.faq-tab-btn.active { background: var(--primary-blue); color: white; border-color: var(--primary-blue); box-shadow: 0 4px 15px rgba(2, 132, 199, 0.35); }
.faq-tab-content { display: none; animation: faq-fade-in 0.35s ease; }
.faq-tab-content.active { display: block; }
@keyframes faq-fade-in { from { opacity: 0; transform: translateY(10px); } to   { opacity: 1; transform: translateY(0); } }
.faq-tab-card { padding: 28px 32px; }
.faq-tab-card-header { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.faq-tab-number { width: 36px; height: 36px; border-radius: 50%; background: var(--primary-blue); color: white; font-size: 0.85rem; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: 0 4px 12px rgba(2, 132, 199, 0.35); }
.faq-tab-card h4 { font-size: 1.1rem; font-weight: 800; color: var(--text-main); line-height: 1.3; }
.faq-tab-card p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; padding-left: 50px; }
.brands-grid { display: flex; flex-wrap: wrap; gap: 8px; padding-left: 50px; margin-top: 4px; }
.brands-grid span { background: var(--bg-color); border: 1px solid var(--glass-border); color: var(--text-main); font-size: 0.78rem; font-weight: 600; padding: 5px 12px; border-radius: 20px; transition: all 0.2s ease; white-space: nowrap; }
.brands-grid span:hover { background: var(--primary-blue); color: white; border-color: var(--primary-blue); transform: translateY(-2px); }

/* =========================================
   13. ESTILOS DO BLOG (Página de Listagem e Home)
========================================= */
.blog-preview-grid, .blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; max-width: 1200px; margin: 0 auto; padding: 0 5%; }
.blog-grid { margin-bottom: 80px; }
.blog-card { display: flex; flex-direction: column; padding: 20px; transition: transform 0.3s; text-align: left; }
.blog-card:hover { transform: translateY(-10px); }
.blog-img { width: 100%; height: 200px; object-fit: cover; border-radius: 16px; margin-bottom: 20px; }
.blog-card h3 { font-size: 1.3rem; font-weight: 800; color: var(--text-main); margin-bottom: 10px; line-height: 1.3; }
.blog-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; flex-grow: 1; margin-bottom: 20px; }
.btn-ler-mais { color: var(--primary-blue); font-weight: 800; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 1px; align-self: flex-start; }
.btn-ler-mais:hover { color: var(--highlight); }
.btn-ver-todos { margin-top: 50px; text-align: center; }

/* =========================================
   14. ESTILOS DA PÁGINA INTERNA DE BLOG (Artigo Completo)
========================================= */
.post-container { max-width: 900px; margin: 140px auto 80px; padding: 0 5%; position: relative; z-index: 2; }
.post-header { text-align: center; margin-bottom: 40px; }
.post-header h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; color: var(--text-main); margin-bottom: 15px; line-height: 1.2; }
.post-hero-img { width: 100%; height: 400px; object-fit: cover; border-radius: 20px; margin-bottom: 40px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.post-content h2 { font-size: 1.8rem; font-weight: 800; color: var(--text-main); margin: 40px 0 15px; }
.post-content p { color: var(--text-muted); font-size: 1.1rem; line-height: 1.8; margin-bottom: 20px; }
.post-content ul { margin-bottom: 20px; padding-left: 20px; }
.post-content li { color: var(--text-muted); font-size: 1.1rem; line-height: 1.8; margin-bottom: 8px; list-style-type: disc; }
.btn-voltar { display: inline-block; margin-bottom: 30px; font-weight: 700; color: var(--primary-blue); transition: color 0.3s; }
.btn-voltar:hover { color: var(--highlight); }

/* =========================================
   15. PÁGINAS INTERNAS (Cabeçalho Geral e Sobre Nós)
========================================= */
.page-header { padding: 140px 5% 60px; text-align: center; position: relative; z-index: 2;}
.page-header h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 900; margin-bottom: 15px; color: var(--text-main); }
.page-header p { color: var(--text-muted); font-size: 1.1rem; }
.page-header-internal { padding: 160px 5% 40px; text-align: center; position: relative; z-index: 2; }
.page-header-internal h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 900; color: var(--text-main); margin-bottom: 15px; letter-spacing: -1px; }
.page-header-internal p { color: var(--text-muted); font-size: 1.2rem; max-width: 700px; margin: 0 auto; line-height: 1.6; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; max-width: 1200px; margin: 0 auto 6rem; padding: 0 5%; align-items: center; position: relative; z-index: 2;}
.about-text h2 { font-size: 2.2rem; font-weight: 800; color: var(--text-main); margin-bottom: 20px; }
.about-text p { color: var(--text-muted); font-size: 1.05rem; line-height: 1.8; margin-bottom: 20px; }
.about-img { width: 100%; height: 100%; min-height: 400px; border-radius: 24px; object-fit: cover; box-shadow: var(--glass-shadow); }

/* =========================================
   16. LETREIRO INFINITO E CONTATO/CAFÉ
========================================= */
.marquee-section { background: var(--text-main); color: var(--bg-color); padding: 20px 0; overflow: hidden; white-space: nowrap; position: relative; z-index: 2; border-top: 2px solid var(--highlight); border-bottom: 2px solid var(--highlight); margin-top: 4rem; }
.marquee-content { display: inline-block; font-size: 1.5rem; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; animation: marquee 25s linear infinite; }
.marquee-content span { margin: 0 30px; color: transparent; -webkit-text-stroke: 1px rgba(148, 163, 184, 0.5); }
.marquee-content span.solid { color: var(--highlight); -webkit-text-stroke: 0; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.cafe-section { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; padding: 4rem; background: linear-gradient(to right, var(--glass-bg) 60%, transparent 100%); }
.cafe-info { padding-right: 2rem; }
.cafe-info h2 { font-size: 2.5rem; font-weight: 900; margin-bottom: 1rem; color: var(--text-main); letter-spacing: -1px; }
.cafe-info p { color: var(--text-muted); margin-bottom: 2.5rem; font-size: 1.1rem; }
.contact-item { display: flex; align-items: center; gap: 15px; margin-bottom: 1.5rem; transition: transform 0.3s; }
.contact-item:hover { transform: translateX(10px); }
.contact-icon { position: relative; width: 50px; height: 50px; background: var(--text-main); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--bg-color); font-size: 1.2rem; box-shadow: 0 4px 10px rgba(0,0,0,0.05); }
.icon-radar::before { content: ''; position: absolute; width: 100%; height: 100%; border-radius: 50%; border: 2px solid var(--primary-blue); animation: radar-pulse 2s infinite ease-out; }
@keyframes radar-pulse { 0% { transform: scale(1); opacity: 0.8; } 100% { transform: scale(2); opacity: 0; } }
.contact-text h5 { font-size: 1rem; font-weight: 800; color: var(--text-main); }
.contact-text p { font-size: 0.9rem; color: var(--text-muted); }
.map-box { height: 450px; border-radius: 20px; overflow: hidden; padding: 10px; background: var(--glass-border); }
.map-box iframe { width: 100%; height: 100%; border-radius: 12px; border: none; pointer-events: auto; filter: var(--invert-icons); transition: filter 0.4s; }

/* =========================================
   17. WHATSAPP FLUTUANTE
========================================= */
@keyframes pulse-glow { 0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); } 70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); } 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); } }
.float-wpp { position: fixed; bottom: 30px; right: 30px; background: var(--accent-green); color: white; width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 9999; transition: 0.3s; font-size: 30px; animation: pulse-glow 2.5s infinite; }
.float-wpp:hover { transform: translateY(-5px) scale(1.05); animation: none; box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5); }

/* =========================================
   18. FOOTER
========================================= */
footer { background: var(--text-main); color: var(--bg-color); padding: 4rem 5% 2rem; border-top: 1px solid var(--glass-border); position: relative; z-index: 2; overflow: hidden; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 4rem; max-width: 1400px; margin: 0 auto 3rem; }
.footer-logo { font-size: 1.8rem; font-weight: 900; color: inherit; margin-bottom: 1rem; display: flex; align-items: center; gap: 5px; letter-spacing: -1px;}
.footer-col h4 { font-weight: 800; margin-bottom: 1.2rem; color: inherit; text-transform: uppercase; font-size: 0.9rem; letter-spacing: 1px;}
.footer-col li { margin-bottom: 0.8rem; color: var(--text-muted); font-size: 0.95rem; }
.footer-col a:hover { color: var(--highlight); padding-left: 5px; }
.footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); color: var(--text-muted); font-size: 0.85rem; }

/* =========================================
   19. BACKGROUNDS ANIMADOS (BLOBS E TRIÂNGULOS)
========================================= */
.background-blobs { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; z-index: -5; overflow: hidden; background: transparent; }
.blob { position: absolute; filter: blur(90px); opacity: 0.5; animation: blob-morph 15s infinite alternate ease-in-out; }
.blob-1 { width: 500px; height: 500px; background: #e0f2fe; top: -100px; left: -100px; }
.blob-2 { width: 400px; height: 400px; background: #dcfce7; bottom: -50px; right: -50px; animation-delay: -5s; animation-direction: alternate-reverse; }
:root.dark-theme .blob-1 { background: #1e3a8a; }
:root.dark-theme .blob-2 { background: #064e3b; }
@keyframes blob-morph {
    0% { border-radius: 40% 60% 70% 30% / 40% 40% 60% 50%; transform: translate(0, 0) rotate(0deg) scale(1); }
    34% { border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%; transform: translate(50px, -50px) rotate(15deg) scale(1.1); }
    67% { border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%; transform: translate(-30px, 30px) rotate(-10deg) scale(0.9); }
    100% { border-radius: 40% 60% 70% 30% / 40% 40% 60% 50%; transform: translate(0, 0) rotate(0deg) scale(1); }
}
.background-triangles { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -4; pointer-events: none; overflow: hidden; }
.glass-triangle { position: absolute; background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border: 1px solid rgba(255, 255, 255, 0.2); box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
.t1 { width: 300px; height: 300px; top: 20%; left: 10%; clip-path: polygon(50% 0%, 0% 100%, 100% 100%); transform: rotate(15deg); }
.t2 { width: 400px; height: 400px; top: 60%; right: -5%; clip-path: polygon(20% 0%, 80% 0%, 50% 100%); transform: rotate(-10deg); }
.t3 { width: 200px; height: 200px; top: 80%; left: 30%; clip-path: polygon(0% 20%, 100% 50%, 0% 80%); transform: rotate(5deg); }
.t4 { width: 250px; height: 250px; top: 10%; right: 20%; clip-path: polygon(50% 0%, 100% 100%, 0% 100%); transform: rotate(25deg); opacity: 0.7; }

/* =========================================
   20. RESPONSIVIDADE (MOBILE FIXES)
========================================= */
@media (max-width: 1024px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    header { height: 70px; }
    .cafe-section { grid-template-columns: 1fr; padding: 2rem; text-align: center; }
    .cafe-info { padding-right: 0; }
    .contact-item { justify-content: center; text-align: left; }
    .nav-prev { left: 0; } .nav-next { right: 0; }
}
@media (max-width: 768px) {
    header nav { display: none; }
    header { height: 70px; padding: 0 15px; }
    .logo img { max-height: 45px !important; }
    .social-icons { display: flex; margin-left: auto; gap: 5px; }
    .social-icons .social-btn[aria-label="Instagram"] { display: none; }
    .menu-mobile-btn { display: block; color: var(--text-main); margin-left: 15px; }
    header.scrolled .menu-mobile-btn { color: var(--text-main); }
    :root.dark-theme header.scrolled .menu-mobile-btn { color: white; }
    .product-card { flex: 0 0 280px; }
    .carousel-nav { display: none; }
    .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .timeline-line { left: 20px; }
    .timeline-item { width: 100%; padding-left: 60px; padding-right: 0; }
    .timeline-left { text-align: left; }
    .timeline-right { left: 0; text-align: left; }
    .timeline-item::after { left: 8px !important; right: auto; }
    .faq-tab-btn { font-size: 0.75rem; padding: 6px 14px; }
    .faq-tab-card { padding: 20px; }
    .faq-tab-card p { padding-left: 0; }
    .brands-grid { padding-left: 0; }
    .about-grid { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
    .post-hero-img { height: 250px; }
}
/* =========================================
   BOTÃO SECUNDÁRIO (OUTLINE) ESTÁVEL
========================================= */
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 40px;
    border: 2px solid var(--primary-blue);
    background-color: transparent;
    color: var(--primary-blue);
    font-weight: 800;
    font-size: 1.05rem;
    border-radius: 50px;
    transition: all 0.3s ease; /* Transição suave e controlada */
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
footer { 
    background: #0f172a !important; 
    color: #f8fafc !important; 
    padding: 4rem 5% 2rem; 
    border-top: 1px solid rgba(255, 255, 255, 0.1); 
    position: relative; 
    z-index: 2; 
    overflow: hidden; 
}

.footer-col li { 
    margin-bottom: 0.8rem; 
    color: #94a3b8 !important; 
    font-size: 0.95rem; 
}

.footer-bottom { 
    text-align: center; 
    padding-top: 2rem; 
    border-top: 1px solid rgba(255, 255, 255, 0.1); 
    color: #94a3b8 !important; 
    font-size: 0.85rem; 
}
.btn-outline:hover {
    background-color: var(--primary-blue);
    color: #ffffff; /* Letra fica branca no hover */
    transform: translateY(-4px); /* Flutua sutilmente para cima, sem tremer */
    box-shadow: 0 10px 20px rgba(2, 132, 199, 0.25);
}.blog-internal-img {
    width: 100%;
    height: 120px; /* Altura fixa para manter o alinhamento */
    object-fit: cover;
    border-radius: 12px;
    margin: 15px 0;
    opacity: 0.8; /* Um toque leve para não brigar com o texto */
    transition: opacity 0.3s;
}

.blog-card:hover .blog-internal-img {
    opacity: 1;
}
