/* Ajustes para visualização wide dos veículos */
.vehicles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 40px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.vehicle-card {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vehicle-gallery {
  position: relative;
  height: 400px;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
  background-color: #f5f5f5;
}

.gallery-container {
  display: flex;
  transition: transform 0.3s ease;
  height: 100%;
}

.gallery-item {
  min-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item img {
  width: 100%;
  height: 100% !important;
  object-fit: contain !important;
  max-height: 400px;
}

/* Ajustes para Missão, Visão e Valores */
.mission-section {
  background-color: #f9f9f9;
  padding: 80px 0;
}

.mission-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.mission-item {
  background-color: #fff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  flex: 1;
  min-width: 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.mission-item h3 {
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.mission-item h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
}

.mission-item p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
}

/* Responsividade */
@media (max-width: 768px) {
  .vehicle-gallery {
    height: 300px;
  }
  
  .gallery-item img {
    max-height: 300px;
  }
  
  .mission-item {
    min-width: 100%;
  }
}

@media (max-width: 576px) {
  .vehicle-gallery {
    height: 250px;
  }
  
  .gallery-item img {
    max-height: 250px;
  }
}
