﻿.contentBannerSec {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: end;
    width: 100%;
    height: 85vh;
    overflow: hidden;
}

#video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

#video-background iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw; 
  min-height: 100vh;
  min-width: 177.77vh; 
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.contentSecBanner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.contenidoBannerTexto {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  align-items: center;
  width: 80%;
  height: 100%;
  opacity: 0;
  transform: translateY(-50px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.contenidoBannerTexto.show {
  opacity: 1;
  transform: translateY(0);
}

.contenidoBannerTexto p {
  color: white;
  text-align: left;
  font-size: 30px;
  margin-top: -30px;
}

.textoPequenoBanner {
  font-size: 20px !important;
  text-align: center !important;
  width: 60% !important;
}

.tituloBanner {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  height: 25%;
  margin-bottom: 20px;
}

.descripcionBanner {
  width: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 5%;
}

.tituloBanner h2 {
  font-size: 95px;
  font-weight: bold;
  margin-bottom: 0px;
  text-shadow: 0 0 15px rgba(140, 170, 255, 0.6), 0 0 25px rgba(180, 200, 255, 0.4), 2px 2px 6px rgba(0, 0, 0, 0.7);
}

.tituloBanner h1 {
  font-size: 135px;
  text-transform: uppercase;
  color: white;
  text-shadow: 0 0 15px rgba(140, 170, 255, 0.6), 0 0 25px rgba(180, 200, 255, 0.4), 2px 2px 6px rgba(0, 0, 0, 0.7);
  background: linear-gradient(#ffffff 30%, #7ea1ff 70%);
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 0 8px rgba(100, 130, 255, 0.5));
  font-weight: bold;
  margin-top: -30px;
}

.footerBanner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 5%;
}

.lineasFooterBanner{
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 60%;
  height: 5%;
}

.empty-box{
  width: 100%;
  height: 65%;
}

@media (min-height: 1200px) {
  .empty-box{
    height: 44%;
  }
  .footerBanner{
    height: 1%;
  }
}