/*
Theme Name: SevenVision Theme
Author: Seu Nome
Description: Tema personalizado Versículo Vivo - Completo
Version: 1.9.1
*/

/* =========================================
   1. RESET, VARIÁVEIS E BASE
   ========================================= */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --font-title: 'Marcellus', serif;
    --font-text: 'Sora', sans-serif;
    --color-white: #ffffff;
    --color-gray: #f0f0f0;
    --color-text-dark: #2A2A2A;
    --color-text-light: #666666;
    --color-btn: #A0A08B; /* Bege/Oliva Base */
    --color-olive-dark: #555540;
    --color-btn-hover: #8b8b76;
    --container-width: 1320px;
    --section-spacing: 100px;
    --color-bg-body: #F8F7F2; 
    --shadow-soft: 0 10px 40px -10px rgba(0,0,0,0.06);
    --border-radius-card: 16px;
}

body {
    font-family: var(--font-text);
    color: var(--color-text-dark);
    background-color: var(--color-bg-body);
    background-image: 
        url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E"),
        radial-gradient(circle at 50% 0%, #FFFFFF 0%, #F0EEE6 100%);
    background-blend-mode: overlay, normal;
    background-attachment: fixed;
    overflow-x: hidden;
    line-height: 1.6;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; padding: 0; margin: 0; }

/* CORREÇÃO DE RESPONSIVIDADE GLOBAL */
img { max-width: 100%; height: auto; display: block; }
video, iframe, embed, object, table { max-width: 100%; height: auto; }
table { width: 100%; border-collapse: collapse; }
/* ---------------------------------- */

svg { width: 18px; height: 18px; fill: currentColor; display: block; }

.container { max-width: var(--container-width); margin: 0 auto; padding: 0 20px; width: 100%; }

/* =========================================
   2. UTILITÁRIOS (Botões e Títulos)
   ========================================= */
.section-subtitle {
    display: flex; align-items: center; gap: 12px;
    font-family: var(--font-text); font-size: 0.85rem;
    letter-spacing: 3px; text-transform: uppercase;
    margin-bottom: 20px; font-weight: 600;
    color: var(--color-btn);
}
.section-subtitle::before {
    content: ''; display: inline-block; width: 8px; height: 8px;
    background-color: var(--color-btn); border-radius: 50%;
}
.section-subtitle.white { color: #fff; }
.section-subtitle.white::before { background-color: #fff; }

h2 {
    font-family: var(--font-title); font-size: 3rem; line-height: 1.2;
    margin-bottom: 25px; color: var(--color-text-dark); font-weight: 400;
}
p.section-description {
    font-size: 1.1rem; line-height: 1.7; color: var(--color-text-light); margin-bottom: 40px;
}

.white-card-bg {
    background-color: #fff;
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow-soft);
    padding: 40px;
}

/* Botões */
.btn {
    padding: 16px 35px; border-radius: 6px; text-decoration: none;
    font-weight: 600; display: inline-block; font-family: var(--font-text);
    transition: all 0.3s ease; cursor: pointer; font-size: 0.95rem;
    border: 2px solid transparent;
}
.btn-primary {
    background-color: var(--color-btn); color: var(--color-white) !important;
    border-color: var(--color-btn);
}
.btn-primary:hover {
    background-color: var(--color-btn-hover); border-color: var(--color-btn-hover);
    transform: translateY(-3px);
}
.btn-outline {
    background-color: transparent; color: var(--color-text-dark);
    border: 2px solid #D6D6D6;
}
.btn-outline:hover {
    border-color: var(--color-btn); background-color: var(--color-btn);
    color: var(--color-white); transform: translateY(-3px);
}
.btn-white-outline {
    background-color: transparent; color: #fff; border: 2px solid #fff;
}
.btn-white-outline:hover {
    background-color: #fff; color: var(--color-text-dark);
}
.btn-hero {
    background-color: var(--color-btn); color: var(--color-white) !important;
    padding: 16px 40px; border-radius: 6px; font-weight: 600;
    display: inline-block; transition: transform 0.3s, background-color 0.3s; border: none;
}
.btn-hero:hover {
    transform: translateY(-3px); background-color: var(--color-btn-hover);
}
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }

/* =========================================
   3. TOP BAR E HEADER
   ========================================= */
.top-bar { background-color: #1a1a1a; color: #fff; padding: 10px 0; font-size: 0.85rem; border-bottom: 1px solid rgba(255,255,255,0.1); position: relative; z-index: 1001; }
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; }
.top-left, .top-right { display: flex; align-items: center; gap: 20px; }
.contact-info-item { display: flex; align-items: center; gap: 8px; opacity: 0.9; }
.contact-info-item svg { color: var(--color-btn); }
.social-icons { display: flex; gap: 15px; border-left: 1px solid rgba(255,255,255,0.2); padding-left: 20px; }
.social-icons a, .search-icon { color: #fff; opacity: 0.8; display: flex; align-items: center; cursor: pointer; }
.social-icons a:hover, .search-icon:hover { opacity: 1; }

.site-header { 
    position: absolute; top: 55px; left: 0; width: 100%; z-index: 1000; 
    background: transparent; border-bottom: 1px solid rgba(255,255,255,0.15);
    transition: all 0.3s ease;
}
.header-inner { 
    max-width: var(--container-width); margin: 0 auto; padding: 0 20px; 
    display: flex; align-items: center; justify-content: space-between; 
}
.logo img { max-height: 90px; width: auto; }

.main-nav { margin-left: auto; margin-right: 20px; }
.main-nav ul { display: flex; gap: 25px; margin: 0; padding: 0; }
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a { 
    color: #fff; font-family: var(--font-title); font-size: 1rem; 
    opacity: 0.9; padding-bottom: 5px; display: flex; align-items: center; gap: 4px;
}
.main-nav > ul > li:hover > a { opacity: 1; color: var(--color-btn); }
.main-nav > ul > li > a::after {
    content: ''; position: absolute; width: 0; height: 1px; bottom: 0; left: 0; 
    background-color: var(--color-white); transition: width 0.3s ease;
}
.main-nav > ul > li:hover > a::after { width: 100%; }

/* Dropdown */
.sub-menu { 
    position: absolute; top: 100%; left: 0; width: 240px; background-color: var(--color-btn);
    padding: 15px 0; border-radius: 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    opacity: 0; visibility: hidden; transform: translateY(10px); transition: all 0.3s ease;
    display: flex; flex-direction: column; gap: 0 !important; z-index: 1100;
}
.main-nav li:hover .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.sub-menu a { 
    padding: 12px 20px; border-bottom: 1px solid rgba(255,255,255,0.1); 
    color: #fff !important; font-size: 0.9rem; display: block; font-family: var(--font-text);
}
.sub-menu a:hover { background-color: rgba(0,0,0,0.1); padding-left: 25px; }

.btn-header { 
    background-color: var(--color-btn); color: #fff !important; padding: 12px 30px; 
    border-radius: 30px; font-weight: 600; font-size: 0.9rem; margin-left: 20px;
}
.mobile-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 1002; }
.bar { width: 25px; height: 2px; background-color: #fff; transition: all 0.3s ease; }
.mobile-toggle.open .bar:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.open .bar:nth-child(2) { opacity: 0; }
.mobile-toggle.open .bar:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }


/* =========================================
   4. HERO SECTION (SLIDER)
   ========================================= */
.hero-section { position: relative; height: 650px; width: 100%; overflow: hidden; color: var(--color-white); }
.slider-wrapper { display: flex; width: 100%; height: 100%; transition: transform 0.8s ease-in-out; }
.slide { min-width: 100%; height: 100%; position: relative; background-size: cover; background-position: center center; display: flex; align-items: center; }
.slide-1 { background-image: none; background-color: #1a1a1a; }
.slide-2 { background-image: url('https://images.unsplash.com/photo-1573497019940-1c28c88b4f3e?q=80&w=2070&auto=format&fit=crop'); }
.slide::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(90deg, rgba(20,20,20,0.9) 0%, rgba(20,20,20,0.7) 40%, rgba(20,20,20,0.2) 100%); z-index: 1; }
.container-hero { position: relative; z-index: 2; max-width: var(--container-width); margin: 0 auto; padding: 0 20px; width: 100%; }
.hero-content { max-width: 700px; margin-top: 60px; opacity: 0; transform: translateY(30px); transition: all 0.8s ease 0.3s; }
.slide.active .hero-content { opacity: 1; transform: translateY(0); }
.hero-subtitle { display: flex; align-items: center; gap: 12px; font-family: var(--font-text); font-size: 0.85rem; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 20px; font-weight: 600; color: var(--color-white); }
.hero-subtitle::before { content: ''; display: inline-block; width: 8px; height: 8px; background-color: var(--color-white); border-radius: 50%; }
h1 { font-family: var(--font-title); font-size: 4.2rem; line-height: 1.1; margin-bottom: 30px; font-weight: 400; }
.hero-description { font-size: 1.1rem; line-height: 1.6; margin-bottom: 45px; color: var(--color-gray); max-width: 550px; }
.slider-dots { position: absolute; bottom: 60px; left: max(20px, calc((100% - 1320px) / 2 + 20px)); display: flex; gap: 15px; z-index: 10; }
.dot { width: 12px; height: 12px; border-radius: 50%; background-color: rgba(255,255,255,0.3); cursor: pointer; transition: all 0.3s; border: 2px solid transparent; }
.dot.active { background-color: transparent; border-color: #fff; transform: scale(1.3); }

/* =========================================
   5. SEÇÃO HELP & BIBLE CTA
   ========================================= */
.help-section { padding: var(--section-spacing) 0; position: relative; background-color: transparent; }
.help-header { text-align: center; max-width: 800px; margin: 0 auto 60px; }
.help-header .section-subtitle { justify-content: center; }
.help-list-wrapper { background-color: #fff; border-radius: var(--border-radius-card); box-shadow: var(--shadow-soft); padding: 0 40px; margin-bottom: 60px; }
.help-list { display: flex; flex-direction: column; width: 100%; }
.help-item { display: flex; align-items: center; padding: 40px 0; border-bottom: 1px solid #E0E0E0; transition: all 0.3s ease; }
.help-item:first-child { border-top: 1px solid #E0E0E0; }
.help-item:last-child { border-bottom: none; }
.help-item:hover { background-color: #fafafa; padding-left: 20px; padding-right: 20px; }
.help-icon { width: 80px; flex-shrink: 0; display: flex; align-items: center; justify-content: flex-start; }
.help-icon svg { width: 35px; height: 35px; stroke: var(--color-text-dark); stroke-width: 1.5; fill: none; transition: stroke 0.3s; }
.help-item:hover .help-icon svg { stroke: var(--color-btn); }
.help-title { flex: 1; font-family: var(--font-title); font-size: 2rem; color: var(--color-text-dark); margin: 0; font-weight: 400; }
.help-desc { flex: 1.5; font-size: 1rem; line-height: 1.6; color: var(--color-text-light); margin: 0; }

/* Bible CTA */
.bible-cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 20px; }
.bible-card {
    position: relative; height: 350px; border-radius: var(--border-radius-card);
    overflow: hidden; display: flex; align-items: center; justify-content: center;
    text-align: center; box-shadow: var(--shadow-soft); color: #fff; transition: transform 0.3s;
}
.bible-card:hover { transform: translateY(-5px); }
.bible-card-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center; transition: transform 0.8s ease;
}
.bible-card:hover .bible-card-bg { transform: scale(1.1); }
.bible-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(42,42,42,0.6), rgba(20,20,20,0.8)); z-index: 1;
}
.bible-content {
    position: relative; z-index: 2; padding: 40px;
    display: flex; flex-direction: column; align-items: center; gap: 20px;
}
.bible-icon svg { width: 40px; height: 40px; stroke: #fff; stroke-width: 1.2; }
.bible-line { width: 50px; height: 2px; background-color: var(--color-btn); margin: 5px 0; }
.bible-title { font-family: var(--font-title); font-size: 2.2rem; font-weight: 400; margin: 0; }
.btn-bible {
    background-color: var(--color-btn); color: #fff; padding: 14px 35px; border-radius: 50px;
    text-decoration: none; font-weight: 600; font-size: 0.9rem; transition: background 0.3s; margin-top: 10px;
}
.btn-bible:hover { background-color: var(--color-btn-hover); }

/* =========================================
   6. ABOUT SECTION
   ========================================= */
.about-section { padding: var(--section-spacing) 0; padding-bottom: 50px; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-image-wrapper { width: 100%; height: 600px; border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-soft); }
.about-image-wrapper img { width: 100%; height: 100%; object-fit: cover; }
.vision-mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-bottom: 50px; }
.vm-block h3 { font-family: var(--font-title); font-size: 1.5rem; margin-bottom: 20px; color: var(--color-text-dark); font-weight: 400; }
.vm-block p { font-size: 1rem; line-height: 1.6; color: var(--color-text-light); }
.mission-list { list-style: none; padding: 0; }
.mission-list li { display: flex; align-items: center; gap: 12px; margin-bottom: 15px; font-size: 1rem; color: var(--color-text-dark); font-weight: 500; }
.check-icon { display: flex; align-items: center; justify-content: center; width: 22px; height: 22px; background-color: transparent; border: 2px solid var(--color-btn); color: var(--color-btn); border-radius: 50%; font-size: 12px; font-weight: bold; }
.about-buttons { display: flex; gap: 20px; }

/* Newsletter */
.newsletter-section { padding: 50px 0 var(--section-spacing) 0; }
.newsletter-box { background-color: var(--color-btn); color: #fff; border-radius: var(--border-radius-card); padding: 60px; display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px; align-items: center; box-shadow: var(--shadow-soft); }
.news-text h3 { font-family: var(--font-title); font-size: 2rem; margin-bottom: 15px; font-weight: 400; color: #fff; }
.news-text p { font-size: 1rem; opacity: 0.9; margin: 0; line-height: 1.6; }
.news-form { display: flex; gap: 15px; width: 100%; }
.news-input { flex-grow: 1; padding: 15px 20px; border: none; border-radius: 6px; font-family: var(--font-text); outline: none; }
.btn-news { background-color: #fff; color: var(--color-btn); border: none; font-weight: 600; padding: 0 30px; border-radius: 6px; cursor: pointer; transition: background 0.3s; }
.btn-news:hover { background-color: #f0f0f0; }

/* =========================================
   7. SERVICES SECTION
   ========================================= */
.services-section { padding: var(--section-spacing) 0; }
.services-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 60px; }
.services-header h2 { margin-bottom: 0; max-width: 650px; font-size: 3.2rem; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.service-card { position: relative; aspect-ratio: 1 / 1; width: 100%; border-radius: var(--border-radius-card); overflow: hidden; background-size: cover; background-position: center; transition: transform 0.3s ease; cursor: pointer; box-shadow: var(--shadow-soft); }
.service-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.service-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%); z-index: 1; }
.service-content { position: absolute; top: 0; left: 0; width: 100%; height: 100%; padding: 30px; z-index: 2; display: flex; flex-direction: column; justify-content: space-between; }
.service-content h3 { font-family: var(--font-title); font-size: 1.6rem; color: #fff; font-weight: 400; line-height: 1.3; margin: 0; }
.read-more-link { color: #fff; text-decoration: none; font-size: 1rem; font-weight: 600; display: flex; align-items: center; justify-content: space-between; width: 100%; opacity: 0.9; transition: opacity 0.3s; }
.read-more-link:hover { opacity: 1; }
.arrow-icon { font-size: 1.2rem; }

/* =========================================
   8. INFOPRODUCTS & WCU
   ========================================= */
.infoproducts-section { padding: var(--section-spacing) 0; }
.infoproducts-header { text-align: center; max-width: 800px; margin: 0 auto 60px; }
.infoproducts-header .section-subtitle { justify-content: center; }
.info-card { background: #fff; border-radius: var(--border-radius-card); overflow: hidden; box-shadow: var(--shadow-soft); transition: transform 0.3s; position: relative; }
.info-card:hover { transform: translateY(-10px); }
.info-card-badge { position: absolute; top: 20px; right: 20px; background-color: var(--color-btn); color: #fff; padding: 5px 12px; border-radius: 20px; font-size: 0.75rem; font-weight: 600; z-index: 2; }
.info-image { height: 200px; background-color: #2A2A2A; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.info-image img { width: 100%; height: 100%; object-fit: cover; opacity: 0.8; transition: opacity 0.3s; }
.info-card:hover .info-image img { opacity: 1; }
.info-details { padding: 30px; text-align: center; }
.info-details h3 { font-family: var(--font-title); font-size: 1.4rem; margin-bottom: 10px; color: var(--color-text-dark); }
.info-details p { font-size: 0.9rem; color: var(--color-text-light); margin-bottom: 20px; }

/* WCU Section */
.wcu-section { padding: var(--section-spacing) 0; }
.wcu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.wcu-images { position: relative; height: 650px; }
.wcu-img-vertical { position: absolute; top: 0; left: 0; width: 55%; height: 75%; background-image: url('https://images.unsplash.com/photo-1551847677-dc82d764e1eb?q=80&w=2070&auto=format&fit=crop'); background-size: cover; background-position: center; border-radius: var(--border-radius-card); z-index: 1; box-shadow: var(--shadow-soft); }
.wcu-img-horizontal { position: absolute; bottom: 0; right: 0; width: 65%; height: 50%; background-image: url('https://images.unsplash.com/photo-1573496359142-b8d87734a5a2?q=80&w=2069&auto=format&fit=crop'); background-size: cover; background-position: center; border-radius: var(--border-radius-card); z-index: 2; border: 8px solid var(--color-bg-body); box-shadow: var(--shadow-soft); }
.wcu-badge { position: absolute; top: 50%; left: 45%; transform: translate(-50%, -50%); width: 140px; height: 140px; background-color: #fff; border-radius: 50%; z-index: 3; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 30px rgba(0,0,0,0.15); }
.wcu-badge-inner { position: relative; width: 100%; height: 100%; animation: spinText 10s linear infinite; }
.wcu-badge svg { width: 100%; height: 100%; }
.wcu-badge-icon { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); color: var(--color-btn); font-size: 24px; }
@keyframes spinText { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.wcu-content { padding-left: 20px; }
.wcu-features { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin: 40px 0; }
.wcu-feature-item { display: flex; align-items: center; gap: 15px; }
.feature-icon-box { width: 50px; height: 50px; background-color: var(--color-btn); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.feature-icon-box svg { width: 24px; height: 24px; fill: #fff; }
.wcu-feature-item span { font-family: var(--font-title); font-size: 1.1rem; color: var(--color-text-dark); line-height: 1.3; }
.wcu-extra h3 { font-family: var(--font-title); font-size: 1.8rem; margin-bottom: 15px; font-weight: 400; }
.wcu-extra p { margin-bottom: 30px; color: var(--color-text-light); line-height: 1.7; }

/* Prayer Banner */
.prayer-banner {
    padding: 120px 0; background-color: var(--color-btn);
    background-image: url('https://images.unsplash.com/photo-1629831427187-51167425121e?q=80&w=2070&auto=format&fit=crop');
    background-size: cover; background-position: center; background-attachment: fixed;
    position: relative; color: #fff; text-align: center; background-blend-mode: multiply;
}
.prayer-banner::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(85, 85, 64, 0.4); z-index: 1; }
.prayer-content { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; }
.prayer-content h2 { font-size: 3.5rem; color: #fff; margin-bottom: 20px; text-shadow: 0 2px 10px rgba(0,0,0,0.2); }
.prayer-content p { font-size: 1.2rem; opacity: 0.95; margin-bottom: 30px; }

/* =========================================
   9. CASE STUDIES, FAQ & PRODUCTS
   ========================================= */
.wwd-section { padding: var(--section-spacing) 0; }
.wwd-header { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: flex-end; margin-bottom: 60px; }
.wwd-header h2 { max-width: 600px; font-size: 3.2rem; margin-bottom: 0; }
.wwd-header p.section-description { margin-bottom: 0; }
.wwd-video-box { position: relative; width: 100%; height: 600px; background-image: url('https://images.unsplash.com/photo-1551847677-dc82d764e1eb?q=80&w=2070&auto=format&fit=crop'); background-size: cover; background-position: center; border-radius: var(--border-radius-card); overflow: hidden; box-shadow: var(--shadow-soft); }
.play-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 90px; height: 90px; background-color: rgba(255,255,255,0.25); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: transform 0.3s ease; border: 3px solid #fff; }
.play-btn::before { content: ''; display: block; width: 0; height: 0; border-top: 15px solid transparent; border-bottom: 15px solid transparent; border-left: 25px solid #fff; margin-left: 5px; }
.play-btn:hover { transform: translate(-50%, -50%) scale(1.1); }

.case-studies-section { padding: var(--section-spacing) 0; overflow: hidden; }
.case-studies-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 60px; }
.case-studies-header h2 { margin-bottom: 0; max-width: 600px; }
.cs-slider-container { width: 100%; overflow: hidden; }
.cs-slider-track { display: flex; gap: 30px; transition: transform 0.5s ease; }
.case-study-card { display: flex; flex-direction: column; min-width: calc(33.333% - 20px); flex-shrink: 0; }
.cs-card-image { position: relative; width: 100%; height: 280px; border-radius: var(--border-radius-card); overflow: hidden; margin-bottom: 25px; box-shadow: var(--shadow-soft); }
.cs-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.case-study-card:hover .cs-card-image img { transform: scale(1.05); }
.case-study-card h3 { font-family: var(--font-title); font-size: 1.5rem; color: var(--color-text-dark); margin-bottom: 15px; font-weight: 400; }
.cs-learn-more { text-decoration: none; color: var(--color-text-light); font-family: var(--font-text); font-size: 1rem; font-weight: 600; display: inline-flex; align-items: center; gap: 10px; transition: color 0.3s ease; }
.cs-learn-more svg { width: 20px; height: 20px; fill: currentColor; transition: transform 0.3s ease; }
.cs-learn-more:hover { color: var(--color-btn); }
.cs-learn-more:hover svg { transform: translateX(5px); }
.cs-controls { display: flex; gap: 15px; }
.cs-nav-btn { width: 50px; height: 50px; border: 2px solid #E0E0E0; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.3s; color: var(--color-text-dark); background: transparent; }
.cs-nav-btn:hover { border-color: var(--color-btn); background-color: var(--color-btn); color: #fff; }

/* FAQ */
.faq-section { padding: var(--section-spacing) 0; position: relative; overflow: hidden; background: rgba(255, 255, 255, 0.85); z-index: 1; }
.faq-section::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 80%; height: 80%; background-image: url('https://images.unsplash.com/photo-1507643192792-213580d3a301?q=80&w=2070&auto=format&fit=crop'); background-position: center; background-size: contain; background-repeat: no-repeat; filter: blur(60px); opacity: 0.25; z-index: -1; border-radius: 50%; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.faq-image-wrapper { position: sticky; top: 100px; }
.faq-image-placeholder { width: 100%; height: 600px; background-color: #E5E5E5; border-radius: var(--border-radius-card); display: flex; justify-content: center; align-items: center; color: #999; font-weight: 500; background-image: url('https://images.unsplash.com/photo-1601142634808-38923eb7c560?q=80&w=2070&auto=format&fit=crop'); background-size: cover; background-position: center; box-shadow: var(--shadow-soft); }
.faq-accordion { margin-top: 40px; }
.faq-item { border-bottom: 1px solid #E0E0E0; margin-bottom: 15px; }
.faq-header { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; cursor: pointer; transition: all 0.3s ease; }
.faq-header h3 { font-family: var(--font-title); font-size: 1.3rem; color: var(--color-text-dark); font-weight: 400; margin: 0; padding-right: 20px; }
.faq-icon { position: relative; width: 20px; height: 20px; flex-shrink: 0; }
.faq-icon::before, .faq-icon::after { content: ''; position: absolute; background-color: var(--color-text-dark); transition: transform 0.3s ease, background-color 0.3s ease; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.faq-icon::before { width: 100%; height: 2px; }
.faq-icon::after { width: 2px; height: 100%; }
.faq-body { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; }
.faq-body p { font-size: 1rem; line-height: 1.7; color: var(--color-text-light); padding-bottom: 25px; margin: 0; }
.faq-item.active .faq-header h3 { color: var(--color-btn); }
.faq-item.active .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); background-color: var(--color-btn); }
.faq-item.active .faq-icon::before { background-color: var(--color-btn); }

/* Products */
.products-section { padding: var(--section-spacing) 0; }
.products-header { text-align: center; max-width: 800px; margin: 0 auto 60px; }
.products-header .section-subtitle { justify-content: center; }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.product-card { background: #fff; border-radius: var(--border-radius-card); overflow: hidden; box-shadow: var(--shadow-soft); transition: transform 0.3s, box-shadow 0.3s; display: flex; flex-direction: column; }
.product-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.product-image { height: 280px; overflow: hidden; position: relative; background-color: #f9f9f9; }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .product-image img { transform: scale(1.08); }
.product-info { padding: 25px; flex-grow: 1; display: flex; flex-direction: column; }
.product-title { font-family: var(--font-title); font-size: 1.2rem; color: var(--color-text-dark); margin-bottom: 10px; font-weight: 400; }
.product-desc { font-size: 0.9rem; color: var(--color-text-light); line-height: 1.5; margin-bottom: 20px; flex-grow: 1; }
.product-footer { margin-top: auto; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid #f0f0f0; padding-top: 15px; }
.product-price { font-family: var(--font-title); font-size: 1.3rem; color: var(--color-btn); font-weight: 600; }

/* Appointment */
.appointment-section { padding-top: 50px; padding-bottom: 100px; }
.appointment-card { background-color: #fff; border-radius: var(--border-radius-card); box-shadow: 0 20px 60px rgba(0,0,0,0.08); display: grid; grid-template-columns: 1fr 1fr; padding: 80px 60px; gap: 80px; position: relative; z-index: 10; margin-bottom: -150px; }
.app-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 30px; }
.app-form-grid .full-width { grid-column: span 2; }
.app-input { width: 100%; padding: 15px 20px; border: 1px solid #E5E5E5; border-radius: 6px; font-family: var(--font-text); font-size: 0.95rem; color: var(--color-text-dark); outline: none; transition: border 0.3s; }
.app-input:focus { border-color: var(--color-btn); }
.app-input::placeholder { color: #999; }
.app-info h2 { font-size: 2.8rem; margin-bottom: 20px; }
.app-info-item { display: flex; align-items: center; gap: 20px; margin-top: 40px; }
.app-info-icon { width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; }
.app-info-icon svg { width: 40px; height: 40px; stroke: var(--color-btn); stroke-width: 1.5; fill: none; }
.app-info-text h4 { font-family: var(--font-title); font-size: 1.2rem; margin: 0 0 5px 0; color: var(--color-text-dark); }
.app-info-text p { margin: 0; font-size: 0.95rem; color: var(--color-text-light); }

/* =========================================
   10. PÁGINAS INTERNAS & SINGLE POST (ATUALIZADO)
   ========================================= */
/* Ajuste Single Post Layout */
.single .layout-grid {
    display: grid; 
    grid-template-columns: 1fr 340px; 
    gap: 50px; 
    max-width: 1280px; 
    margin: 0 auto; 
    position: relative; z-index: 10; 
    margin-top: -50px;
}

.single .content-container {
    background: #fff;
    padding: 80px;
    border-radius: 0; /* Especifico do design do post */
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    margin: 0; /* Reset */
    max-width: none;
}

/* Sidebar do Single */
.single .site-sidebar { display: flex; flex-direction: column; gap: 40px; margin-top: 120px; }
.widget-box { background: transparent; box-shadow: none; padding: 0; margin-bottom: 20px; }
.widget-title { 
    font-family: var(--font-title); font-size: 1.3rem; color: #222; 
    margin-bottom: 25px; padding-bottom: 10px; 
    border-bottom: 1px solid rgba(0,0,0,0.1); position: relative;
}
.widget-title::after { content: ''; position: absolute; bottom: -1px; left: 0; width: 50px; height: 2px; background-color: var(--color-btn); }
.banner-widget img { width: 100%; max-width: 300px; height: auto; border-radius: 12px; display: block; margin: 0 auto; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }

/* Sidebar Posts */
.sidebar-posts-list { list-style: none; padding: 0; margin: 0; }
.sidebar-post-item { display: flex; align-items: center; gap: 15px; margin-bottom: 25px; border-bottom: 1px solid rgba(0,0,0,0.05); padding-bottom: 15px; }
.sidebar-post-item:last-child { border-bottom: none; margin-bottom: 0; }
.sidebar-thumb { width: 65px; height: 65px; object-fit: cover; border-radius: 50%; flex-shrink: 0; box-shadow: 0 4px 10px rgba(0,0,0,0.1); border: 2px solid #fff; }
.sidebar-post-info { display: flex; flex-direction: column; justify-content: center; }
.sidebar-post-title { font-size: 0.95rem; font-weight: 700; line-height: 1.4; margin-bottom: 4px; color: #333; text-decoration: none; transition: color 0.2s; font-family: var(--font-title); }
.sidebar-post-title:hover { color: var(--color-btn); }
.sidebar-post-date { font-size: 0.75rem; color: #999; letter-spacing: 0.5px; }

/* Sidebar Categorias */
.sidebar-categories-list { list-style: none; padding: 0; }
.sidebar-categories-list li { margin-bottom: 8px; }
.sidebar-categories-list a { display: flex; align-items: center; color: #555; font-size: 0.95rem; font-weight: 500; padding: 10px 15px; background-color: #fff; border-radius: 8px; box-shadow: 0 2px 5px rgba(0,0,0,0.02); transition: all 0.2s ease; }
.sidebar-categories-list a:hover { background-color: var(--color-btn); color: #fff; transform: translateX(5px); }
.sidebar-categories-list a span { margin-left: 10px; font-size: 0.75rem; background-color: rgba(0,0,0,0.05); padding: 2px 8px; border-radius: 10px; font-weight: 600; color: #888; }
.sidebar-categories-list a:hover span { background-color: rgba(255,255,255,0.2); color: #fff; }

/* Meta Post e Breadcrumbs Escuros */
.breadcrumbs-dark { 
    font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; color: #888; 
    display: flex; align-items: center; flex-wrap: wrap; gap: 5px;
}
.breadcrumbs-dark a { color: #666; text-decoration: none; font-weight: 600; }
.breadcrumbs-dark a:hover { color: var(--color-btn); }
.breadcrumbs-dark .separator { opacity: 0.4; }
.breadcrumbs-dark .current { font-weight: bold; color: #333; }

.meta-share-wrapper {
    display: flex; justify-content: space-between; align-items: center;
    border-bottom: 1px solid #eee; padding-bottom: 25px; margin-bottom: 40px;
    flex-wrap: wrap; gap: 20px;
}
.actions-right { display: flex; align-items: center; gap: 15px; }
.action-sep { width: 1px; height: 25px; background-color: #eee; margin: 0 5px; }

/* Botões de Compartilhamento */
.share-btn, .like-btn {
    width: 36px; height: 36px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; transition: all 0.2s ease; 
    text-decoration: none !important; border: none; cursor: pointer;
}
.share-btn svg, .like-btn svg { width: 18px; height: 18px; fill: currentColor; }
.share-btn:hover, .like-btn:hover { transform: translateY(-2px); opacity: 0.9; }
.share-wa { background-color: #25D366; }
.share-fb { background-color: #1877F2; }
.share-tw { background-color: #000; }
.share-email { background-color: #888; }

.like-btn { background-color: transparent; color: #ccc; border: 2px solid #eee; }
.like-btn svg { fill: transparent; stroke: currentColor; stroke-width: 2px; transition: all 0.3s; }
.like-btn.liked { background-color: #fff0f0; color: #ff4757; border-color: #ff4757; animation: pulse 0.4s ease-in-out; }
.like-btn.liked svg { fill: #ff4757; stroke: #ff4757; }
@keyframes pulse { 0% { transform: scale(1); } 50% { transform: scale(1.2); } 100% { transform: scale(1); } }

/* Conteúdo do Post */
.entry-content { word-wrap: break-word; overflow-wrap: break-word; } /* PROTEÇÃO PARA TEXTOS LONGOS */
.entry-content p { margin-bottom: 1.5em !important; display: block; }
.entry-content h2 { font-size: 2rem; margin-top: 40px; margin-bottom: 15px; font-family: var(--font-title); color: #222; }
.entry-content h3 { font-size: 1.6rem; margin-top: 30px; margin-bottom: 10px; font-family: var(--font-title); color: #333; }
.entry-content blockquote { 
    border-left: 5px solid var(--color-btn); background-color: #F9F9F9; 
    margin: 40px 0; padding: 25px 35px; font-family: var(--font-title); 
    font-size: 1.25rem; font-style: normal; color: #555; position: relative; 
    border-radius: 0 10px 10px 0; 
}
.entry-content blockquote::before { 
    content: '“'; font-size: 3.5rem; color: var(--color-btn); opacity: 0.3; 
    position: absolute; top: 5px; left: 10px; line-height: 1; 
}
.entry-content blockquote cite { display: block; font-size: 0.9rem; margin-top: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: #888; }

/* Navegação do Post */
.post-navigation-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 80px; padding-top: 50px; border-top: 1px solid #eee; }
.nav-link-box { display: flex; flex-direction: column; text-decoration: none; }
.nav-link-box:hover .nav-title { color: var(--color-btn); }
.nav-thumb { height: 180px; width: 100%; object-fit: cover; border-radius: 12px; margin-bottom: 15px; background-color: #eee; transition: transform 0.3s ease; }
.nav-link-box:hover .nav-thumb { transform: scale(1.02); }
.nav-label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; color: #999; margin-bottom: 5px; font-weight: 600; }
.nav-title { font-family: var(--font-title); font-size: 1.3rem; color: #333; line-height: 1.4; transition: color 0.3s; }

/* Header Meta para o Post */
.header-meta {
    display: flex; justify-content: center; align-items: center;
    gap: 15px; font-size: 0.95rem; color: #fff; margin-top: 10px;
    flex-wrap: wrap;
}
.meta-date { display: flex; align-items: center; gap: 6px; font-weight: 500; }
.meta-date svg { width: 14px; height: 14px; fill: var(--color-btn); display: block; }
.header-sep { opacity: 0.4; font-size: 0.8rem; position: relative; top: -1px; }
.meta-author { font-size: 0.85rem; opacity: 0.8; font-weight: 400; letter-spacing: 0.5px; }
.meta-author strong { font-weight: 600; color: #fff; }

.page-header {
    position: relative; height: 400px; background-color: #1a1a1a;
    background-size: cover; background-position: center; 
    display: flex; align-items: center; justify-content: center; text-align: center;
}
.page-header::before { 
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; 
    background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.4)); z-index: 1; 
}
.page-header-content { position: relative; z-index: 2; color: #fff; max-width: 800px; padding: 0 20px; margin-top: 40px; }
.page-title { font-family: var(--font-title); font-size: 3.5rem; margin-bottom: 15px; font-weight: 400; line-height: 1.2; word-wrap: break-word; }
.breadcrumbs { display: inline-flex; align-items: center; background: rgba(255,255,255,0.15); padding: 8px 20px; border-radius: 30px; font-size: 0.85rem; backdrop-filter: blur(5px); }
.breadcrumbs a { color: #fff; opacity: 0.9; font-weight: 500; }
.breadcrumbs .separator { margin: 0 10px; opacity: 0.6; }
.breadcrumbs .current { color: var(--color-btn); font-weight: 700; text-transform: uppercase; }

.main-content-area { padding: 0 0 80px; }
.content-container { max-width: 900px; margin: 0 auto; background-color: #fff; padding: 60px 80px; border-radius: var(--border-radius-card); box-shadow: var(--shadow-soft); position: relative; margin-top: -80px; z-index: 10; }
.post-meta { display: flex; gap: 30px; margin-bottom: 40px; padding-bottom: 20px; border-bottom: 1px solid #eee; color: #666; font-size: 0.9rem; }
.meta-item svg { width: 16px; height: 16px; color: var(--color-btn); }
.entry-content { font-size: 1.1rem; color: #444; line-height: 1.8; }
.entry-content h2 { font-family: var(--font-title); color: #222; margin-top: 40px; }
.entry-content a { color: var(--color-btn); font-weight: bold; text-decoration: underline; text-underline-offset: 3px; }
.entry-content a:hover { color: #2A2A2A; }

/* =========================================
   11. FOOTER & SEARCH OVERLAY
   ========================================= */
.site-footer { background-color: #2A2A2A; color: #fff; padding: 80px 0 20px; font-family: var(--font-text); position: relative; z-index: 1; padding-top: 250px; }
.footer-logo { font-family: var(--font-title); font-size: 1.8rem; color: #fff !important; margin-bottom: 15px; display: block; }
.footer-branding p { font-size: 0.9rem; opacity: 0.7; line-height: 1.6; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 60px; }
.footer-nav-col h4 { font-family: var(--font-title); font-size: 1.1rem; margin-bottom: 20px; color: var(--color-btn); }
.footer-nav-col ul li { margin-bottom: 10px; }
.footer-nav-col a { color: #fff; opacity: 0.7; }
.footer-nav-col a:hover { color: var(--color-btn) !important; opacity: 1; padding-left: 5px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; text-align: center; font-size: 0.85rem; opacity: 0.5; }

.search-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(26, 26, 26, 0.98); z-index: 2000; display: none; align-items: center; justify-content: center; }
.search-overlay.active { display: flex; opacity: 1; visibility: visible; }
.search-container { width: 100%; max-width: 800px; padding: 0 20px; text-align: center; position: relative; }
.search-input { width: 100%; background: transparent; border: none; border-bottom: 2px solid rgba(255,255,255,0.3); font-family: var(--font-title); font-size: 2.5rem; color: #fff; padding: 20px 0; text-align: center; outline: none; transition: border-color 0.3s; }
.search-input:focus { border-color: var(--color-btn); }
.close-search { position: absolute; top: 40px; right: 40px; font-size: 3rem; color: #fff; cursor: pointer; transition: transform 0.3s; }
.close-search:hover { transform: rotate(90deg); color: var(--color-btn); }

/* =========================================
   12. RESPONSIVIDADE (CORRIGIDA)
   ========================================= */
@media (max-width: 1024px) {
    /* Ajuste do Header para Mobile */
    .site-header { 
        position: fixed !important; 
        top: 0 !important; 
        left: 0 !important;
        width: 100% !important;
        padding: 10px 0 !important; 
        background: #1a1a1a !important; 
        z-index: 9999 !important;
    }

    /* Menu Lateral Mobile */
    .main-nav { 
        position: fixed !important; 
        top: 0 !important; 
        right: -100% !important; 
        width: 300px !important; 
        max-width: 80% !important; 
        height: 100vh !important; 
        background-color: #1a1a1a !important; 
        padding: 100px 30px 40px !important; 
        transition: right 0.4s cubic-bezier(0.77,0.2,0.05,1.0) !important; 
        z-index: 9998 !important; 
        margin: 0 !important; 
        overflow-y: auto !important; 
        box-shadow: -10px 0 20px rgba(0,0,0,0.5) !important; 
        display: flex !important; 
        flex-direction: column !important;
    }

    /* Estado Ativo do Menu (Controlado pelo JavaScript) */
    .main-nav.active { 
        right: 0 !important; 
    }

    /* Links do Menu Mobile */
    .main-nav ul { 
        display: flex !important;
        flex-direction: column !important; 
        width: 100% !important;
        gap: 0 !important; 
    }

    .main-nav ul li {
        display: block !important;
        width: 100% !important;
        border-bottom: 1px solid rgba(255,255,255,0.05) !important;
    }

    .main-nav > ul > li > a { 
        font-size: 1.1rem !important; 
        padding: 15px 0 !important; 
        color: #fff !important;
        width: 100% !important;
        display: block !important;
    }

    /* Submenu no Mobile */
    .sub-menu { 
        position: static; 
        opacity: 1; 
        visibility: visible; 
        transform: none; 
        width: 100%; 
        background: rgba(255,255,255,0.05); 
        box-shadow: none; 
        padding-left: 15px; 
        display: none; 
    }

    .main-nav li.active .sub-menu,
    .main-nav li:hover .sub-menu { 
        display: block !important; 
    }

    /* Botão Hambúrguer */
    .mobile-toggle { 
        display: flex !important; 
        margin-left: auto; 
        position: relative !important;
        z-index: 10000 !important;
        cursor: pointer;
    }
    
    .mobile-toggle .bar {
        background-color: #fff !important; 
    }

    .floating-social { display: none; }
    
    /* Ajustes de Layout Gerais */
    h1 { font-size: 2.8rem; } 
    .hero-content { max-width: 95%; }
    .about-grid, .wcu-grid, .faq-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-image-wrapper, .faq-image-placeholder { height: 350px; order: -1; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .wcu-images { height: 450px; order: -1; }
    .wwd-header, .case-studies-header { grid-template-columns: 1fr; gap: 20px; }
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .appointment-card { grid-template-columns: 1fr; padding: 30px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .newsletter-box { grid-template-columns: 1fr; padding: 30px; }
}

@media (max-width: 768px) {
    .top-bar { display: none; }
    h1 { font-size: 2.2rem; }
    .hero-description { font-size: 1rem; }
    .services-grid, .product-grid { grid-template-columns: 1fr; }
    .help-item { flex-direction: column; align-items: flex-start; text-align: left; }
    .help-icon { margin-bottom: 10px; }
    .about-buttons { flex-direction: column; gap: 10px; }
    .btn { width: 100%; text-align: center; }
    .site-footer { padding-top: 100px; }
    .footer-grid { grid-template-columns: 1fr; }
    
    /* Single Post Mobile */
    .single .content-container { 
        padding: 30px 20px; 
        margin-top: -40px; 
        width: 92%; 
    }
    .page-title { font-size: 2rem; }
}

/* Aumentar contraste dos Breadcrumbs */
.breadcrumbs-dark, .breadcrumbs-dark a {
    color: #333333 !important; /* Um cinza bem escuro, quase preto */
    font-weight: 500;
}
/* =======================================================
   NOCAUTE DE ACESSIBILIDADE - CONTRASTE TOTAL (GOOGLE)
   ======================================================= */

/* 1. Breadcrumbs (Início / Categoria / Artigo) */
.breadcrumbs-dark, 
.breadcrumbs-dark a, 
.breadcrumbs-dark span {
    color: #222222 !important; 
    font-weight: 700 !important;
}

/* 2. Índice do Artigo (Index Box) */
.index-box, 
.index-box ul li a, 
.index-box a {
    color: #1a1a1a !important;
    text-decoration: underline !important;
}

/* 3. Todos os Links dentro do conteúdo (Content Container) */
.content-container a, 
.entry-content a, 
.wp-prega-container a {
    color: #003d80 !important; /* Azul escuro oficial para contraste */
    text-decoration: underline !important;
    font-weight: 600 !important;
}

/* 4. Links de categorias e textos pequenos */
.entry-meta, .entry-meta a {
    color: #444444 !important;
}
/* ======================================================= */
/* CORREÇÃO DEFINITIVA DE CONTRASTE E CORES OTIMIZADAS     */
/* ======================================================= */

/* Breadcrumbs (Início / Categoria) - Preto para contraste máximo */
.breadcrumbs-dark, .breadcrumbs-dark a, .breadcrumbs-dark span { 
    color: #000000 !important; 
    font-weight: 700 !important; 
    opacity: 1 !important; 
}

/* Links dentro do texto - Azul Profundo para Acessibilidade */
.content-container a, .entry-content a, .wp-prega-container a { 
    color: #003d80 !important; 
    text-decoration: underline !important; 
    font-weight: 700 !important; 
}

/* Rodapé */
.site-footer { background-color: #111111 !important; color: #ffffff !important; padding: 40px 0; }
.footer-nav-col h4 { color: #d4af37 !important; margin-bottom: 15px; font-size: 18px; } 
.footer-nav-col ul { list-style: none; padding: 0; }
.footer-nav-col li { margin-bottom: 8px; }
.footer-nav-col a { color: #ffffff !important; opacity: 1 !important; font-weight: 500 !important; text-decoration: none; transition: 0.3s; }
.footer-nav-col a:hover { color: #AFB42B !important; text-decoration: underline; } 

/* CTA Box */
.post-cta-box { background-color: #F4F4F4 !important; border-left: 5px solid #156828 !important; padding: 20px; margin: 20px 0; }
.post-cta-box h3 { color: #111111 !important; margin-top: 0; }
.post-cta-box p { color: #333333 !important; font-weight: 500 !important; opacity: 1 !important; }

.btn-cta-donate { 
    display: inline-block;
    background-color: #156828 !important; 
    color: #ffffff !important; 
    border: 2px solid #156828 !important; 
    padding: 12px 25px;
    text-decoration: none;
    font-weight: 700 !important;
    letter-spacing: 1px;
    transition: 0.3s;
    border-radius: 4px;
}
.btn-cta-donate:hover { background-color: #0e4a1b !important; border-color: #0e4a1b !important; color: #ffffff !important; }

/* Barra de topo e Header */
.custom-top-bar-wrapper { position: absolute; top: 0; left: 0; width: 100%; height: 45px; background: #000000 !important; border-bottom: 1px solid #222; z-index: 10005; display: flex; justify-content: center; }
.custom-top-bar-inner { width: 100%; max-width: 1280px; padding: 0 20px; display: flex; justify-content: space-between; align-items: center; height: 100%; }
.contact-item { display: flex; align-items: center; gap: 8px; color: #ffffff; font-size: 13px; text-decoration: none; transition: 0.3s; }
.contact-item:hover { color: #d4af37; }
.contact-item svg { width: 14px; height: 14px; fill: currentColor; }

.custom-top-icon { color: #ffffff; text-decoration: none; display: flex; align-items: center; padding: 5px; transition: 0.3s; }
.custom-top-icon:hover { color: #d4af37; transform: translateY(-2px); }
.custom-top-icon svg { width: 16px; height: 16px; fill: currentColor; }

header, .site-header, #masthead { 
    margin-top: 0px !important; 
    background: #000000 !important; 
    padding-top: 60px !important; 
    padding-bottom: 20px !important; 
    width: 100% !important;
    position: relative !important;
    z-index: 9999;
}

.site-logo img { display: block !important; opacity: 1 !important; max-height: 85px; width: auto; }
.lupa-mobile-container { display: none !important; }

@media (max-width: 1024px) {
    .custom-top-bar-wrapper { display: none !important; }
    header, .site-header { padding-top: 15px !important; padding-bottom: 15px !important; }
    .site-logo img { max-height: 60px; }
    .lupa-mobile-container { display: flex !important; margin-left: auto; margin-right: 15px; }
}

/* MODAL DE BUSCA */
.search-modal { display: none; position: fixed; z-index: 9999999; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.98); align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s ease; }
.search-modal.open { display: flex; opacity: 1; }
.search-modal-content { position: relative; width: 90%; max-width: 800px; }
.search-modal-form { display: flex; border-bottom: 2px solid #555; padding-bottom: 10px; }
.search-modal input { width: 100%; padding: 15px 0; font-size: 32px; border: none; background: transparent; color: #fff; outline: none; }
.search-modal-submit { background-color: #28a745; border: none; color: #fff; cursor: pointer; padding: 12px 30px; border-radius: 50px; font-weight: 700; display: flex; align-items: center; gap: 10px; }
.search-modal-close { position: absolute; top: 40px; right: 40px; color: #fff; font-size: 60px; cursor: pointer; background: none; border: none; }
/* Correção de Contraste - Botão do Forminator */
button.forminator-button.forminator-button-submit {
    background-color: #006400 !important; /* Um verde bem escuro */
    color: #FFFFFF !important; /* Texto branco puro */
    font-weight: bold !important;
    border: none !important;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5) !important; /* Adiciona uma sombra leve no texto para mais contraste */
}

/* Estado de Hover (quando passa o mouse) */
button.forminator-button.forminator-button-submit:hover {
    background-color: #004d00 !important; /* Um verde ainda mais escuro */
}