:root
{
     --cor-primaria: #003366;
  --cor-secundaria: #02807f;
  --header-: #026969;
  --fundo: #02807f;
  --texto: #333333;
  --padding-padrao: 20px;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
      font-family: "Roboto", sans-serif;
}
.container_main
{
    width: 100%;
    max-width: 100vw;
    background-color: #02807f;
height: 100vh;
background-attachment: fixed;
}

header 

{
display: flex;
align-items: center;
justify-content: space-between;
padding: 10px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.334);
background-color:var(--header-) ;
position: fixed;
top: 0;
left: 0;
width: 100%;
z-index: 1000; 
padding-right: 20px;
}
.logoheader{
  width: 200px;
}
.item_menu{
     display: flex;
gap: 20;
justify-content: center;
align-items: center;
 
}
/* Ícone hambúrguer */
.menu-toggle {
  display: none;
  font-size: 24px;
  color: white;
  cursor: pointer;
}
@media (max-width: 768px) {
  .item_menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 50px;
    right: 0px;
    background-color: #026969;
    padding: 15px;
    border-radius: 8px;
  }

  .item_menu.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}
#btnContato 
{
  background-color: white;
  padding: 5px;
  border-radius: 10px;
  color: #026969;
}
.item_menu a{
  text-decoration: none;
  color: white;
  margin: 10px;
  font-weight: 400;
   
}

.item_menu a:hover {
  padding: 4px;
  color: white;
  background: rgba(255,255,255,0.08);
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
.logoName{
  font-family: "Roboto", sans-serif;
  color: white;
  font-weight: 300;

}
.section_main{
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.inform_section_main{
    width: 50%;
    margin-top: 1px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.imagem_section_main
{
  margin-top:4rem;
    width: 50%;
    height: 100%;
 
}
.imagemMain{
    margin-top: 20px;
    width: 100%;
    height: 100%;
 
}

.paragraf_main
{
    color: var(--cor-primaria);
    color: white; 
}
#typewriter {
  font-size: 24px;             
  color: white;                
  font-weight: 500;            
  border-right: 2px solid white;  
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
  animation: blink 0.7s step-end infinite;
  padding: 10px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);  
}

@keyframes blink {
  50% {
    border-color: transparent;
  }
}

@media (max-width: 800px) {
    .container_main {
        height: auto;
        min-height: 100vh;
        padding-bottom: 20px;
    }
    .logo_infor
    {
        width:50%;
    }
    .item_menu {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        align-items: flex-start;
    }
    .item_menu a {
        margin: 5px 0;
        font-size: 16px;
    }
    .section_main {
        flex-direction: column-reverse;
        padding: 10px 0;
    }
    .inform_section_main,
    .imagem_section_main {
        width: 100%;
      
        margin-top: 2rem;
        align-items: center;
        justify-content: center;
       
    }
    .imagemMain {
        width: 95%;
        height: 100%;
        margin-top: 10px;
    }
    #typewriter {
        font-size: 18px;
        padding: 6px;
    }
}