/* Hero Section */
.hero {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  clip-path: ellipse(100% 100% at 50% 0%);
  overflow: hidden;
  height: 100vh;
  padding: 0 10%; /* Añadir padding para mantener el margen */
}

.hero video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%; /* Aumentar el ancho del video */
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

/* Contenido del Hero */
.hero-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

/* Título */
.hero h1 {
  margin-top: 220px;
  font-size: 3rem;
  font-weight: bold;
  color: red;
  margin-bottom: 10px;
}

/* Descripción */
.hero p {
  font-size: 1.5rem;
  line-height: 1.8;
  color: yellowgreen;
}

/* Botón Hero */
.hero-btn {
  background-color: transparent;
  color: white;
  border: 2px solid white;
  padding: 12px 24px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin-bottom: 45px;
}

.hero-btn:hover {
  background-color: white;
  color: black;
  transform: scale(1.05);
}


  