/* ============================================
   ESTILOS GLOBAIS - FazViral (Otimizado)
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* RESET E BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: auto !important; /* Força o JS a ter controle total */
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--fundo-principal);
    color: var(--texto-principal);
    line-height: 1.6;
    overflow-x: hidden;
}

section {
    padding: 100px 0; /* Espaçamento padrão para cima e para baixo */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    /* Outros estilos de fonte e cor */
}

/* VARIÁVEIS CSS (Globais para todos os componentes) */
:root {
    --fundo-principal: #F5F7FB;
    --fundo-branco: #FFFFFF;
    --texto-principal: #0B0F1A;
    --texto-secundario: #4B5563;
    --laranja-premium: #FF6A00;
    --roxo-destaque: #7C3AED;
    --sombra-card: 0 4px 20px rgba(0, 0, 0, 0.08);
    --sombra-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* UTILITÁRIOS */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* TIPOGRAFIA GLOBAL */
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.3;
    color: var(--grado-primario);
    text-align: center;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--texto-secundario);
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* REGRA DE DESTAQUE (HERDADA PELOS COMPONENTES) */
strong {
    background: linear-gradient(135deg, var(--laranja-premium) 0%, var(--roxo-destaque) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.section-title strong, 
h1 strong, 
h2 strong,
h3 strong {
    font-weight: inherit; /* Herda o 800 ou 900 do título pai */
    display: inline;
    background: linear-gradient(135deg, var(--laranja-premium) 0%, var(--roxo-destaque) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

b {
    font-weight: 700;
    color: inherit;
}

/* BOTÕES GLOBAIS */
.btn {
    padding: 16px 32px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--laranja-premium) 0%, var(--roxo-destaque) 100%);
    color: #FFFFFF;
    box-shadow: 0 4px 20px rgba(255, 106, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(255, 106, 0, 0.4);
}

.btn-large {
    padding: 20px 48px;
    font-size: 1.25rem;
}

/* Limpeza de hífens indesejados */
p, span, h2, h3 {
    hyphens: none;
    -webkit-hyphens: none;
}

@media (max-width: 768px) {
    /* Reseta o scroll-margin de todas as seções e elementos com ID */
    section, 
    [id],
    .hero-section {
        scroll-margin-top: 0px !important;
    }

    /* Opcional: Se quiser dar um respiro mínimo só para o título não colar no topo */
    /* section { scroll-margin-top: 10px !important; } */
}