.hero {
  padding: 32px 0 8px;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
}
.hero__title {
  font-size: clamp(24px, 3.6vw, 40px);
  line-height: 1.2;
  margin: 0 0 10px;
  color: #ff7a00;
}
.hero__subtitle {
  color: var(--color-muted);
  font-size: 18px;
  margin-bottom: 16px;
}
.hero__text .hero__subtitle:first-of-type {
  margin-bottom: 24px;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 12px;
}
.hero__media {
  min-height: 260px;
  display: grid;
  place-items: center;
}
.carousel {
  width: 100%;
  height: clamp(280px, 32vw, 520px);
  border-radius: 16px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}
.hero__media-cta {
  margin-top: 12px;
  display: flex;
  justify-content: center;
}
.carousel__track {
  position: relative;
  width: 100%;
  height: 100%;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .5s ease;
}
.slide.is-active {
  opacity: 1;
}
.slide__media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Logo sin recorte: centrar y contener dentro del carrusel */
.slide--logo .slide__media {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  height: auto;
  max-width: 95%;
  max-height: 95%;
  object-fit: contain;
  background: transparent;
}

.highlights {
  padding: 8px 0 40px;
}
.highlights__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.highlights .card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.highlights .card .card__text {
  margin-bottom: 12px;
}
.highlights .card .btn {
  align-self: center;
}

@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; }
  .highlights__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .highlights__grid { grid-template-columns: 1fr; }
}


