/* ===== HERO / FULL SECTION ===== */
.driver-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  overflow: hidden;
  background: var(--dark-blue);
}

.driver-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  filter: brightness(0.55);
}

.driver-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.277)
}

.driver-hero__container {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 0 64px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

/* ===== INTRO ===== */
.driver-hero__title {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 96px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 2px;
}

.driver-hero__desc {
  margin: 0;
  color: rgba(255, 255, 255, 0.80);
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 1px;
}

/* ===== SECTION TITLE (yellow) ===== */
.driver-section-title {
  margin: 0 0 28px;
  text-align: center;
  color: var(--yellow);
  font-size: 28px;
}

/* ===== STAFFING GRID ===== */
.driver-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 48px 48px;
}

.driver-avatar__ring {
  width: 128px;
  height: 128px;
  overflow: hidden;
  flex-shrink: 0;
}

.driver-avatar__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.driver-avatar__name {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.90);
  font-weight: 400;
  background: rgba(27, 42, 74, 0.65);
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.3px;
}

.driver-avatar__name strong {
  font-weight: 700;
  color: var(--white);
}

/* ===== VEHICLE SLIDER ===== */
.driver-vehicles {
  display: flex;
  flex-direction: column;
}

.vehicle-slider {
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  align-items: center;
  gap: 12px;
  height: 300px;
}

.vehicle-slider__arrow {
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  color: var(--yellow);
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s;
  flex-shrink: 0;
}

.vehicle-slider__arrow:hover {
  transform: scale(1.2);
}

.vehicle-slider__track {
  overflow: hidden;
}

/* ===== VEHICLE CARD ===== */
.vehicle-card {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  border-radius: 16px;
  padding: 28px 24px 22px;
}

.vehicle-card.active {
  display: flex;
}

.vehicle-card__img-wrap {
  width: 100%;
  max-width: 320px;
  /* drop shadow para recortes PNG sobre fondo oscuro */
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.55));
}

.vehicle-card__img {
  width: 100%;
  height: auto;
  display: block;
}

.vehicle-card__name {
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.3px;
}

/* ===== CTA ===== */
.driver-cta-wrap {
  display: flex;
  justify-content: center;
}

.driver-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 48px;
  background: var(--yellow);
  color: var(--dark-blue);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  font-family: var(--font);
  transition: filter 0.2s;
}

.driver-cta:hover {
  filter: brightness(1.08);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
  .driver-hero__title { font-size: 36px; }
  .driver-section-title { font-size: 22px; }
  .driver-avatar__ring { width: 80px; height: 80px; }
  .vehicle-slider { grid-template-columns: 32px 1fr 32px; }
  .driver-grid {justify-content: center;}
}