.ad-preview-section {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ad-preview-section .section-heading {
  font-size: xx-large;
  width: 300px;
}

@media (min-width: 480px) {
  .ad-preview-section .section-heading {
    width: auto;
  }
}

@media (min-width: 768px) {
  .ad-preview-section .section-heading {
    font-size: 3em;
  }
}

/* Estilos del carousel */
.carousel-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-slide {
  flex: 0 0 100%;
  display: flex;
  justify-content: center;
  padding: 0 10px;
  box-sizing: border-box;
}

.video-container {
  width: 80%;
  position: relative;
}

/* Controles de navegación */
.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  gap: 20px;
}

.carousel-btn {
  background: #333;
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  transition: background 0.3s;
}

.carousel-btn:hover {
  background: #555;
}

.carousel-dots {
  display: flex;
  gap: 10px;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: background 0.3s;
}

.carousel-dot.active {
  background: #333;
}

/* Responsivo */
@media (min-width: 768px) {
  .carousel-slide {
    flex: 0 0 50%;
  }
}

@media (min-width: 1024px) {
  .carousel-slide {
    flex: 0 0 33.333%;
  }
}
