/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 13 2026 | 02:25:28 */
/* ========================================================
   ENCAPSULACIÓN Y VARIABLES (BLINDAJE DOM)
   ======================================================== */
.FORMQZ2026-12Dom {
  --qz-blue-dark: #0b4562; /* Tono azul oscuro del diseño */
  --qz-blue-overlay: rgba(11, 69, 98, 0.95);
  --qz-white: #ffffff;
  font-family: 'Montserrat', 'Arial', sans-serif; 
  position: relative;
  width: 100%;
}

.FORMQZ2026-12Dom * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ========================================================
   CONTENEDOR PRINCIPAL Y FONDO MULTIMEDIA
   ======================================================== */
.FORMQZ2026-12Dom .hero-section {
  position: relative;
  width: 100%;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--qz-blue-dark); 
}

.FORMQZ2026-12Dom .hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translateX(-50%) translateY(-50%);
  z-index: 0;
  object-fit: cover;
}

.FORMQZ2026-12Dom .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--qz-blue-overlay) 0%, rgba(11, 69, 98, 0.85) 35%, rgba(11, 69, 98, 0.2) 100%);
  z-index: 1;
}

/* ========================================================
   MAQUETACIÓN DE CONTENIDO (FLEX)
   ======================================================== */
.FORMQZ2026-12Dom .hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 2rem;
  min-height: 85vh;
}

.FORMQZ2026-12Dom .hero-image-wrapper {
  position: absolute;
  bottom: 0;
  left: 2%; 
  width: 45%;
  max-width: 500px;
  z-index: 3;
  display: flex;
  align-items: flex-end;
}

.FORMQZ2026-12Dom .hero-person {
  width: 100%;
  height: auto;
  display: block;
}

/* ========================================================
   TIPOGRAFÍA Y CTA
   ======================================================== */
.FORMQZ2026-12Dom .hero-text-wrapper {
  margin-left: 35%; 
  padding-left: 2rem;
  color: var(--qz-white);
  max-width: 650px;
  z-index: 4;
  position: relative;
}

.FORMQZ2026-12Dom .hero-title {
	color: white;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}

.FORMQZ2026-12Dom .hero-description {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

.FORMQZ2026-12Dom .hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1.8rem;
  border: 2px solid var(--qz-white);
  border-radius: 50px;
  color: var(--qz-white);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  background-color: transparent;
  position: relative;
}

.FORMQZ2026-12Dom .hero-cta:hover {
  background-color: var(--qz-white);
  color: var(--qz-blue-dark);
}

.FORMQZ2026-12Dom .hero-cta svg {
  transition: stroke 0.3s ease;
}

.FORMQZ2026-12Dom .hero-cta:hover svg {
  stroke: var(--qz-blue-dark);
}

/* Efecto de anillo expansivo para el CTA al hacer hover */
.FORMQZ2026-12Dom .hero-cta::before {
  content: '';
  position: absolute;
  top: -4px; left: -4px; right: -4px; bottom: -4px;
  border: 1px solid var(--qz-white);
  border-radius: 50px;
  opacity: 0;
  transform: scale(1);
  transition: all 0.4s ease;
  pointer-events: none;
}

.FORMQZ2026-12Dom .hero-cta:hover::before {
  opacity: 0.4;
  transform: scale(1.15);
}

/* ========================================================
   ANIMACIONES DE ENTRADA ELEGANTES
   ======================================================== */
.FORMQZ2026-12Dom .qz-animate {
  opacity: 0;
  will-change: opacity, transform;
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.FORMQZ2026-12Dom .qz-slide-right {
  transform: translateX(-50px);
}

.FORMQZ2026-12Dom .qz-fade-up {
  transform: translateY(30px);
}

.FORMQZ2026-12Dom .qz-zoom-in {
  transform: scale(0.85);
}

/* Estado Activo disparado por JS */
.FORMQZ2026-12Dom .qz-animate.is-visible {
  opacity: 1;
  transform: translate(0) scale(1);
}

/* ========================================================
   RESPONSIVE DESIGN (MÓVIL Y TABLET)
   ======================================================== */
@media (max-width: 1024px) {
  .FORMQZ2026-12Dom .hero-text-wrapper {
    margin-left: 40%;
  }
  .FORMQZ2026-12Dom .hero-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .FORMQZ2026-12Dom .hero-overlay {
    background: linear-gradient(180deg, var(--qz-blue-overlay) 0%, rgba(11, 69, 98, 0.8) 60%, rgba(11, 69, 98, 0.2) 100%);
  }
  
  .FORMQZ2026-12Dom .hero-content {
    flex-direction: column;
    justify-content: flex-start;
    padding: 6rem 1.5rem 0;
  }

  .FORMQZ2026-12Dom .hero-text-wrapper {
    margin-left: 0;
    padding-left: 0;
    text-align: center; 
    order: 1; 
  }

  .FORMQZ2026-12Dom .hero-image-wrapper {
    position: relative;
    width: 85%;
    margin: 2rem auto 0;
    order: 2;
  }

  .FORMQZ2026-12Dom .hero-title {
    font-size: 1.8rem;
  }
}