/* Reset e Estilos Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--fonte-corpo);
    color: var(--cor-texto);
    background: var(--cor-fundo);
    line-height: var(--line-height-normal);
    overflow-x: hidden;
}

/* Animações Globais */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}


/* Estilos específicos do site 5HT */
/* Hierarquia Tipográfica: Visby (h1-h3) | GFS Artemisia (h4-h6) | Mont (corpo) */

/* Cabeçalhos Principais - Visby */
h1, h2, h3 {
    font-family: var(--fonte-cabecalho);
    color: #fff7f7;
    font-weight: 700;
}

/* Subcabeçalhos - GFS Artemisia */
h4, h5, h6 {
    font-family: var(--fonte-subcabecalho);
    color: #fff7f7;
    font-weight: 700;
}

/* Corpo de Texto - Mont */
a, i, select {
    color: #fff7f7;
    font-family: var(--fonte-corpo);
}

/* Textos e Listas - GFS Artemisia */
.p, .pg, .pp, p, li, ul, ol {
    color: #fff7f7;
    font-family: var(--fonte-subcabecalho);
}

/* Spans - GFS Artemisia */
span {
    color: #fff7f7;
    font-family: var(--fonte-subcabecalho);
}

/* Strong/Bold - Visby */
strong, b {
    font-family: var(--fonte-cabecalho);
    font-weight: 700;
}

body {
    font-family: var(--fonte-corpo);
}

/* Smooth scroll */
html, body {
    scroll-behavior: smooth;
}

/* Seleção de texto */
::selection {
    background-color: var(--cor-secundaria);
    color: var(--cor-branco);
}

::-moz-selection {
    background-color: var(--cor-secundaria);
    color: var(--cor-branco);
}
