.unifrakturmaguntia-regular {
    font-family: "UnifrakturMaguntia", cursive;
    font-weight: 400;
    font-style: normal;
}

:root {
    --preto: #000000;
    --branco: #ffffff;
    --dourado: #C9A227;
    --bege: #e3c49a;
    --vermelho: #D50000;
    --fonte--principal: "UnifrakturMaguntia", cursive;
    --fonte--secundaria: "Playfair Display", serif;
    --fonte--terciaria: "Oswald", sans-serif;
}

body {
    background-image: url(img/Background-bio.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}


.cabecalho {
    position: absolute;
    max-width: 95%;
    width: 95%;
    padding: 10px 0;
    z-index: 1000;
    top: 0%;
    left: 0%;
}

.logo {
    width: 118px;
    height: auto;
}

.cabecalho {
    display: flex;
    font-family: var(--fonte--terciaria);
    justify-content: space-around;
    align-items: center;
    padding: 20px 40px;
    background-color: transparent;
    animation: fadeInDown 1s ease-in-out;
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.cabecalho__lista {
    display: flex;
    gap: 35px;
    list-style: none;
}

ul li a {
    text-decoration: none;
    color: var(--branco);
    font-size: 24px;
    font-weight: 400;
}

ul li a:hover {
    color: var(--branco);
    transition: color 0.4s ease;
}

.cabecalho__lista li a {
    position: relative;
    transition: color 0.3s ease;
}

.cabecalho__lista li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background-color: var(--branco);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.cabecalho__lista li a:hover::after {
    transform: scaleX(1);
}



.biografia {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 9rem;
    color: var(--preto);
    font-family: var(--fonte--secundaria);
    text-shadow: 1px 1px 2px #000;
}

.container__biografia {
    text-align: center;
    margin-bottom: 4rem;
}

.biografia h2 {
    font-family: var(--fonte--terciaria);
    font-size: 46px;
    color: var(--branco);
    margin-bottom: 20px;
    text-align: center;
}

.biografia h3 {
    font-family: var(--fonte--terciaria);
    font-size: 22px;
    color: var(--dourado);
    margin-bottom: 20px;
    text-align: center;
}

.biografia p {
    padding: 10px 20rem;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--branco);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.biografia__imagem {
    display: block;
    max-width: 100%;
    width: 400px;
    height: auto;
    margin: 1.5rem auto 0 auto;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}




.footer {
    font-family: var(--fonte--secundaria);
    color: var(--branco);
    background: url('') center center / cover no-repeat fixed;
    background-attachment: fixed;
    overflow: hidden;
    opacity: 0;
    transition: opacity 1.5s ease;
}

.footer__visible {
    opacity: 1;
}

.footer__background {
    position: relative;
    height: 25rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer__titulo {
    font-size: 17rem;
    color: var(--branco);
    mix-blend-mode: difference;
    letter-spacing: 8px;
    font-weight: 900;
    pointer-events: none;
    user-select: none;
    text-align: center;
    transition: color 1s ease, filter 1s ease;
}

.footer__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    gap: 2rem;
    background-color: rgba(0, 0, 0, 0.5);
}

.footer__redes__sociais p {
    text-align: center;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.footer__icons a {
    margin: 0 0.6rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.footer__icons img {
    width: 32px;
    height: 32px;
    transition: filter 0.3s ease;
}

.footer__icons a:hover img {
    filter: brightness(1.3) sepia(1) hue-rotate(20deg) saturate(2);
    transform: scale(1.1);
}


.footer__links ul {
    font-family: var(--fonte--principal);
    list-style: none;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.footer__links a {
    color: var(--branco);
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__links a:hover {
    color: var(--dourado);
}


.footer__copyright {
    text-align: center;
    padding: 1.5rem;
    background-color: rgba(0, 0, 0, 0.8);
    font-size: 1rem;
    color: var(--branco);
}