body {
  margin: 0;
  font-family: 'Fredoka', sans-serif;
  overflow: hidden;
  height: 100vh;
}

.video-container {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

#fondoVideo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: relative;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.45);
  width: 100%;
  height: 100%;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mensaje {
  text-align: center;
  margin-top: 25vh;
  max-width: 800px;
  padding: 2rem;
}

.mensaje h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  color: #fff;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

.mensaje p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #e0f7fa;
}

.btn-explorar {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.5rem;
  background: linear-gradient(135deg, #43a047, #2e7d32);
  border: none;
  border-radius: 30px;
  color: white;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  transition: 0.3s;
}

.btn-explorar:hover {
  background: linear-gradient(135deg, #66bb6a, #388e3c);
  transform: scale(1.05);
}

#cabecera-container {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
