/* =========================================================
   STYLE.CSS - GESTORES PÚBLICOS CE (AGÊNCIA SEO PRO)
   Design: Dark Luxury com toques de Ouro e Neon Vermelho/Azul
   Mobile First, sem frameworks. 
   ========================================================= */

:root {
    --bg-color: #0b0f15;
    --bg-card: #151a22;
    --bg-hover: #1c222c;
    --text-main: #f0f6fc;
    --text-muted: #8b949e;
    
    --accent-gold: #FFD700;
    --accent-red: #ff3366;
    --accent-blue: #00d4ff;
    
    --whatsapp: #25D366;
    --whatsapp-dark: #128C7E;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --shadow-soft: 0 4px 20px rgba(0,0,0,0.4);
    --shadow-neon-red: 0 0 15px rgba(255, 51, 102, 0.5);
    --shadow-neon-gold: 0 0 15px rgba(255, 215, 0, 0.3);
    
    --radius: 12px;
    --transition: all 0.3s ease;
    --container: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Tipografia */
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; margin-bottom: 1rem; }
h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.5rem; }
p { color: var(--text-muted); margin-bottom: 1rem; font-size: 1.05rem; }
a { color: var(--accent-gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent-red); }

.gradient-text-red {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.gradient-text-blue {
    background: linear-gradient(135deg, var(--accent-blue) 0%, #0055ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Layout Core */
.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.section { padding: 100px 0; }
.section-alt { background-color: var(--bg-card); }
.text-center { text-align: center; }

/* Botões */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 16px 32px; font-size: 1.1rem; font-weight: 600;
    border-radius: 50px; cursor: pointer; transition: var(--transition);
    border: none; gap: 12px; text-transform: uppercase; letter-spacing: 0.5px;
}
.btn--primary { background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-red) 100%); color: #fff; box-shadow: var(--shadow-neon-red); }
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 0 25px rgba(255, 51, 102, 0.8); }
.btn--blue { background: linear-gradient(135deg, var(--accent-blue) 0%, #0055ff 100%); color: #fff; box-shadow: 0 0 15px rgba(0, 212, 255, 0.5); }
.btn--blue:hover { transform: translateY(-3px); box-shadow: 0 0 25px rgba(0, 212, 255, 0.8); }
.btn--whatsapp { background-color: var(--whatsapp); color: #fff; box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3); }
.btn--whatsapp:hover { background-color: var(--whatsapp-dark); transform: translateY(-3px); }
.btn--outline { background: transparent; border: 2px solid var(--accent-gold); color: var(--accent-gold); }
.btn--outline:hover { background: rgba(255,215,0,0.1); }

/* Header Fixo (Sticky) */
.header {
    background-color: rgba(11, 15, 21, 0.95);
    backdrop-filter: blur(10px);
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
}
.header-inner { display: flex; justify-content: space-between; align-items: center; padding: 15px 0; }
.logo img { height: 45px; }
.nav { display: none; } /* Mobile first, menu depois */

@media (min-width: 768px) {
    .nav { display: flex; gap: 25px; }
    .nav a { color: var(--text-main); font-weight: 500; font-size: 1rem; }
    .nav a:hover, .nav a.active { color: var(--accent-gold); }
}

/* Float WhatsApp */
.float-wpp {
    position: fixed; bottom: 30px; right: 30px;
    width: 60px; height: 60px;
    background-color: var(--whatsapp); color: #fff;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 30px; box-shadow: var(--shadow-soft); z-index: 999;
    transition: var(--transition);
}
.float-wpp:hover { transform: scale(1.1); background-color: var(--whatsapp-dark); }
.float-wpp svg { width: 35px; height: 35px; fill: currentColor; }

/* Grid System */
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 30px; }
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 30px; align-items: center; }
@media (min-width: 768px) {
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
    .grid-2 { grid-template-columns: 1fr 1fr; }
}

/* Cards */
.card {
    background: var(--bg-card); padding: 40px 30px;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
    position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-5px); border-color: rgba(255, 215, 0, 0.3); box-shadow: var(--shadow-soft); }
.card-icon { font-size: 2.5rem; margin-bottom: 20px; color: var(--accent-gold); }

/* Heroes */
.hero { padding: 180px 0 100px; text-align: center; position: relative; }
.hero-img-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover; opacity: 0.15; z-index: -1;
    mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
}
.hero-label {
    display: inline-block; padding: 6px 16px;
    background: rgba(255, 51, 102, 0.1); border: 1px solid rgba(255, 51, 102, 0.3);
    color: var(--accent-red); border-radius: 30px; font-weight: 600; font-size: 0.9rem;
    margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px;
}
.hero p { max-width: 700px; margin: 0 auto 40px; font-size: 1.2rem; }

/* Breadcrumbs */
.breadcrumb {
    margin: 100px 0 0; padding: 15px 0;
    font-size: 0.9rem; color: var(--text-muted);
}
.breadcrumb a { color: var(--text-main); }
.breadcrumb a:hover { color: var(--accent-gold); }

/* Content Blocks for Massive Text */
.content-block { margin-bottom: 40px; }
.content-block h2, .content-block h3 { margin-top: 40px; color: var(--text-main); }
.content-block ul { margin-left: 20px; margin-bottom: 20px; color: var(--text-muted); }
.content-block li { margin-bottom: 10px; }

/* Images in content */
.content-img {
    width: 100%; border-radius: var(--radius);
    box-shadow: var(--shadow-soft); margin: 30px 0;
}

/* FAQ */
.faq-wrap { max-width: 800px; margin: 0 auto; }
.faq-item {
    background: var(--bg-card); border-radius: var(--radius);
    margin-bottom: 15px; border: 1px solid rgba(255,255,255,0.05);
}
.faq-q {
    padding: 20px; font-weight: 600; font-size: 1.1rem;
    cursor: pointer; display: flex; justify-content: space-between; align-items: center;
}
.faq-q:hover { color: var(--accent-gold); }
.faq-a { padding: 0 20px 20px; display: none; color: var(--text-muted); border-top: 1px solid rgba(255,255,255,0.05); margin-top: 10px; padding-top: 20px; }

/* Footer */
.footer { background: var(--bg-card); padding: 60px 0 30px; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; margin-bottom: 40px; }
.footer-col h3 { font-size: 1.2rem; color: #fff; margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { color: var(--text-muted); }
.footer-col a:hover { color: var(--accent-gold); }
.footer-bottom { text-align: center; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.05); font-size: 0.9rem; }
