
/* Reset e estrutura básica */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #fff;
  color: #333;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  flex-wrap: wrap;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.logo-container img {
  height: 90px;
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: center;
  }

  .menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 0;
    margin-top: 10px;
  }

  .menu-links, .redes-icones {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }

  /* NOVO: Agrupar os dois juntos horizontal no mobile */
  .menu {
    flex-direction: column;
  }

  .menu-content-mobile {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    flex-direction: row;
  }

  .menu-links a, .redes-icones a {
    font-size: 16px;
  }

  .logo-container img {
    height: 70px;
  }
}


.banner {
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
}

.banner img {
  width: 100%;
  display: none;
  transition: opacity 1s ease-in-out;
}

.banner img.active {
  display: block;
}

.section-header {
  text-align: center;
  font-size: 1.8em;
  margin: 40px 0 20px;
  border-bottom: 2px solid #003366;
  display: inline-block;
  padding-bottom: 5px;
}

.section-title {
  text-align: center;
  font-size: clamp(20px, 4vw, 32px);
  font-weight: bold;
  color: #003366;
  margin: 40px 0 20px;
}

.veiculos-section {
  text-align: center;
}

footer.rodape-novo {
  background-color: #024283;
  color: #ffffff;
  padding: 30px 20px 10px 20px;
  font-family: Arial, sans-serif;
}

.rodape-superior {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 20px;
  border-bottom: 1px solid #ccc;
}

.rodape-coluna {
  flex: 1 1 250px;
  margin: 10px;
}

.rodape-coluna h4 {
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 10px;
}

.rodape-coluna p, .rodape-coluna a {
  font-size: 14px;
  color: #ffffff;
  text-decoration: none;
}

.rodape-coluna a:hover {
  text-decoration: underline;
  color: #FFCC00;
}

.rodape-inferior {
  text-align: center;
  font-size: 12px;
  color: #cccccc;
  margin-top: 15px;
}

.rodape-inferior a i {
  color: #ffffff;
  margin-left: 5px;
}

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #1ebd5a;
}

.section-title {
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.section-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  width: 100%;
  background-color: #003366;
  border-radius: 2px;
}

.vehicle-card {
  text-decoration: none;
  color: inherit;
}

.botao-ver-mais {
  background-color: #003366;
  color: #fff;
  padding: 10px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.botao-ver-mais:hover {
  background-color: #001f4d;
}

.texto-justificado {
  text-align: justify;
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: center;
  }

  .menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 0;
    margin-top: 10px;
  }

  .menu-links, .redes-icones {
    display: flex;
    flex-direction: row;
    gap: 15px;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
  }

  .menu-links a, .redes-icones a {
    font-size: 20px;
  }

  .logo-container img {
    height: 70px;
  }
}

footer.rodape-simples {
  background-color: transparent;
  color: #666;
  padding: 35px 10px;  /* Aumentei o espaçamento superior e inferior */
  font-family: Arial, sans-serif;
  font-size: 12px;
  text-align: center;
  margin-top: 30px;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1); /* Sombra superior */
}

footer.rodape-simples a {
  color: #666;
  text-decoration: none;
  font-size: 12px;
}

footer.rodape-simples a:hover {
  text-decoration: underline;
}

footer.rodape-simples i {
  margin-left: 5px;
  color: #666;
}
