
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background-color: #fffaf5; 
    line-height: 1.6;
}

/* --------------------------------------------------------------------------------------------------------------- */
header {
    background-color: #ffeadb; 
    padding: 20px 0;
    border-bottom: 2px solid #ffd1b3;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
}

nav ul li {
    margin: 0 20px;
}
/* --------------------------------------------------------------------------------------------------------------------- */
nav ul li a {
    text-decoration: none;
    color: #e67e22;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

nav ul li a:hover {
    color: #d35400;
}


.container {
    max-width: 700px;
    margin: 50px auto;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(255, 209, 179, 0.3);
}


h1 {
    color: #ff9f68; 
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 5px;
}

h2 {
    color: #ffbd9b;
    font-size: 1.2rem;
    text-align: center;
    font-weight: 400;
    margin-bottom: 30px;
}


.perfil {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.foto-biografia {
    width: 220px; 
    height: 220px;
    object-fit: cover; 
    border-radius: 50%; 
    border: 5px solid #ffeadb;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}


.conteudo p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    text-align: center;
}

strong {
    color: #e67e22;
}


footer {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    color: #b38b7d;
    font-size: 0.9rem;
}
.foto-biografia {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    
  
    border: 2px solid rgba(255, 255, 255, 0.8);
    

    animation: flutuarELuz 5s ease-in-out infinite;
}

@keyframes flutuarELuz {
    0%, 100% {
        transform: translateY(0);
      
        box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
    }
    50% {
        transform: translateY(-12px);
        
        box-shadow: 0 0 35px rgba(255, 223, 137, 0.6), 0 0 10px rgba(255, 255, 255, 0.4);
    }
}