/* =============================
   RESET E CONFIGURAÇÕES GERAIS
   ============================= */
   * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    /* White from your palette = #f0f0f0 */
    background-color: #f0f0f0;
    color: #000;
    font-family: Arial, sans-serif;
    /* Espaço para header fixo */
    padding-top: 100px;
  }
  
  /* =============================
     HEADER
     ============================= */
  .header-container {
    /* Use #f0f0f0 (white from your palette) or keep #fff if you prefer */
    background-color: #f0f0f0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }
  header {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 0;
  }
  .title h1 {
    font-size: 1.5rem;
    line-height: 1.2;
    color: #0f2185; /* Primary blue */
  }
    header a {
        color: #0f2185 !important; /* Cor inicial do texto */
        transition: color 0.3s ease; /* Transição suave para a mudança de cor */
    }

    header a:hover {
        color: #81c24e !important; /* Cor do texto ao passar o mouse */
        /* Remova as propriedades de background e padding para manter apenas a cor do texto */
    }
  
  /* =============================
     SLIDER SECTION
   ============================= */
.slider_section {
  position: relative;
  width: 100%;
  min-height: 500px; /* Garante que o slider tenha pelo menos 500px de altura */
  overflow: hidden; /* Evita bordas brancas */
}

.carousel-inner {
  width: 100%;
  height: 500px; /* Mantém o tamanho fixo para evitar variações */
}

.carousel-item {
  width: 100%;
  height: 100%;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Mantém a proporção sem distorcer */
  display: block;
}

/* Remove indicadores de números */
.carousel-indicators {
  display: none;
}

/* Estilização para setas de navegação */
.carousel-control-prev, .carousel-control-next {
  width: 5%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1); /* Deixa os ícones brancos para melhor visibilidade */
}

    
  
 /* =============================
    ABOUT SECTION
    ============================= */
.about_section {
  background-color: #ffffff;
  padding: 60px 0;
}

.about_section .row {
  align-items: center;
}

.about_section .detail-box {
  padding-right: 30px;
}

.about_section .section-subtitle {
  color: #81c24e;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.about_section .section-title {
  color: #0f2185;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.about_section p {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
}

.about_section strong {
  color: #000;
  font-weight: 700;
}

.about_section .img-box img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Estilo do Botão de Contato */
.contact-button {
  display: inline-block;
  background-color: #0f2185; /* Cor de fundo do botão */
  color: #ffffff; /* Cor do texto do botão */
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  margin-top: 20px; /* Espaçamento acima do botão */
  transition: background-color 0.3s ease; /* Transição suave na cor de fundo */
}

.contact-button:hover {
  background-color: #0a165a; /* Cor de fundo ao passar o mouse */
}
  
  /* =============================
     SERVICES SECTION
     ============================= */
     .services_section {
      background-color: #f8f9fa;
      padding: 30px 0;
    }
    
    .services_section .heading_container {
      margin-bottom: 20px;
      text-align: center;
    }
    
    .services_section h2 {
      color: #0f2185;
      font-weight: 600;
    }
    
    .introductory-text {
      color: #555;
      line-height: 1.6;
      margin-bottom: 20px;
      text-align: center;
    }
    
    .services-container {
      display: flex;
      justify-content: center; /* Centraliza os itens na tela */
      gap: 40px; /* Espaço entre os serviços */
    }
    
    .service-box {
      text-align: center;
      padding: 20px;
      border-radius: 8px;
      background-color: #fff;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      width: 300px; /* Define um tamanho fixo */
    }
    
    .service-box:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    }
    
    .service-box .img-box {
      margin-bottom: 15px;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    
    .service-box .img-box img {
      max-width: 100px;
      height: auto;
    }
    
    .services_section h5 {
      color: #333;
      margin-bottom: 10px;
    }
    
    .service-description {
      color: #555;
      line-height: 1.6;
      margin-bottom: 15px;
    }
    
    .service-text {
      color: #777;
      font-style: italic;
    }
/* =============================
     CLIENTES SECTION
   ============================= */
   .clientes_section {
    padding: 30px 0;
    text-align: center;
}

.clientes_section .heading_container h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.clientes_wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px; /* Espaçamento entre as imagens */
    flex-wrap: wrap; /* Faz as imagens quebrarem linha em telas pequenas */
}

.clientes_wrapper img {
    width: 250px; /* Aumentei a largura */
    height: 120px; /* Aumentei a altura */
    object-fit: contain; /* Mantém a proporção sem cortar */
    padding: 10px;
    background: #fff; /* Fundo branco para logos com transparência */
    box-shadow: 0 2px 10px ; /* Sombra suave */
    border-radius: 10px; /* Bordas arredondadas */
    transition: transform 0.3s ease; /* Efeito suave ao passar o mouse */
}

.clientes_wrapper img:hover {
    transform: scale(1.05); /* Efeito de zoom ao passar o mouse */
}

.clientes_wrapper img:hover {
    transform: scale(1.05); /* Efeito de zoom ao passar o mouse */
}
  
/* =============================
    CONTACT SECTION
============================= */
  .contact_section {
    position: relative;
    padding: 60px 0;
}
  .contact_section form {
    margin-top: 45px;
}
  .contact_section input {
    width: 100%;
    border: 1px solid #a5a5a5;
    height: 50px;
    margin-bottom: 25px;
    padding-left: 15px;
    background-color: transparent;
    color: #000;
    outline: none;
}
  .contact_section input::placeholder {
    color: #1c1b1b;
}
  .contact_section input.message-box {
    height: 120px;
}
  .contact_section button {
    font-family: "Poppins", sans-serif;
    padding: 10px 65px;
    background-color: #81c24e; /* Secondary green */
    color: #f0f0f0; /* White from your palette */
    border-radius: 3px;
    transition: transform 0.3s ease, background-color 0.3s ease;
    border: 1px solid #81c24e;
    margin-top: 10px;
    cursor: pointer;
}
  .contact_section button:hover {
    transform: translateY(-3px);
    background-color: #649a39;
    border-color: #649a39;
}
  .map_container {
    height: 100%;
    min-height: 325px;
    overflow: hidden;
    margin-left: 45px;
}
  .map_container .map {
    height: 100%;
}
  .map_container .map #googleMap {
    height: 100%;
}
  
  /* =============================
     INFO SECTION
     ============================= */
  .info_section {
    background-color: #0f2185; /* Primary blue */
    color: #fff;
    padding: 45px 0 15px 0;
}
  .info_section h4 {
    font-weight: 600;
    margin-bottom: 20px;
}
  .info_section .info_col {
    margin-bottom: 30px;
}
  .info_section .info_contact .contact_link_box {
    display: flex;
    flex-direction: column;
}
  .info_section .info_contact .contact_link_box a {
    margin: 5px 0;
    color: #fff;
    text-decoration: none;
  }
  .info_section .info_contact .contact_link_box a i {
    margin-right: 5px;
}
  .info_section .info_contact .contact_link_box a:hover {
    color: #81c24e; /* Secondary green */
}
  .info_section .info_social {
    display: flex;
    margin-top: 20px;
    margin-bottom: 10px;
}
  .info_section .info_social a {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    border-radius: 50%;
    margin-right: 10px;
    font-size: 24px;
    text-decoration: none;
}
  .info_section .info_social a:hover {
    color: #81c24e; /* Secondary green */
}
  .info_links {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}
  .info_links a {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #fff;
    text-decoration: none;
}
  .info_links a:hover {
    color: #81c24e; /* Secondary green */
}
  
  /* =============================
     FOOTER
     ============================= */
  .footer_section {
    background-color: #f8f9fa;
    padding: 20px 0;
    text-align: center;
}
  .footer_section p {
    margin: 0;
    color: #333;
}
  
.btn-contato {
  background-color: #0f2185;
  border-color: #0f2185;
  color: #fff;
}
.btn-contato:hover,
.btn-contato:focus {
  background-color: #0c185e;
  border-color: #0c185e;
  color: #fff;
}
  