@font-face {
    font-family: 'Tan Vivre Libre';
    src: url('../fonts/TAN-VIVRE-LIBRE.woff2') format('woff2'),
         url('../fonts/TAN-VIVRE-LIBRE.otf') format('otf'),
         url('../fonts/TAN-VIVRE-LIBRE.woff') format('woff');
         font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Tan Garland';
    src: url('../fonts/TAN-Garland.woff2') format('woff2'),
         url('../fonts/TAN-Garland.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Gistesy';
    src: url('../fonts/Gistesy.woff2') format('woff2'),
         url('../fonts/Gistesy.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Gentlemens Script';
    src: url('../fonts/Gentlemens Script.woff2') format('woff2'),
         url('../fonts/Gentlemens Script.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Athiti';
    src: url('../fonts/Athiti.woff2') format('woff2'),
         url('../fonts/Athiti.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/* --- Reset & Variáveis de Luxo --- */
:root {
    --primary-dark: #121110;
    --text-primary: #F5F2ED;
    --accent-gold: #C5934C; 
    
    /* Fontes */
    --font-topic: 'Tan Vivre Libre', serif;
    --font-title: 'Tan Garland', serif;
    /* --font-subtitle: 'Gentlemens Script', cursive; */
    --font-signature: 'Gistesy', cursive;
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Poppins', serif;
    
    
    /* Tipografia Responsiva Dinâmica */
    --fs-brand: clamp(2.5rem, 8vw, 10rem); /* Título Principal Gigante */
    --fs-nav: clamp(1.2rem, 3.5vw, 4rem); /* Links Grandes */
    --transition-fluid: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);

    --text-muted: #cdc3b8;
    --text-bio: #545454;

    --bg-biografia: #EFEBE5; /* O bege para o bloco da biografia */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

html {
    background-color: var(--primary-dark);
    color: var(--text-primary);
    font-family: var(--font-sans);
    scroll-behavior: auto; /* Desativado para GSAP controlar */
    overflow-x: hidden;
    /* Adicione isso para garantir que o HTML ocupe a tela toda */
    height: 100%;
}

body {
    overflow-x: hidden;
    /* CONFIGURAÇÃO PARA O FOOTER PRENDER NO FUNDO */
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Ocupa no mínimo a altura da tela inteira */
}

/* IMPORTANTE: Garante que o conteúdo principal "empurre" o footer */
main {
    flex: 1 0 auto;
}

/* O footer apenas se posiciona naturalmente ao final do fluxo flex */
.site-footer {
    flex-shrink: 0;
}