/* General */
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background-color: #ffffff;
  text-align: center;
}

header {
  padding: 20px 0;
}

.logo-container {
  text-align: center;
}

.logo {
  max-width: 200px;
  width: 40%;
  height: auto;
}

/* Carrusel */
.hero-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

.swiper {
  width: 100%;
  max-height: 500px;
  height: 60vh;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #1A1A1A;
  border-radius: 12px;
  overflow: hidden;
}

.slide-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Video */
.video-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
  cursor: pointer;
}

/* Botón de play grande centrado */
.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 64px;
  color: #FFFFFF;
  background: rgba(0,0,0,0.4);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}

/* Flechas */
.swiper-button-next,
.swiper-button-prev {
  color: #00BFFF;
  width: 60px;
  height: 60px;
}
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 40px;
  font-weight: bold;
}

/* Paginación */
.swiper-pagination-bullet {
  background: white;
  border: 2px solid black;
  width: 18px;
  height: 18px;
}
.swiper-pagination-bullet-active {
  background: #007BFF;
  border: 2px solid black;
}

/* Footer */
footer {
  margin-top: 20px;
  padding: 10px 0;
  color: black;
  background-color: #ffffff;
  font-weight: bold;
}

/* Responsivo */
@media (max-width: 992px) {
  .swiper { height: 45vh; }
}
@media (max-width: 576px) {
  .swiper { height: 35vh; }
  .play-button {
    font-size: 48px;
    width: 80px;
    height: 80px;
  }
  .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
  }
}















