/* ============================================
   BASE: Reset, Variáveis, Tipografia
   ============================================ */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Base clara - tons quentes e suaves */
    --branco-warm: #FBF9F6;
    --branco-off: #F6F3EF;
    --cinza-warm: #F0EDE9;
    --cinza-borda-clara: #E5E0DA;
    
    /* Base escura */
    --preto-profundo: #080808;
    --preto: #0F0F0F;
    --preto-suave: #1A1A1A;
    --cinza-card-escuro: #1C1C1C;
    --cinza-borda-escura: #2A2A2A;
    
    /* Texto */
    --texto-claro: #1A1A1A;
    --texto-medio: #4A4540;
    --texto-suave: #6B6560;
    --texto-escuro: #FFFFFF;
    --texto-escuro-suave: #B0B0B0;
    
    /* Dourado */
    --dourado: #B8942E;
    --dourado-claro: #C9A84C;
    --dourado-escuro: #A0781E;
    
    /* Tipografia */
    --font-primaria: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Fraunces', 'Times New Roman', serif;
    
    /* Transições */
    --transition: 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
    --transition-lenta: 0.7s cubic-bezier(0.25, 0.1, 0.25, 1);
    
    /* Sombras */
    --sombra-suave: 0 2px 20px rgba(0, 0, 0, 0.03);
    --sombra-media: 0 8px 40px rgba(0, 0, 0, 0.04);
    --sombra-dourada: 0 10px 30px rgba(184, 148, 46, 0.08);
    --sombra-escura: 0 20px 50px rgba(0, 0, 0, 0.3);
    
    --container-max: 1140px;
    --container-padding: 2rem;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primaria);
    background-color: var(--branco-warm);
    color: var(--texto-claro);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 500;
    letter-spacing: -0.02em;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header__tag {
    display: block;
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--dourado);
    margin-bottom: 1.2rem;
    font-family: var(--font-primaria);
}

.section-header__title {
    font-size: 2.8rem;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.secao-escura .section-header__title {
    color: var(--texto-escuro);
}

/* Animações */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.9s cubic-bezier(0.25, 0.1, 0.25, 1),
                transform 0.9s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.reveal.revealed { opacity: 1; transform: translateY(0); }

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-8px); }
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.3; }
    100% { transform: scale(1.5); opacity: 0; }
}