/* style.css - Sistema de Diseño High-Ticket para Alicia Zamora */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@600;800&family=Outfit:wght@300;400;600;800&display=swap');

:root {
  --bg-dark: #0a0a0a;
  --bg-card: #1c1c1e;
  --text-main: #f8f8f2;
  --text-muted: #a1a1aa;
  --gold-primary: #FFD60A; /* Amarillo Fuerte Llamativo */
  --gold-hover: #E0BC00;
  --accent-red: #ef4444;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1 {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  background: linear-gradient(to right, #fff, #a1a1aa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.highlight-gold {
  background: linear-gradient(to right, #FFD60A, #FFE873);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2 {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-bottom: 40px;
}

h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--gold-primary);
}

/* Sections */
section {
  padding: 80px 0;
}

/* Header / Logo */
.logo-header {
  padding: 15px 0 5px 0;
  text-align: center;
  margin-bottom: 0px;
}

.logo-text {
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  display: inline-block;
  border: 1px inset rgba(255, 214, 10, 0.5);
  padding: 5px 15px;
  border-radius: 4px;
  background: linear-gradient(180deg, rgba(255,214,10,0.08) 0%, transparent 100%);
  box-shadow: 0 4px 20px rgba(255, 214, 10, 0.15);
  text-shadow: 0 2px 5px rgba(0,0,0,0.8);
}

.logo-text span {
  color: var(--gold-primary);
}

/* Hero Section */
.hero {
  text-align: center;
  padding-top: 5px;
  padding-bottom: 60px;
}

.video-container {
  max-width: 800px;
  margin: 0 auto 40px;
  border-radius: 12px;
  overflow: visible; /* Permitir que el resplandor salga */
  box-shadow: 0 0 80px rgba(212, 175, 55, 0.4), 0 0 150px rgba(212, 175, 55, 0.2);
  border: 1px solid rgba(212, 175, 55, 0.4);
  background-color: var(--bg-card);
  position: relative;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.video-placeholder {
  color: var(--text-muted);
  text-align: center;
}

.video-placeholder i {
  font-size: 4rem;
  color: var(--gold-primary);
  margin-bottom: 10px;
}

/* Buttons */
@keyframes bouncingBtn {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-8px); }
  60% { transform: translateY(-4px); }
}

.cta-button {
  display: inline-block;
  background-color: var(--gold-primary);
  color: #000;
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 20px 40px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(255, 214, 10, 0.3);
  letter-spacing: 1px;
  animation: bouncingBtn 2.5s infinite;
}

.cta-button:hover {
  background-color: var(--gold-hover);
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(255, 214, 10, 0.4);
  animation-play-state: paused;
}

/* Vertical Cards style (Reference: Growth Rockstar) */
.vertical-cards {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 800px;
  margin: 0 auto 40px;
}

.v-card {
  background-color: var(--bg-card);
  border-radius: 12px;
  padding: 30px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: transform 0.2s ease, border-color 0.2s;
}

.v-card:hover {
  transform: translateY(-2px);
  border-color: rgba(212, 175, 55, 0.3);
}

.v-card p {
  font-size: 1.1rem;
}

/* List Cards (For Qualifications) */
.list-card {
  background-color: transparent;
  border-left: 3px solid var(--gold-primary);
  padding: 15px 20px;
  background: linear-gradient(90deg, rgba(255, 214, 10, 0.05) 0%, transparent 100%);
  border-radius: 0 8px 8px 0;
  transition: transform 0.2s ease;
}

.list-card:hover {
  transform: translateX(5px);
}

.list-card p {
  font-size: 1.05rem;
  margin: 0;
}

.list-card.red-variant {
  border-left-color: var(--accent-red);
  background: linear-gradient(90deg, rgba(239, 68, 68, 0.05) 0%, transparent 100%);
}

.text-red {
  color: var(--accent-red);
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.text-gold {
  color: var(--gold-primary);
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.text-gold-subtle {
  color: #E2C753; /* Amarillo más pálido y suave */
  font-size: 1.3rem;
  margin-bottom: 10px;
}

/* Grid Layouts */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.value-prop {
  background-color: rgba(255,255,255,0.02);
  border: 1px solid rgba(255, 214, 10, 0.1);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(255, 214, 10, 0.04); /* Luz suave de fondo */
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.4s ease;
}

.value-prop:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(255, 214, 10, 0.5);
  box-shadow: 0 15px 40px rgba(255, 214, 10, 0.12); /* Luz más fuerte al pasar mouse */
}

.value-prop:active {
  transform: translateY(-2px) scale(0.98); /* Rebote al hacer click */
  box-shadow: 0 5px 15px rgba(255, 214, 10, 0.1);
  transition: transform 0.1s;
}

.value-prop h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Escasez */
.urgency-box {
  text-align: center;
  padding: 40px;
  border: 2px dashed var(--gold-primary);
  border-radius: 12px;
  margin-top: 40px;
}

.urgency-box p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.2rem; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .cta-button { width: 100%; text-align: center; }
  .card-section { padding: 40px 20px; }
}
