
body{
  background:linear-gradient(90deg, #F2DEF6, #EBFEFF);
  display: flex;
  flex-direction: column; 
  min-height: 100vh;
  margin: 0; 

}
header {
  display: flex;               
  justify-content: space-between; 
  align-items: center;         
  padding: 20px 40px;           
  color: black;              
  font-family: 'Madimi One', cursive;
} 


.logo {
  display: flex;
  align-items: center;
  gap: 10px; 
}


.bolinha {
  width: 40px;
  height: 50px;
  background-color: #9948CF;
  border-radius: 47%; 
}


.logo span {
  font-weight: normal; 
  font-size: 20px;
  opacity: 0.5; 
}
.logo a{
  text-decoration: none;
  color: black;
}
.logo strong {
  font-size: 20px;
  font-weight: 550; 
  color: black; 
}
.logo strong:hover {
  text-decoration: underline;
  text-decoration-color: #666363; 
  text-decoration-thickness: 0.8px; 
  
}

nav li a {
  color: #332F2F;            
  text-decoration: none;   
  margin-left: 20px; 
  font-family: "Manjari", sans-serif;      
  font-weight: 400;
  font-size: 18px;
}
nav ul{
  display: flex;
  justify-content: center;
  gap: 15px;
  list-style: none;          
}


nav a:hover {
  text-decoration: underline; 
}

main {
  display: flex;             
  align-items: center;          
  justify-content: center;      
  padding: 20px 270px;           
  gap: 60px;                    
  background: linear-gradient(90deg, #F2DEF6, #EBFEFF);   
  flex-wrap: wrap;   
  flex: 1;           

}


.perfil img {
  flex: 0 0 250px;
  width: 330px;
  height: 400px;
  object-fit: cover;            
  border-radius: 47%;             
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); 
}

.sobre{
  flex: 1;
}

.sobre h1 {
  font-family: Madimi One, cursive; 
  font-size: 68px;
  color: black;
  margin-bottom: 10px;
}


.sobre h2 {
  font-family: Madimi One, cursive; 
  font-size: 30px;
  color: black;
  margin-bottom: 15px;
}


.sobre p {
  font-size: 22px;
  font-family: Manjari, sans-serif;
  line-height: 1.5; 
  white-space: normal; 
}
footer {
  display: flex; 
  gap: 30px;                
  justify-content: space-between; 
  align-items: center;
  flex-wrap: wrap;               
  padding: 20px 40px;   
  font-family: "Manjari", sans-serif;
}

.contato {
  display: flex;     
  gap: 180px;         
  flex-wrap: wrap;
  justify-content: center; 
  margin-bottom: 10px;
  justify-content: space-evenly;

}
.contato a{
  text-decoration: none;
  color:#332F2F; 
}
.contato div {
  text-align: left;
  min-width: 180px;
}

.direitos {
  font-size: 14px;
  opacity: 0.7;
}
hr.linha {
  border: none;
  height: 0.5px;
  opacity: 0.5;
  border-top: 1px solid #c1c0c0;
  margin: 20px 40px;
}







@media (max-width: 768px) {
    
    header {
        flex-direction: column; 
        padding: 15px 20px; 
        gap: 15px; 
    }

    .logo {
        flex-direction: column; 
        text-align: center; 
        gap: 5px; 
    }

    .logo-img { 
        width: 60px; 
        height: 60px;
    }

    nav ul {
        flex-direction: column; 
        align-items: center; 
        gap: 10px; 
        padding: 0; 
    }

    nav li a {
        margin-left: 0; 
        font-size: 16px; 
    }

    hr.linha {
        margin: 10px 20px; 
    }

    
    main {
        flex-direction: column; 
        padding: 30px 20px; 
        gap: 30px; 
        align-items: center; 
        justify-content: center;
    }

    .perfil img {
        width: 250px; 
        height: 300px; 
        flex: auto; 
    }

    .sobre {
        flex: auto; 
        text-align: center; 
    }

    .sobre h1 {
        font-size: 48px; 
        margin-bottom: 5px;
    }

    .sobre h2 {
        font-size: 24px; 
        margin-bottom: 10px;
    }

    .sobre p {
        font-size: 18px; 
    }

    
    footer {
        flex-direction: column; 
        padding: 20px; 
        gap: 20px; 
        text-align: center; 
    }

    .contato {
        flex-direction: column; 
        gap: 20px; 
        margin-bottom: 0; 
        width: 100%; 
        align-items: center; 
    }

    .contato div {
        text-align: center; 
        min-width: unset; 
    }
}




@media (max-width: 480px) {
    header {
        padding: 10px 15px;
    }

    .logo strong,
    .logo span {
        font-size: 18px; 
    }

    nav li a {
        font-size: 14px; 
    }

    main {
        padding: 20px 15px;
    }

    .perfil img {
        width: 200px;
        height: 250px;
    }

    .sobre h1 {
        font-size: 38px;
    }

    .sobre h2 {
        font-size: 20px;
    }

    .sobre p {
        font-size: 16px;
    }

    footer {
        padding: 15px;
    }

    .direitos {
        font-size: 12px;
    }
}