*{
    margin: 0px;
} 

#titulo-menu-superior{
    margin-left: 62px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;     
    font-size: 60px;      
    line-height: 72px;   
    color: #FFFFFF;      
}



#texto-menu-superior{
    margin-left: 62px;
    margin-top: 28px;
    font-weight: 500;
    font-size: 20px;
    color: #FFFFFF;
}

#menu-superior{
    background-color: #303030;
    font-family: 'inter';
    height: 475px;
    width: 100%;
    min-width: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#imagem-menu-informacional{
    display: block;
    margin: 0 auto;
}

#menu-informacional{
    background-color: #F9F9F9;
}

.sobre .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.sobre .texto {
  flex: 2;
  text-align: center;
  margin-top: 75px;
  margin-bottom: 75px;
}

.sobre .texto h2 {
  font-family: 'Inter', sans-serif;
  font-size: 34px;
  font-weight: 500;   
  line-height: 20px; 
  margin-bottom: 20px;
}


.sobre .texto p {
  font-size: 24px;
  font-weight: 300;
  line-height: 1.6;
  color: #555;
}

.sobre .imagem {
  flex: 1;
  margin-top: 60px;
  margin-bottom: 60px;
}

.sobre .imagem img {
  max-width: 100%;
  
}

#formulario{
    background-color: #303030;
    text-align: center;
    padding-top: 50px;
}

#titulo-formulario{
    font-family: 'Inter', sans-serif;
    text-align: center;
    font-size: 32px;
    color: #FFFFFF;
    font-weight: 700;
    margin-bottom: 40px;
}

input{
    height: 72px;
    width: 508px;
    background-color: #FFFFFF;
    margin: 20px;
    border: 0px;
    border-radius: 10px;
    padding-left: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 20px;
}

button{
    height: 74px;
    width: 286px;
    background-color: #C07212;
    color: #FFFFFF;
    font-size: 25px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    margin: 20px;
    border-radius: 10px;
    border: 0px;
    margin-bottom: 50px;
    margin-top: 55px;
    cursor: pointer;
}

button:hover{
    transform: translateY(-7px);
    box-shadow: 0px 15px 20px #0c0c0b ;
    transition-duration: 0.5s;
}


.texto, .imagem {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.visivel {
  opacity: 1;
  transform: translateY(0);
}

