/* Reset e estrutura básica */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #fff;
  color: #333;
}

.logo-container img {
  height: 90px;
}

.menu {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 10px 20px;
  flex-wrap: wrap;
  gap: 50px; /* espaçamento entre blocos */
}


/* Links à esquerda */
.menu-links {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap; /* Isso permite que se faltar espaço ele quebre, mas só quando for MUITO pequeno */
}

.menu-links a {
  text-decoration: none;
  color: #003366;
  font-weight: bold;
  padding: 6px 10px;
  font-size: 20px;
}



/* Ícones à direita */
.redes-icones {
  display: flex;
  gap: 15px;
  align-items: center;
}

.redes-icones a {
  color: #003366;
  text-decoration: none;
  transition: color 0.3s ease;
}

.redes-icones a:hover {
  color: #003366;
}


.menu a:last-child {
  margin-right: 0;
}


/* Banner rotativo */
.banner {
  width: 100%;
  height: 600px;
  position: relative;
  overflow: hidden;
}

.banner img {
  width: 100%;
  display: none;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 1s ease-in-out;
}

.banner img.active {
  display: block;
}

.vehicles-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 0 20px;
}

.vehicle-card {
  width: 100%;
  max-width: 280px;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 300px; /* ajuste conforme necessário */
}


.vehicle-price-bar {
  background: #e7e7e9;
  color: rgb(66, 60, 151);
  font-size: 18px;
  font-weight: bold;
  padding: 12px 0;
  margin-top: auto;
}


.vehicle-image-container {
  width: 100%;
  height: 200px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f8f8f8;
  border-radius: 6px;
}

.vehicle-image-container img {
  height: 100%;
  width: auto;
  object-fit: contain;
  display: block;
}


.vehicle-info-top {
  display: flex;
  justify-content: space-between;
  padding: 10px 15px;
  font-size: 15px;
  color: #333;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  font-weight: 500;
}

.vehicle-details {
  font-size: 12px;
  font-weight: 400;
  color: #444;
  line-height: 1.4;
  text-transform: none;
  padding: 10px;
  text-align: left;
}

.vehicle-price-bar {
  background: #e7e7e9;
  color: rgb(66, 60, 151);
  font-size: 18px;
  font-weight: bold;
  padding: 12px 0;
}


.section-title {
  text-align: center;
  font-size: clamp(20px, 4vw, 32px);
  font-weight: bold;
  color: #003366;
  margin: 40px 0 20px;
}

footer.rodape-novo {
  background-color: #024283; /* Azul mais claro e moderno */
  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; /* Um amarelo/dourado para destacar os títulos */
  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; /* azul Inovacar */
  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: 16px;
  }

  .logo-container img {
    height: 70px; /* Reduzir o tamanho da logo no mobile */
  }
}