@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: 'Noto Sans', sans-serif;
    background: #fff;
}

a, h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    font-size: 1.5em;
}

a{
    color:#000;
    text-decoration: none;
    font-family: 'Noto Sans', sans-serif;
 }

.site {
    max-width: 1200px ;
    width: 100%;
    margin: 0 auto;
}

img{
    width: 100%;
}

strong{
    font-weight: bold;
}

html {
    scroll-behavior: smooth;
}

.slick-dots{
    bottom: 25px;
    display: none !important;
}

.slick-dotted.slick-slider {
     margin-bottom: 0px; 
}

.inicio .slick-prev
{
    display: none !important;
}

.inicio .slick-next
{
    display: none !important;
}

/* Estilo para o loader */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff; /* Cor do fundo do loader */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Certifique-se de que ele apareça acima de tudo */
}

/* Spinner de loading */
.spinner {
    border: 16px solid #f3f3f3; /* Cor externa do spinner */
    border-top: 16px solid #3498db; /* Cor da parte superior do spinner */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
}

/* Animação do spinner */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* #################################################################################### WHATSAPP */

.whatsapp-fixo {
    position: fixed;
    bottom: 20px;
    right: 20px; 
    width: 60px;
    height: 60px;
    z-index: 9999;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.whatsapp-fixo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

/* Efeito ao passar o mouse */
.whatsapp-fixo:hover {
    transform: scale(1.1);
}

/* #################################################################################### BARRA FIXA TOPO */

/* Estilo inicial transparente */
.menu-fixo.menu-transparente {
    background: transparent;
    box-shadow: none;
}

.menu-fixo.menu-transparente .options h2 {
    color: #fff; /* Cor branca para o texto enquanto o fundo é transparente */
}

.menu-fixo {
    display: flex;
    background: #fff;
    margin: 0;
    padding: 0px;
    align-items: center;
    box-shadow: 0 1px 6px #000;
    z-index: 9998;
    top: 0;
    position: fixed;
    width: 100%;
    transition: transform 0.3s ease-in-out;
}

.ajuste-menu {
    max-width: 1500px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
}

.logo {
    padding: 10px;
}

.logo img{
    width: 160px;
}

.menu {
    display: flex;
    margin-left: 10px;
    align-items: center;
}

.options {
    display: flex;
    align-items: center;
    margin-left: 10px;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
}

.options h2 {
    margin-left: 10px;
    color: #003D69;
    font-size: 20px;
    position: relative;
    overflow: hidden;
}

/* Linha preta com animação estilo sublinhado */
.options h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0; /* Alinha a linha com a parte inferior do texto */
    width: 0;
    height: 2px; /* Espessura da linha */
    background-color: #000; /* Cor da linha */
    transition: width 0.3s ease; /* Velocidade e estilo da animação */
}

.options:hover h2::after {
    width: 100%; /* Expande a linha completamente ao passar o mouse */
}

.menu-fixo.hidden {
    transform: translateY(-100%);
}

/*########################################################################################################### COOKIE */

/* Popup principal de cookies */
.cookie-popup {
    display: none; /* Escondido inicialmente */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    border: 2px solid #ccc;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 300px;
    text-align: center;
    z-index: 10000;
    border-radius: 10px;
}

.cookie-content p, .cookie-content h2 {
    margin-bottom: 20px;
    font-size: 16px;
    color: #333;
}

.cookie-content p a{
    color: #4473f7;
    font-size: 16px;
    text-decoration: underline;
}

.cookie-content p a:hover{
    color: #2a4eb1;
    font-size: 16px;
    text-decoration: underline;
}

.cookie-popup button {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 8px 26px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    margin: 5px;
}

.cookie-popup button:hover {
    background-color: #218838;
}

#cookie-options{
    background-color: #3e3e3e;
}

#cookie-options:hover{
    background-color: #303030;
}

.cookie-popup input[type="checkbox"] {
    margin-right: 10px;
}

/* Escondendo o segundo popup inicialmente */
#cookie-options-popup {
    display: none;
}

/*################################################################################################ Banner e Imagem */
.banner {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
}

.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ajusta a imagem para cobrir o banner completamente */
}

/* Texto do Banner */
.banner-content {
    position: absolute;
    right: 10%; /* Ajusta a posição da div de texto à direita */
    top: 50%;
    transform: translateY(-50%); /* Centraliza verticalmente */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px; /* Espaçamento de 5px entre os textos */
}

/* Estilo individual para h2 e p */
.banner-content h2,
.banner-content p {
    background: rgba(0, 0, 0, 0.7); /* Fundo preto semitransparente */
    color: #fff; /* Texto branco */
    padding: 10px; /* Espaçamento interno para cada bloco de texto */
    margin: 0;
    max-width: 355px; /* Limite de largura para o texto */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Sombra opcional para destacar */
}

.banner-content h2{
    font-size: 40px;
}

.banner-content p{
    font-size: 20px;
}

/*########################################################################################################### SOBRE */

.sobre{
    padding: 15px;
    margin-top: 40px;
}

.sobre-texto{
    display: flex;
}

.sobre-texto img{
    width: 710px;
    height: 380px;
}

.sobre-texto div{
    margin-left: 40px;
    width: 73%;
}

.sobre h1{
    font-size: 3.5em;
    color: #003d69;
}

.sobre p{
    font-size: 1.5em;
    margin-top: 15px;
    line-height: 45px;
}

/*########################################################################################################### PORQUE L2G */

.porque{
    margin-top: 45px;
    margin-bottom: 45px;
}

.porque  h2{
    font-size: 2.2em;
    color: #003d69;
}

.porque-box{
    margin-top: 30px;
    justify-content: center;
    display: flex;
}

.porque-box1{
    width: 40%;
    padding: 25px;
}

.porque-box2{
    display: flex;
    align-items: center;
}

.porque-box2 img{
    width: 25%;
}

.porque-box h2{
    font-size: 2em;
    margin-left: 10px;
    border-bottom: 2px solid #003d69;
    width: 100%;
    line-height: 45px;
}

.porque-box p{
    font-size: 1.3em;
    margin-top: 10px;
    line-height: 35px;
}

/*########################################################################################################### SERVIÇOS */

.servico {
    background: #002742;
}

.servico h2 {
    font-size: 3.5em;
    text-align: center;
    color: #fff;
    padding: 20px;
}

.servico-box {
    display: flex;
    gap: 20px; /* Espaço entre os serviços */
    margin-top: 20px;
}

.servico-box1 {
    position: relative;
    padding: 10px;
    overflow: hidden; /* Para garantir que o overlay não saia dos limites */
    display: flex;
    flex-direction: column;
    align-items: center; /* Centraliza o conteúdo horizontalmente */
    justify-content: center; /* Centraliza o conteúdo verticalmente */
}

.servico-box1 img {
    width: 100%;
    display: block;
}

/* Overlay azul transparente */
.servico-box1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 39, 66, 0.5); /* Azul transparente */
    transition: background 0.3s ease; /* Animação ao passar o mouse */
}

/* Estilo do texto e link dentro do overlay */

.servico-box1 h3,
.servico-box1 a {
    position: relative;
    z-index: 1; /* Garante que estejam acima do overlay */
    color: #fff;
}

.servico-box1 h3 {
    text-align: center;
    font-size: 1.5em;
    top: -120px;
}

.servico-box1 a {
    background: #004080;
    color: #fff;
    text-decoration: none; /* Remove o sublinhado padrão dos links */
    padding: 10px 15px;
    cursor: pointer;
    transition: background 0.3s ease;
    top: -90px;
    align-self: center;
    border-radius: 3px; /* Deixa com bordas arredondadas como o botão */
    display: inline-block; /* Garante que o link se comporte como um botão */
    font-size: 1em;
}

.servico-box1:hover::before {
    background: rgba(0, 39, 66, 0.7); /* Aumenta a opacidade do overlay ao passar o mouse */
}

.servico-box1 a:hover {
    background: #002742; /* Muda a cor do link ao passar o mouse */
}

/*########################################################################################################### GALERIA */

.galeria{
    background: #002742;
  }
   
  .galeria img {
    margin: 0 5px;
  }

  .galeria h2{
    font-size: 3.5em;
    text-align: center;
    padding: 10px;
    margin-bottom: 60px;
    color: #fff;
  }

  .galeria div{
    margin-bottom: 30px;
  }
  
  .galeria .slick-prev:before,
  .galeria .slick-next:before
  {
      font-size: 50px;
      color: #fff;
      display: none;
  }
  
  .galeria .slick-prev
  {
      left: -100px;
      z-index: 2;
  }
  
  .galeria .slick-next
  {
      right: 40px;
  }

  /*########################################################################################################### CONTATO */

  .contato{
    background: #fff;
  }

  .contato h2{
    font-size: 3.5em;
    color: #003d69;
    text-align: center;
    padding: 20px;
  }

  .cont-mens{
    display: flex;
    margin-top: 30px;
    justify-content: center;
  }

  .contato p{
    color: #000;
    width: 70%;
    font-size: 1.2em;
    line-height: 25px;
  }

  .contato input{
    width: 360px;
    height: 40px;
    border: 1px solid #a5a4a4;
    margin-bottom: 10px;
    font-size: 1.3em;
    background: #c3c3c3;
    color: #000;
  }

  .contato textarea{
    width: 360px;
    height: 230px;
    margin-bottom: 10px;
    border: 1px solid #a5a4a4;
    font-size: 1.5em;
    background: #c3c3c3;
    color: #000;
  }

  .contato input[type='submit'],
  .contato button{
    width: 50%;
    font-size: 1em;
    cursor: pointer;
    background: #004080;
    color: #fff;
    border: 1px solid #b7b7b7;
    margin-bottom: 50px;
  }

  .contato input[type='submit']:hover,
  .contato button:hover{
    background: #002742;
    color: #e9e9e9;
  }

  .contato h3{
    display: block;
    font-size: 2em;
    color: #fff;
  }

  #captcha{
    width: 88px;
    font-size: 0.8em;
  }

  .mapa iframe{
    display: flex;
    width: 620px;
    height: 345px;
    margin-top: 60px;
    box-shadow: 0 0 5px #fff;
    border: 1px solid #a5a4a4;
}

  /*########################################################################################################### RODAPÉ */

  .rodape{
    background: #002742;
  }

  .rodape3{
    background: #002742;
    padding-top: 10px;
    padding: 5px 0;
    border-top: solid 1px #e2e2e2;
}

.rodape3 div{
    display: flex;
    justify-content: space-between;
}

.rodape3 h2{
    font-weight: lighter;
    text-align: center;
    line-height: 1.5;
    margin: 0 auto;
    color: #fff;
    font-size: 0.9em;
}

.rodape3 a{
    font-size: 0.9em;
    text-decoration: underline;
    color: #fff;
    font: inherit;
}

.rodape3 a:hover{
    color: #cdcdcd;
}

/*############################################################################### SOBRE O SERVIÇO ####*/

.sobre-serv{
    margin-top: 125px;
    margin-bottom: 50px;
}

.sobre-serv h1{
    font-size: 3.5em;
    border-bottom: 2px solid #003D69;
    color: #003D69;
    line-height: 80px;
}

.sobre-serv div{
    margin-top: 55px;
}

#imagem-serv{
    width: 600px;
    height: 600px;
}

#serv-cont{
    display: flex;
}

.sobre-serv p{
    padding: 10px;
    font-size: 1.5em;
    line-height: 50px;
    margin-left: 60px;
}

/*############################################################################### POLÍTICAS ####*/

.politica{
    margin-top: 130px;
}

.politica h1{
    font-size: 3em;
    text-align: center;
    margin-bottom: 25px;
}

.politica p{
    width: 65%;
    text-align: justify;
    margin: auto;
    font-size: 1.2em;
    line-height: 35px;
}

.politica h2{
    font-size: 2em;
    width: 65%;
    margin: 40px auto 20px auto;
}

.politica a{
    font-size: 1em;
    color: #0240b1;
    text-decoration: underline;
}

.politica a:hover{
    color: #022d7c;
}


























