.hero-slider {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-color: #000;
}

/* Oscurecemos un poco la capa para que el texto resalte como en tu imagen */
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6); 
}

.hero-slider .carousel-cell {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  
  /* Flexbox para centrar el contenido perfectamente */
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slider .carousel-cell .inner {
  position: relative;
  z-index: 2; /* Para que quede por encima del overlay oscuro */
  color: white;
  text-align: center;
  max-width: 850px; /* Limita el ancho para que el texto haga saltos de línea como en la imagen */
  padding: 0 20px;
}

.hero-slider .carousel-cell .inner .subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-slider .carousel-cell .inner .title {
  font-family: "Montserrat", sans-serif;
  font-size: 3.5rem;
  line-height: 1.2em;
  font-weight: 700;
  margin-bottom: 25px;
  color: #fff;
}

.hero-slider .carousel-cell .inner .description {
  font-family: "Montserrat", sans-serif;
  font-size: 1.1rem;
  line-height: 1.6em;
  margin-bottom: 40px;
  font-weight: 400;
  color: #f1f1f1;
}

/* Solo le damos un pequeño margen al botón, 
   el color y forma lo pondrá tu tema de WordPress automáticamente */
.hero-slider .carousel-cell .inner .hero-btn {
  display: inline-block;
  margin-top: 10px;
  text-decoration: none;
}

/* Controles de Flickity (Flechas y Puntos) */
.hero-slider .flickity-prev-next-button {
  width: 80px;
  height: 80px;
  background: transparent;
}
.hero-slider .flickity-prev-next-button:hover {
  background: transparent;
}
.hero-slider .flickity-prev-next-button .arrow {
  fill: white;
}
.hero-slider .flickity-page-dots {
  bottom: 30px;
}
.hero-slider .flickity-page-dots .dot {
  width: 30px;
  height: 4px;
  opacity: 1;
  background: rgba(255, 255, 255, 0.5);
  border: 0;
  border-radius: 0;
}
.hero-slider .flickity-page-dots .dot.is-selected {
  background: #ff0000;
}

/* Diseño Responsivo para móviles */
@media (max-width: 768px) {
  .hero-slider .carousel-cell .inner .title {
    font-size: 2.2rem;
  }
  .hero-slider .carousel-cell .inner .description {
    font-size: 1rem;
  }
}