/* =========================================
   BASE.CSS — Variáveis, Reset e Tipografia
   ========================================= */

/* Design Tokens */
:root {
    --preto-absoluto:  #000000;
    --branco-puro:     #FFFFFF;
    --ouro-solido:     #C5A059;
    --ouro-liquido:    linear-gradient(135deg, #A67C1E 0%, #F1E4A0 25%, #B18A2A 50%, #F9F5D2 75%, #876011 100%);
    
    --texto-sobre-claro: #050505;
    --texto-sobre-escuro: #FAFAFA;

    --font-heading: 'Big Shoulders Display', sans-serif;
    --font-body:    'Inter', sans-serif;
}

/* Reset */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border-radius: 0 !important; /* Brutalismo: Proibido cantos arredondados */
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

body {
    background-color: var(--branco-puro);
    color: var(--texto-sobre-claro);
    font-family: var(--font-body);
    font-weight: 400;
    overflow-x: hidden;
    max-width: 100%;
    width: 100%;
    position: relative;
    -webkit-font-smoothing: antialiased;
    touch-action: pan-y;
}

section {
    max-width: 100vw;
    overflow-x: hidden;
    padding: 6vh 5%; /* base — seções específicas sobrescrevem conforme necessário */
}

/* Tipografia Global — Industrial Esmagada */
h1, h2, h3, .section-title, .influencia-total-numero, .logo img, .blog-teaser-title {
    font-family: var(--font-heading);
    font-weight: 900 !important;
    text-transform: uppercase;
    letter-spacing: -0.05em !important; /* Letras coladas */
    line-height: 0.82 !important;       /* Linhas esmagadas verticalmente */
    color: var(--texto-sobre-claro);
}

p, a {
    font-family: var(--font-body);
    font-weight: 400;
}

a {
    color: var(--texto-sobre-claro);
    text-decoration: none;
}

.highlight-orange {
    color: var(--ouro-solido);
}

/* Títulos com gradiente ouro líquido — igual ao "15M+" */
.section-title {
    font-family: var(--font-heading);
    background: var(--ouro-liquido);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: var(--ouro-solido); /* fallback navegadores antigos */
}

/* Exceção: agenda e cinematografia ficam em ouro sólido (fundo claro/branco) */
.agenda .section-title,
.cinematography .section-title {
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    -webkit-text-fill-color: var(--ouro-solido);
    color: var(--ouro-solido);
}


