/* -----------------------------
   ESTILO GERAL DO SITE H74
------------------------------ */

/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Arial', sans-serif;
    background-color: #FFFFFF;
    color: #333333;
    line-height: 1.6;
  }
  
  img {
    max-width: 100%;
    height: auto;
  }
  
  /* Container geral */
  .container-section {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 4rem 0;
    text-align: center;
  }
  
  /* -----------------------------
     TOPO (HEADER)
  ------------------------------ */
  /* TOPO */
#header {
    position: fixed;
    top: 0 ;
    left: 0;
    background-color: #fff; /* ou o que preferir */
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid #ccc;
    z-index: 1000; /* Para garantir que fique acima de outros elementos */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Sombra para dar destaque */
  }
  
  .container-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 50px; /* Altura do header */

  }
  
  .area-esquerda img {
    height: 50px; /* ajuste a altura conforme o tamanho do seu logo */
  }
  
  .area-direita nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 20px; /* Espaçamento entre os itens */
  }
  
  .area-direita nav ul li a {
    text-decoration: none;
    color: #333; /* Cor dos links */
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  .area-direita nav ul li a:hover {
    color: #0a5390; /* Verde institucional no hover */
  }
  
  /* Exemplo para destacar botões específicos */
  #btnWhatsapp {
    color: #fff;
    background-color: #0a5390;
    padding: 8px 15px;
    border-radius: 5px;
  }
  
  #portal-cliente {
    color: #333;
    border: #333 1px solid;
    background-color: transparent;
    color: #0a5390;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: bold;
  }
  
  /* -----------------------------
     BANNER PRINCIPAL
  ------------------------------ */
  #banner {
    width: 100%;
    height: 540px;
    background: url('/static/imge/bannerprincipal.png') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #FFFFFF;
    background-attachment: fixed;
    position: relative;
  }
  
  #banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(112, 38, 50, 0.6); /* Bordô escuro translúcido */
    z-index: 1;
  }
  
  .banner-content {
    position: relative;
    z-index: 2;
  }
  
  .banner-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
  }
  
  .banner-content p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
  }
  
  .btn-primary {
    background-color: #0a5390;
    color: #FFFFFF;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1rem;
    transition: background-color 0.3s;
  }
  
  .btn-primary:hover {
    background-color: #005fa3; /* Bordô */
  }
  
  /* -----------------------------
     SESSÕES DE CONTEÚDO
  ------------------------------ */
  h2 {
    font-size: 2rem;
    color: #0a5390;
    margin-bottom: 2rem;
  }
  
  p {
    margin-bottom: 1.5rem;
  }
  
  /* Linha do tempo */
  .linha-tempo {
    display: flex;
    justify-content: space-around;
    margin-top: 2rem;
  }
  
  .linha-tempo .etapa {
    background-color: #844832;
    color: #FFFFFF;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    width: 150px;
    text-align: center;
    transition: transform 0.3s;
  }
  
  .linha-tempo .etapa:hover {
    transform: scale(1.05);
  }
  
  /* Cards de Diferenciais */
  .cards-move {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 2rem;
  }
  
  .cards-move .card {
    background-color: #F5F5F5;
    padding: 2rem;
    margin: 1rem;
    border-radius: 10px;
    width: 250px;
    transition: background-color 0.3s, transform 0.3s;
    cursor: pointer;
  }
  
  .cards-move .card:hover {
    background-color: #844832;
    color: #FFFFFF;
    transform: translateY(-5px);
  }
  
  /* Formulário de Contato */
  #form-contato {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin: 2rem auto 1rem;
  }
  
  #form-contato input,
  #form-contato textarea {
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
  }
  
  #form-contato button {
    align-self: center;
  }
  
  /* Links de contato */
  .contato-links {
    margin-top: 1rem;
  }
  
  .contato-links a {
    margin: 0 1rem;
    text-decoration: none;
    color: #FFFFFF;
    font-weight: bold;
  }
  
  /* Rodapé */
  #footer {
    text-align: center;
    padding: 2rem 0;
    background-color: #D9D9D9;
    font-size: 0.9rem;
  }
  
  /* Espaço para compensar o header fixo */

  
  /* Scroll suave */
  html {
    scroll-behavior: smooth;
  }




  /***************** NOSSA ESSENCIA **********************/
  #essencia {
  background: linear-gradient(135deg, #f0f4f8, #d9eaf2);
  padding: 80px 20px;
  text-align: center;
}

#essencia .container-section {
  max-width: 800px;
  margin: auto;
}

#essencia h2 {
  font-size: 36px;
  color: #004b87;
  margin-bottom: 20px;
  font-weight: bold;
  position: relative;
}

#essencia h2::after {
  content: "";
  width: 60px;
  height: 4px;
  background-color: #004b87;
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

#essencia p {
  font-size: 20px;
  color: #333;
  font-weight: 300;
  line-height: 1.6;
  max-width: 600px;
  margin: auto;
}





/********************* FALE CONOSCO *********************/
.secao-contato{
    padding: 0px 20px;
    margin: 0 auto;
    text-align: center;
    max-width: 1000px;
}


/* Rodapé de Contato */
.contato-rodape {
    background-color: transparent;
    padding: 30px 20px;
    text-align: center;
    margin-top: 0px;

  }
  
  h3 {
    font-size: 2rem;
    color: #333333;
    margin: 0 20px;

    font-weight: 600;
    text-align: center;

  
  }
  
  .botoes-contato {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 15px;
  }
  
  .botoes-contato a {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #004b87;
    color: white;
    padding: 10px 18px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
  }
  
  .botoes-contato a img {
    width: 20px;
    height: 20px;
  }
  
  .botoes-contato a:hover {
    background-color: #005fa3;
    color: white;
    transform: scale(1.05);
    box-shadow: 0px 0px 10px #005fa3;
  }
  
  .mensagem-final {
    color: #666666;
    font-size: 12px;
    margin-top: 10px;
  }





/************************************************************/ 
/************************************************************/ 
/******************* FORMULÁRIO DE CONTATO ******************/
.form-contato {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
}
  
.form-contato input,
.form-contato textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
}
  
.form-contato button {
    background-color: #004b87;
    color: white;
    border: none;
    padding: 12px;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
  
.form-contato button:hover {
    background-color: #0066b2;
}
  
.contato-extra {
    margin-top: 30px;
    text-align: center;
}
  
.btn-whatsapp {
    display: inline-block;
    margin-top: 10px;
    background-color: #004b87;
    color: white;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}
  
.btn-whatsapp:hover {
    background-color: #1eb955;
}
  
.redes-sociais img {
    width: 32px;   /* largura desejada */
    height: 32px;  /* altura desejada */
    object-fit: contain; /* para manter o aspecto da imagem sem distorcer */
}






/************************************************************/ 
/************************************************************/ 
/*************************** CARD **}**********************/
#essencia-cards {
  background-color: #f9fbfc;
  padding: 80px 20px;
}

.card-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}

.card {
  position: relative;
  background-color: #fff;
  border-left: 6px solid #004b87;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  padding: 30px 20px 50px 20px;
  width: 320px;
  border-radius: 8px;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 75, 135, 0.15);
}

.card h3 {
  font-size: 22px;
  color: #004b87;
  margin-bottom: 15px;
}

.card p {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}

.saiba-mais {
  position: absolute;
  bottom: 15px;
  right: 20px;
  font-size: 14px;
  color: #004b87;
  font-weight: 500;
}









/************************************************************/ 
/************************************************************/ 
/*************************** RODAPE **}**********************/


.Cl_footer p, h2 {
  padding: 0;
  margin: 0;
}