/* Reset */
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: Arial, sans-serif;
}

/* Carrusel */
.carousel {
  position: relative;
  width: 100%;
  height: 100vh; /* pantalla completa */
  overflow: hidden;
}

.carousel-item {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.carousel-item.active {
  opacity: 1;
  position: relative;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* evita bordes blancos */
  display: block;
}

/* Texto encima */
.carousel-caption {
  position: absolute;
  bottom: 25%;
  left: 10%;
  color: #fff;
  max-width: 600px;
  text-align: left;
}

.carousel-caption p {
  font-size: 22px;
  line-height: 1.6;
  margin-bottom: 20px;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

.carousel-caption .btn {
  font-size: 18px;
  padding: 12px 25px;
  background: #b81818;
  color: #fff;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s ease;
}
.carousel-caption .btn:hover {
  background: #f5442d;
}

/* Puntos de navegación */
.dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  background: #bbb;
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background: #b81818;
}
