@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');


* {
    padding:0;
    margin: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
  }

body{
   
    font-size:16px;
    font-family:"Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight:weight;
    font-style:normal; 
    color:#0C1013;
   
}

.sidebar{
    display: none;
}

header {
    width: 100%; 
    position: absolute;
    z-index:1; 
    height: 75px; 
    background-color: #ffffff;
}


.top{
    width: 100%;
    height: 30px;
    background-color: #10294b;
    text-align: center;
    color:white;
    position: fixed;
    bottom:0;
}

.navegacao{
display: flex;
justify-content: space-between;


}

.logo{
    color: white;
    font-size:24px;
    flex:1;
    background-image: url(../img/logo.jpg); 
    background-repeat: no-repeat;
    height: 81px;   
}

.logo2{
    display: none;
    color:white;
    font-size: 30px;
    padding-left:20px;
    padding-top:10px;
    padding-bottom:10px;
}

.hamburguer{
    display:none;
 
    }

  /* Menu overlay */
  .menu-toggle {
    font-size: 30px;
    cursor: pointer;
    position: fixed;
    top:18px;
    right: 20px;
    z-index: 1000; /* Para que o ícone fique acima de outros elementos */
    }
    
    .sidebar {
    position: fixed;
    top: 0;
    right: 100%; /* Inicialmente fora da tela */
    width: 100%;
    height: 100%;
    background:#1F3C5E;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
    transition: right 0.3s ease; /* Transição suave */
    padding: 20px;
    z-index: 999; /* Para que a sidebar fique acima de outros elementos */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    }
    
    .sidebar a {
    color: white;
    text-decoration: none;
    background-color: rgba(255, 255, 255, 0.041);
    margin: 7px 0;
    transition: color 0.3s; /* Transição suave para a cor */
    width: 100%;
    padding:10px;
    text-align: center;
    font-size: 20px;
    }
    
    .sidebar a:hover {
    color: #ffffff; /* Cor ao passar o mouse */
    background-color:#BD2635;
    }    


nav {
  width: 100%;
  flex: 3;
  font-size: 24px;
}

/* Estilo geral para o menu */
.navegacao nav ul {
  list-style: none; /* Remove os marcadores padrão da lista */
  padding-top:15px;
  margin: 0;
  display: flex; /* Alinha os itens na horizontal */
  gap: 15px; /* Espaçamento entre os itens */
  display: flex; /* Garante que o texto seja tratado como bloco inline */
  align-items: center;
  justify-content: flex-end;
  
}

.navegacao nav ul li {
  position: relative; /* Necessário para o pseudo-elemento ::after */
 
}

.navegacao nav ul li a {
  font-size: 16px;
  color: #10294b;
  text-decoration: none;
  text-transform: uppercase;
 
 
}

/* Adiciona a barra "/" após cada item, exceto o último */
.navegacao nav ul li:not(:last-child)::after {
  content: "/";
  position: relative; /* Muda para relative para evitar conflitos */
  margin-left: 5px; /* Adiciona espaço antes da barra */
  color: #10294b;
}

.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background-color: #25D366;
    border-radius: 50px;
    padding: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    border-radius: 50px;
    color: white;
  }

/* SESSÃO INICIAL*/

.hero{
    height: 100vh;
    width: 100%;
    background-image: url(../img/back2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
  

}

.hero-items{
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color:white; 
    flex-direction: column;   
}

.hero-items p{
    padding-left:1%;
    padding-right: 1%;
}

.hero-button{
    padding:15px 50px;
    background-color: #10294b;
    color:white;
    border:0;
    cursor: pointer;
}

.banner{
    margin-top:80px;
}

/* sessão sobre */

.sobre{
    padding:50px;
    background-color: #10294b;
    color:white;
}

/* SESSÃO SERVIÇO*/

.servico{
    padding:50px 0;
    color:#1F3C5E;
}

.servico i{
    border-radius: 50%;
    background-color: #BD2635;
    padding: 5px 10px;
    color: white;
}

.container .servico-item{
    flex:1;
    background-color: #1F3C5E;
   
}

.container .servico-item1{
    flex:2;
    background-color: #1F3C5E;
  
}

.container .servico-item2{
    flex:3;
    background-color: #1F3C5E;
  
}

/* SESSÃO CONTATO*/

.contato{
    background-color: #1F3C5E;
    padding-bottom:5px;
    padding-top:50px;
    color:white;
    
}

footer{
    padding:10px 0;
    color:#BD2635;
}

.contato i{
    border-radius: 50%;
    background-color: #BD2635;
    padding: 5px 10px;
    color: white;
   
}

.telefones{
    display: flex;
    justify-content: space-between;
    align-items: center;
    
}


    /* Estilos para celulares que 768px */
    @media screen and (max-width: 768px) {  
       .navegacao nav{
          display: none;
        }
        
        .hamburguer{
            width: 100%;
            position: fixed;
            z-index: 1000; /* Para que o ícone fique acima de outros elementos */
            color:white;
            display:flex;
                      
        }

        .hamburguer-items{
            display: flex;
            justify-content: space-between;
            align-items: center;    
              
        }
    
         #menuIcon{        
        
       
          color:white;
         
         
         }

       .logo {
          display: none;
        }
      
        .logo2{
            display: inline-block;
            z-index: 999; /* Para que o ícone fique acima de outros elementos */
            position:fixed;
            background-color: #1F3C5E;
            width:100%;
            
        }

        .telefones{
            display: none;
        }

        .hero-items h1{
            font-size:2rem;
        }
      
    
        }

        @media screen and (max-width: 1200px) {  
            .navegacao nav{
               display: none;
             }
             
             .hamburguer{
                display:flex;
                padding-right: 30px;
                padding-top:50px ;
                font-size: 20px;
               
             }
         
              #menuIcon{        
              
               color:white;
              
              
              }
     
            .logo {
               display: none;
             }
                
                       
             .top{
                bottom:0;
                position: fixed;
                z-index:1;
                background-color: #10294b;
             }

             .logo2{
                display: inline-block;
                z-index: 999; /* Para que o ícone fique acima de outros elementos */
                position:fixed;
                background-color: #1F3C5E;
                width:100%;
                
            }

            .telefones{
                display: none;
            }

            .hero-items h1{
                font-size:35px;
               
            }

            .hero-items h2{
                font-size:25px;
               
            }
         
             }

             @media screen and (orientation: landscape) {
                /* Estilos para dispositivos menores em paisagem */
           
                .hero-items h1{
                    margin-top:80px;
                }

                .servico h2{
                    font-size:27px;
                   
                }
                .servico h4{
                    font-size:18px ;
                }

                .contato h2{
                    font-size: 30px;
                }
              }

 



     