* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
}
:root {
    --bg: #add8e6;
    --texto-principal: #fdecda;
    --texto-nav: #6a6560;
    --texto: #fff6ed;
    --vidro: rgba(255, 255, 255, 0.1)
}

body {
    background: var(--bg);
    color: var(--texto);
}

.particulas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.5;
    background: 
        radial-gradient(circle 850px at 10% 20%, var(--texto-principal) 0%, transparent 40%),
        radial-gradient(circle 850px at 90% 80%, var(--texto-principal) 0%, transparent 40%),
        var(--bg);
}

.folhas-direita {
    position: fixed;
    top: 0;                 
    left: 0;
    height: 100vh;         
    width: auto;            
    object-fit: cover;      
    pointer-events: none;
    z-index: 0;
}

.folhas-esquerda {
    position: fixed;
    top: 0;                 
    right: 0;
    height: 100vh;         
    width: auto;            
    object-fit: cover;      
    pointer-events: none;
    z-index: 0;
}

.navegacao {
    position: fixed;
    top: 0;
    background: var(--texto-principal);
    width: 100%;
    z-index: 100;
    padding: 1.5rem;
}

.menu {
    display: flex;
    justify-content: center;
    gap: 32px;
    list-style: none;
}

.menu-link {
    text-decoration: none;
    color: var(--texto-nav);
    position: relative;
    padding: 0.5rem 0;
    font-weight: 500;
}

.menu-link::after {
    content: '';
    height: 2px;
    width: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, var(--texto-nav), var(--bg));
    transition: width 0.3s ease;
}

.menu-link:hover::after{
    width: 100%;
}

.cabecalho {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.foto-perfil {
    width: 300px;
    height: 300px;
    box-shadow: 0 0 20px rgba(106, 101, 96, 0.6);
    border-radius: 50%;
    border: 4px solid var(--vidro);
    animation: flutuar 3s ease-in-out infinite;
}

h1 {
    color: var(--texto-principal);
    font-size: 3.5rem;
    font-weight: bold;
    margin: 20px;
}

.sub-titulo {
    font-size: 1.5rem;
}

.sobre {
    padding: 6rem 2rem;
}

.sobre-titulo {
    text-align: center;
    font-size: 2.5rem;
}

.sobre-caixa {
    padding: 2rem;
    max-width: 700px;
    margin: 0 auto;
    border-radius: 16px;
    border: 1px solid rgba(253, 236, 218, 0.6);
    backdrop-filter: blur(10px);
    background-color: rgba(57, 42, 27, 0.15);
}

.sobre-eu {
    text-align: center;
    font-size: 1.5rem;
}

@keyframes flutuar {
    0%,100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@media (max-width: 1024px) {

    .foto-perfil {
        width: 220px;
        height: 220px;
    }

    h1 {
        font-size: 2.8rem;
    }

    .sub-titulo {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {

    .menu {
        gap: 16px;
        flex-wrap: wrap;
        font-size: 0.9rem;
    }

    .cabecalho {
        padding: 0 1rem;
        text-align: center;
    }

    .foto-perfil {
        width: 160px;
        height: 160px;
    }

    h1 {
        font-size: 2rem;
    }

    .sub-titulo {
        font-size: 1.1rem;
    }

    .sobre {
        padding: 4rem 1rem;
    }

    .sobre-titulo {
        font-size: 2rem;
    }

    .sobre-caixa {
        padding: 1.5rem;
    }

    .sobre-eu {
        font-size: 1.2rem;
    }

    .folhas-direita,
    .folhas-esquerda {
        display: none; 
    }
}