
.carousel-item img {
  width: 100%;
  height: 60vh; /* 60% del alto de la pantalla */
  object-fit: cover; /* Recorta sin deformar */
}

/* General */
body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  background-color: #f9f9f9; /* fondo claro */
  color: #333;
}

/* Secciones de información */
section {
  padding: 20px 0px;
}

/* Títulos */
section h2 {
  font-size: 2rem;
  font-weight: bold;
  color: #0579ec; /* azul fuerte tipo deportivo */
}

/* Texto */
section p {
  font-size: 1.1rem;
  color: #555;
}

/* Imágenes */
section img {
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

section img:hover {
  transform: scale(1.05); /* efecto zoom al pasar el mouse */
}

/* Separación entre secciones */
section:nth-child(even) {
  background-color: #ffffff; /* alterna blanco */
}

section:nth-child(odd) {
  background-color: #f0f4f8; /* alterna gris claro */
}

/* Responsivo (pantallas pequeñas) */
@media (max-width: 768px) {
  section h2 {
    text-align: center;
  }
  section p {
    text-align: center;
  }
  section img {
    margin-bottom: 20px;
  }
}

