/* ===== HERO ===== */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  background-color: #ffffff;
}

.hero-bg-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease-in-out;
  opacity: 0;
}

/* Contenedor de contenido */
.hero-content-container {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 20px;
  z-index: 7;
}

/* Título vertical */
.hero-title {
  font-family: "obviously", sans-serif;
  position: absolute;
  left: 5%;
  top: 230px;
  color: #1b667f;
  font-weight: 800;
  font-size: 17vh;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  display: block;
  line-height: 0.85;
  text-transform: uppercase;
  text-shadow: 0.13rem 0.13rem 0 #151515, -0.13rem 0.13rem 0 #151515,
    0.13rem -0.13rem 0 #151515, -0.13rem -0.13rem 0 #151515;
}

@media (max-width: 768px) {
  .hero-section {
    min-height: 400px;
  }

  .hero-content-container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .hero-title {
    writing-mode: horizontal-tb;
    transform: none;
    width: 100%;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 70px;
  }

  .hero-bg-video {
    height: auto;
    min-height: 100%;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 50px;
  }
}
