body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #fff; /* fundo base neutro */
  }
  
  html, body {
    overflow-x: hidden;
  }
  
  .meioHeader h1 {
    width: 25%;
    float: left;
  }
  
  .meioHeader h1 img {
    width: 100%;
  }


  .menuGeral {
    max-width: 960px; 
    background: linear-gradient(90deg, #fdfdfd 0%, #eeeeee 100%);
    border-radius: 20px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    padding: 8px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
  }
  
  .menu {
    display: flex;
    gap: 20px;
  }
  
  .menu li {
    list-style: none;
    padding-top: 5px;
  }
  
  .menu li a {
    color: black;
    text-decoration: none;
  }
  
  .social-icons {
    display: flex;
    gap: 10px;
  }
  
  .social-icons i {
    font-size: 24px;
    color: white;
  }

  .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #000; /* Fundo preto */
    color: #fff; /* Ícone branco */
    border-radius: 50%; /* Deixa redondo */
    text-decoration: none;
    margin: 0 5px;
    font-size: 20px;
    margin-top: -4px;
  }

  .conteudo {
    float: left;
    width: 100%;
    margin-top: -150px;
  }
  

  .meioConteudo {
    max-width: 1000px;
    margin: auto;
    background-color: #fff;
  }



  .batclick-benefits {
    padding: 60px 20px 0px 20px;
    background: #fff;
    font-family: Arial, sans-serif;
  }
  
  .batclick-benefits .content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
  }
  
  .batclick-benefits .image img {
    max-width: 100%;
    border-radius: 10px;
  }
  
  .batclick-benefits .info {
    max-width: 450px;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  
  .batclick-benefits .item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
  }
  
  .batclick-benefits .item i {
    font-size: 28px;
    color: #f26622;
  }
  
  .batclick-benefits .item h3 {
    margin: 0;
    font-size: 18px;
    color: #f26622;
  }
  
  .batclick-benefits .item p {
    margin: 5px 0 0;
    font-size: 14px;
    color: #555;
  }
  
  .batclick-benefits .cta {
    margin-top: 40px;
    text-align: center;
  }
  
  .batclick-benefits .cta a {
    background-color: #f26622;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 16px;
    border-radius: 5px;
    display: inline-block;
    font-weight: bold;
  }
  
  .batclick-benefits .cta a:hover {
    background-color: #d9541c;
  }
  
  /* Responsivo */
  @media (max-width: 768px) {
    .batclick-benefits .content {
      flex-direction: column;
      text-align: center;
    }
    .batclick-benefits .item {
      justify-content: center;
      text-align: left;
    }
    .meioHeader h1 img {
      width: 179%;
    }
  
  }

  .sobre-bateclick {
    padding: 35px 20px;
    background: #fff;
    text-align: center;
    font-family: Arial, sans-serif;
  }
  
  .sobre-bateclick h2 {
    color: #f26622;
    font-size: 32px;
    margin-bottom: 20px;
  }
  
  .sobre-bateclick .subtitulo {
    font-size: 18px;
    color: #333;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .sobre-bateclick .cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
  }
  
  .sobre-bateclick .card {
    background: none;
    width: 300px;
    text-align: center;
  }
  
  .sobre-bateclick .card i {
    font-size: 36px;
    color: #f26622;
    margin-bottom: 15px;
  }
  
  .sobre-bateclick .card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #222;
  }
  
  .sobre-bateclick .card p {
    font-size: 14px;
    color: #555;
  }
  
  .sobre-bateclick .imagem-sobre {
    margin-top: 50px;
  }
  
  .sobre-bateclick .imagem-sobre img {
    max-width: 400px;
    width: 100%;
  }
  
  /* Responsivo */
  @media (max-width: 768px) {
    .sobre-bateclick .cards {
      flex-direction: column;
      align-items: center;
    }
  
    .sobre-bateclick .imagem-sobre img {
      margin-top: 20px;
    }
  }

  .beneficios {
    padding: 35px 20px;
    background: #fff;
    font-family: Arial, sans-serif;
    text-align: center;
  }
  
  .beneficios h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #111;
  }
  
  .beneficios-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 40px;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .beneficio-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    text-align: left;
  }
  
  .beneficio-item i {
    font-size: 24px;
    color: #7BB927; /* Verde semelhante */
    min-width: 30px;
  }
  
  .beneficio-item p {
    font-size: 15px;
    color: #444;
    margin: 0;
  }
  
  /* Responsivo */
  @media (max-width: 768px) {
    .beneficios-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }
  }

  .cadastro-oficina {
    background-color: #1c1c1c;
    color: white;
    padding: 60px 20px;
    font-family: Arial, sans-serif;
    text-align: center;
  }
  
  .cadastro-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
  }
  
  .cadastro-texto h1 {
    font-size: 32px;
    margin-bottom: 20px;
  }
  
  .cadastro-texto h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  
  .cadastro-texto .destaque {
    color: #f26622;
  }
  
  .botao-cadastro {
    display: inline-block;
    background-color: #f26622;
    color: white;
    font-size: 20px;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    margin: 20px 0;
    font-weight: bold;
  }
  
  .botao-cadastro:hover {
    background-color: #d9541c;
  }
  
  .cadastro-texto h3 {
    color: #f26622;
    font-size: 22px;
    margin-top: 30px;
  }
  
  .cadastro-icone {
    position: relative;
    font-size: 80px;
  }
  
  .cadastro-icone .fas.fa-car {
    position: absolute;
    top: 18px;
    left: 18px;
    font-size: 40px;
  }
  
  .cadastro-icone .icone-check {
    position: absolute;
    top: 0px;
    right: -10px;
    font-size: 24px;
    color: #7BB927;
    background: #1c1c1c;
    border-radius: 50%;
  }
  
  .cadastro-descricao {
    max-width: 800px;
    margin: 40px auto 0;
    text-align: justify;
  }
  
  .cadastro-descricao p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.6;
  }
  
  /* Responsivo */
  @media (max-width: 768px) {
    .cadastro-container {
      flex-direction: column;
    }
    
    .cadastro-icone {
      margin-top: 30px;
    }
  }

  .sessao-credenciamento {
    padding: 35px 20px;
    background-color: #fff;
    text-align: center;
    font-family: Arial, sans-serif;
  }
  
  .container-credenciamento {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .container-credenciamento h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 20px;
  }
  
  .container-credenciamento h2 strong {
    color: #333;
  }
  
  .container-credenciamento p {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
  }
  
  .container-credenciamento .subtitulo {
    font-size: 18px;
    color: #f26622;
    font-weight: bold;
    margin-bottom: 20px;
  }
  
  .botao-credenciamento {
    display: inline-block;
    background-color: #f26622;
    color: white;
    padding: 15px 40px;
    font-size: 16px;
    text-decoration: none;
    border-radius: 12px;
    font-weight: bold;
  }
  
  .botao-credenciamento:hover {
    background-color: #d9541c;
  }
  
  /* Responsivo */
  @media (max-width: 768px) {
    .container-credenciamento h2 {
      font-size: 26px;
    }
  
    .botao-credenciamento {
      width: 80%;
      max-width: 300px;
    }
  }

  footer {
    float: left;
    width: 100%;
    background-color: #262626;
    padding: 8px 0;
  }

  footer p {
    color: white;
    text-align: center;
  }