/* RESET BÁSICO */
html, body {
  width: 100%;
  height: 100%;
  margin: 0;
}

/* SECCIÓN PRINCIPAL */
.home-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #000; /* fallback */
}

/* VIDEO DE FONDO */
.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;   /* CLAVE */
  z-index: 1;
}

/* OVERLAY PARA SUAVIZAR */
.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.55),
    rgba(0, 0, 0, 0.75)
  );
  z-index: 2;
}

/* CONTENIDO ENCIMA DEL VIDEO */
.home-container {
  position: relative;
  z-index: 3;
  max-width: 520px;
}

/* TÍTULO */
.home-title {
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  color: rgb(24, 123, 126);
}

.home-title span {
  font-weight: 600;
  font-size: larger;
  color: rgb(217, 216, 216);
}

/* LOGO */
/* CONTENEDOR DEL LOGO */
.logo-wrapper {
  width: 160px;
  height: 160px;
  margin: 0 auto;
  border-radius: 24px; /* cambia a 50% si lo quieres circular */
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

/* LOGO */
.brand-logo {
  width: 70%;
  height: auto;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.5));
}


/* ANIMACIÓN SUAVE */
@keyframes float {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-12px); }
  100% { transform: translateY(0); }
}

/* BOTÓN */
.btn-outline-light {
  border-width: 2px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 40px;
  transition: all 0.3s ease;
}

.btn-outline-light:hover {
  background-color: #ffffff;
  color: #000000;
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.35);
}
