body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    padding-top: 40px; /* dependendo da altura do header */
  }
  @media (max-width: 768px) {
    body {
      padding-top: 60px; /* ajuste para telas menores */
    }
    html{
      scroll-behavior: smooth;
    }
  }
  .info {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('seu-background.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
  }
  
  .info {
    display: flex;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .image-box {
    flex: 1;
    margin-right: 20px;
  }
  
  .image-box img {
    width: 100%;
    height: auto;
  }
  
  .info-box {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 20px;
  }
  
  .info-box h1 {
    font-size: 36px;
    margin-bottom: 10px;
  }
  
  .info-box p {
    font-size: 18px;
    line-height: 1.6;
  }
  @media (max-width: 768px) {
    .info {
      flex-direction: column;
      text-align: center;
    }
  
    .image-box {
      margin-right: 0;
      margin-bottom: 20px;
    }
  
    .info-box h1 {
      font-size: 28px;
    }
  
    .info-box p {
      font-size: 16px;
    }
  }
  

  /*New CSS*/
  header { 
    background-color: #35A0A2;
     color: white; 
       background-image: url('../image/fundo.jpg'); /* Ajuste o caminho conforme a nova estrutura */
  background-size: cover;
  background-position: center;
      margin-top: 20px; /* ou o valor que quiser */
     padding: 40px 20px;
      text-align: center;
     }
  header h1 { 
    margin: 0; 
    font-size: 32px; 
  }
  header p { font-size: 18px; 
    margin-top: 10px;
   }
  .cta-btn { background-color: #35A0A2;
     color: white; 
     padding: 12px 24px;
      text-decoration: none; 
      font-weight: bold; 
      border-radius: 4px; 
      display: inline-block; 
      margin-top: 20px; 
    }
  
  h2 { color: #00a3b2; }
  .btn-center { text-align: center; }

  .logo img {
    height: 50px; /* Ajuste conforme necessário */
  }
  @media (max-width: 768px) {
    .logo img {
      height: 40px; /* Ajuste para telas menores */
    }
  
  }

  /*eu quero um código para que o menu estivesse em cima mas também reasse um pouco para não estar tanto no topo da pag*/
 /* Espaçamento do topo */
/* HEADER e NAVBAR */
.header {
  margin-top: 10px;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  z-index: 1000;
  width: 100%;
}
@media (max-width: 768px) {
  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 10px 20px;
  }
}

.navbar {
  border-top: 2px solid #39a2b9;
  background-color: white;
}
.navbar {
  position: relative;
}

.navbar ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}

.navbar li {
  position: relative;
}

.navbar a {
  display: block;
  color: #00a3b2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

.navbar a:hover {
  background-color: #ddd;
  color: #000;
}

@media (max-width: 768px) {
  .navbar ul {
    flex-direction: column;
    display: none; /* Esconde o menu por padrão */
  }
  .navbar{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: white;
    z-index: 1000;
  }
  
  .navbar ul.active {
    display: flex; /* Exibe o menu quando ativo */
  }
  
  #menu-btn {
    display: block; /* Exibe o botão de menu */
  } 
  #menu-btn.active + .navbar ul {
    display: flex; /* Exibe o menu quando o botão é clicado */
  }
  #menu-btn {
    display: none; /* Esconde o botão de menu por padrão */
    font-size: 2rem;
    color: #333;
    cursor: pointer;
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 1001;
  }
  #menuContainerEs {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    z-index: 1000;
  }
  #menuContainerEs.active {
    display: flex;
  }
  /* Banner / Slider Responsivo */
  .slider-banner .item-kv-txt {
    text-align: center;
    padding: 1rem;
    margin-top: 1rem;
  }
  .slider-banner h2,
  .slider-banner h3 {
    font-size: 1.5rem;
  }
  .slider-banner .btnSL {
    display: inline-block;
    margin-top: 1rem;
  }
  /* Processo de trabalho */
  .process .box-container {
    flex-direction: column;
    padding: 0 1rem;
  }
  .process .box {
    margin-bottom: 2rem;
    text-align: center;
  }
  .process .box img {
    max-width: 80%;
    height: auto;
    margin-bottom: 10px;
  }
  .logo img {
    max-height: 80px;
    width: auto;
  }
  .header .logo img {
    max-width: 150px;
    height: auto;
  }
  #menu-btn {
    display: block;
    font-size: 2rem;
    color: #333;
    cursor: pointer;
  }
  /* Esconde menu por padrão em telas pequenas */
  #menuContainerEs {
    display: none;
  }
  /* Ativa o menu em modo mobile (ajuste seu JS conforme necessário) */
  .navigation.active,
   #menuContainerEs.active {
    display: block;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: white;
    z-index: 1000;
    padding: 1rem;
  }
  /* --- BANNERS COM IMAGEM DE FUNDO --- */
  .slider-banner .item {
    padding: 2rem 1rem;
    background-size: cover !important;
    background-position: center center !important;
  }
  .item-kv-txt h2, .item-kv-txt h3 {
    font-size: 1.4rem;
  }
}
  /*.btnSL {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.6rem 1.2rem;
    font-size: 1rem;
  }*/ 
  
  /* --- FILL BANNER (TEXTOS SOBRE IMAGEM) --- */
  .fill-banner {
    padding: 2rem 1rem;
    background-size: cover !important;
    background-position: center center !important;
    color: white;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
  }
  .fill-banner h2 {
    font-size: 3.5rem;
  }
  .fill-banner p {
    font-size: 2rem;
  }
  /* --- SEÇÃO FINAL CTA --- */
  .btn-center {
    padding: 2rem 1rem;
    text-align: center;
  }
  .btn-center .cta-btn {
    padding: 0.8rem 1.5rem;
    background: #007BFF;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2rem;
  }
  .btn-center .cta-btn:hover {
    background: #0056b3;
  }

 /*new*/

 main {
      max-width: 1100px;
      margin: 3rem auto;
      padding: 0 2rem;
    }
    .services {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 2.5rem;
      margin-bottom: 3rem;
    }
    .service-item {
      background: #34a1bd;
      border-radius: 13px;
      padding: 3rem 1.6rem;
      box-shadow: 1 6px 19px rgba(0,0,0,0.1);
      text-align: center;
      transition: transform 0.3s ease;
    }
    .service-item:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 25px rgba(0,0,0,0.15);
    }
    .service-item h3 {
      margin-top: 1.5rem;
      margin-bottom: 0.8rem;
      color: var(--primary-color);
      font-weight: 700;
    }
  .services img {
   margin: 1rem 0;    
   height: 10rem;
   object-fit: cover; /* Garante que a imagem preencha o espaço sem distorção */
  }
 

  @media (max-width: 900px) {
    .services {
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 1.2rem;
    }
    .service-item {
      padding: 2rem 1rem; /* Ajuste o padding para telas menores */
    }
    .service-item h3 {
      font-size: 1.2rem; /* Ajuste o tamanho da fonte para telas menores */
    }
    .service-item p{
      font-size: 0.9rem; /* Ajuste o tamanho da descrição */
    }
   
    main {
      padding: 1rem 0.5rem;
    }
  }
  @media (max-width: 600px) {
    .container {
      width: 99vw;
      padding: 10px 2vw;
      min-width: unset;
    }
    .services {
      grid-template-columns: 1fr;
      gap: 1rem;
    }
    .service-item {
      padding: 2rem 1rem; /* Ajuste o padding para telas menores */
    }
    .service-item h3 {
      font-size: 1.1rem; /* Ajuste o tamanho da fonte */
    }
  }
  /*endNew*/

 

 
  /* Apenas a primeira letra maiúscula, o resto minúsculo */
h2, h3, p {
  text-transform: lowercase;
}
h2::first-letter,
h3::first-letter,
p::first-letter {
  text-transform: uppercase;
}

/*new*/
.card .content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.card .box {
  width: 260px;
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}



    .card .box img {
      width: 100%;
      height: auto;
      border-radius: 10px;
    
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 21px;
}
.card .box h3 {
  margin: 1rem 0;
  font-size: 1.9rem;
  color: #333;
}
.card .box p {
  font-size: 1.4rem;
  color: #666;
}
.card .box a {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 16px;
  background: #007BFF;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
} 

.card .box{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 21px;
}
  @media (max-width: 768px) {
    .card .content {
      flex-direction: column;
      align-items: center;
    }
    .card .box {
      width: 100%;
      max-width: 300px;
    }
    .card .box img {
      width: 100%;
      height: auto;
    }
    .card .box h3 {
      font-size: 1.5rem;
    }
    .card .box p {
      font-size: 1.2rem;
    }
    .card .box a {
      padding: 10px 20px;
      font-size: 1rem;
    }
  }

 


    .menuToggle {
      display: none;
      flex-direction: column;
      cursor: pointer;
      gap: 5px;
    }

    .menuToggle span {
      display: block;
      width: 25px;
      height: 3px;
      background: #00a3b2;
    }

    @media (max-width: 768px) {
      .navbar ul {
        display: none;
        flex-direction: column;
        background-color: #fff;
        width: 100%;
        position: absolute;
        top: 70px;
        left: 0;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      }

      .navbar ul.active {
        display: flex;
      }

      .menuToggle {
        display: flex;
      }
    }
  
 