body {
  margin: 0;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  background: #ebedf4;   /* Fondo blanco suave */
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  color: #1a1a1a;
}


.video-landing {
  max-width: 900px;
  width: 90%;
  text-align: center;
  padding: 40px;
  border-radius: 20px;

  /* Fondo oscuro elegante */
  background: linear-gradient(135deg, #3939d2, #2a2a40);

  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}


.landing-heading {
  font-size: 25px;
  margin-bottom: 25px;
  text-align: center;       /* Centrado */
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.35); /* Sutil sombra */
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp 1.2s ease forwards;
}

/* Animación suave al cargar */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 15px;
  margin-bottom: 30px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 15px;
}

.buttons-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* ===== BOTONES ===== */

.cta-btn {
  padding: 15px 30px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.3s ease;
  cursor: pointer;
  min-width: 220px;
}

/* Locked */
.cta-btn.locked {
  pointer-events: none;
  opacity: 0.55;
  position: relative;
  animation: softPulse 1.6s infinite;
}

/* Flecha */
.cta-btn.locked::before {
  content: "▼";
  position: absolute;
  top: -21px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 20px;
  opacity: 0.6;
  animation: arrowFloat 1.2s infinite;
}

/* Botón 1 */
#button1 {
  background-color: #DF2E2E;
  color: #FFFFFF;
}

/* Botón 2 */
#button2 {
  background-color: #34E1D6;
  color: #FFFFFF;
}

/* Unlock */
.cta-btn.unlocking {
  opacity: 1;
  pointer-events: auto;
  animation: unlockFade 0.8s forwards;
}

.cta-btn.unlocking::before {
  display: none;
}

/* Animaciones */
@keyframes softPulse {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

@keyframes arrowFloat {
  0%,100% { transform: translateX(-50%) translateY(0); opacity: 0.3; }
  50% { transform: translateX(-50%) translateY(6px); opacity: 0.8; }
}

@keyframes unlockFade {
  from { opacity: 0.5; transform: scale(0.98); }
  to { opacity: 1; transform: scale(1); }
}

/* ===== Libro de Reclamaciones ===== */

.reclamo-container {
  text-align: center;
  margin: 30px 0;
}

.reclamo-btn {
  display: inline-block;
  background-color: #f9c74f;
  color: #1a1a1a;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: all 0.2s ease;
}

.reclamo-btn:hover {
  background-color: #8a8ede;
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 600px) {
  .landing-heading { font-size: 24px; }
  .cta-btn { font-size: 16px; min-width: 180px; padding: 12px 20px; }
}

@media (max-width: 480px) {
  .reclamo-btn {
    padding: 12px 22px;
    font-size: 14px;
  }
}

.titulo {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);
  margin-bottom: 20px;
}

/* Versión móvil */
@media (max-width: 768px) {
  .titulo {
    font-size: 2.2rem;
    letter-spacing: 0.5px;
  }
}
