/* =========================
   FONDOS Y CONTENEDOR (B2B LUXURY)
========================= */
.gp-hero-section {
  width: 100%;
  background-color: #ffffff;
  background-image: none;
  padding: 48px 0 72px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, system-ui, sans-serif;
  overflow: hidden; 
}
.gp-hero-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =========================
   TEXTOS Y TIPOGRAFÍA
========================= */
.gp-hero-subtitle {
  text-align: center;
  margin-bottom: 44px;
}
.gp-hero-subtitle-main {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  color: #0a0a0a; 
  line-height: 1.15;
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}
.gp-hero-subtitle-main em {
  font-style: normal;
  color: inherit; 
}

.gp-hero-subtitle-secondary {
  display: block;
  font-size: 1.1rem;
  color: #404040;
  line-height: 1.6;
  font-weight: 400;
  max-width: 720px;
  margin: 0 auto;
}

/* EFECTO: ANIMATED SHINY TEXT */
.gp-hero-subtitle-secondary strong {
  display: inline-block;
  font-weight: 700;
  background: linear-gradient(90deg, #111111 0%, #D4AF37 40%, #F5D76E 50%, #D4AF37 60%, #111111 100%);
  background-size: 200% auto;
  color: #111;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shiny-text-effect 3s ease-in-out infinite alternate !important;
  -webkit-animation: shiny-text-effect 3s ease-in-out infinite alternate !important;
}

@keyframes shiny-text-effect {
  0% { background-position: 0% 0; }
  100% { background-position: 100% 0; }
}

/* =========================
   VIDEO — TODAS LAS PANTALLAS
========================= */
.gp-hero-video-wrap {
  display: block;
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden !important;
  background: transparent;
  box-shadow: none;
  border: none;
  border-radius: 24px !important;
  -webkit-border-radius: 24px !important;
}
.gp-hero-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.gp-hero-img.force-visible { visibility: visible !important; opacity: 1 !important; }
.gp-hero-video {
  position: relative;
  width: 100%; height: auto;
  object-fit: contain;
  display: block;
  z-index: 2;
  border-radius: 24px !important;
  -webkit-border-radius: 24px !important;
}

/* =========================
   CTAs — PASTILLA FLOTANTE SOBRIA
   Inspirado en controles de Apple TV / Linear
========================= */
.gp-hero-cta {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-radius: 100px;
  padding: 5px 6px;
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
  border: 1px solid rgba(255,255,255,0.5);
}

.gp-btn {
  padding: 7px 18px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  font-family: inherit;
  letter-spacing: 0;
  transition: all 0.2s ease;
  border: none;
  line-height: 1.4;
}

.gp-btn-primary {
  background: #0a0a0a; 
  color: #fff;
}
.gp-btn-primary:hover { 
  background: #222;
}

.gp-cta-divider {
  width: 1px;
  height: 14px;
  background: rgba(0,0,0,0.10);
  margin: 0 2px;
  flex-shrink: 0;
}

.gp-btn-secondary {
  background: transparent;
  color: #444;
}
.gp-btn-secondary:hover {
  color: #0a0a0a;
  background: rgba(0,0,0,0.05);
}

/* =========================
   RESPONSIVE DESIGN
========================= */
@media (max-width: 1023px) {
  .gp-hero-subtitle-main { font-size: 1.9rem; }
  .gp-hero-subtitle-secondary { font-size: 1.05rem; }
}
@media (max-width: 767px) {
  .gp-hero-section { 
    padding: 36px 0 0; 
    background-color: #ffffff; 
  }
  .gp-hero-container { padding: 0 12px; } 
  .gp-hero-subtitle { margin-bottom: 28px; }
  .gp-hero-subtitle-main { font-size: 1.7rem; letter-spacing: -0.02em; margin-bottom: 8px; }
  .gp-hero-subtitle-secondary { font-size: 0.95rem; padding: 0; max-width: 100%; width: 100%; }
  
  .gp-hero-video-wrap { 
    border-radius: 20px;
  }

  .gp-hero-cta { 
    position: static; 
    transform: none;
    background: #f5f5f5;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-radius: 100px;
    padding: 5px 6px;
    margin: 20px auto 0;
    max-width: 320px;
    box-shadow: none;
    border: 1px solid #ebebeb;
    justify-content: center;
  }
  .gp-btn { font-size: 0.76rem; padding: 7px 14px; }
}
@media (max-width: 390px) {
  .gp-hero-subtitle-main { font-size: 1.5rem; }
  .gp-btn { padding: 6px 12px; font-size: 0.72rem; }
}