/* ── Golazo con Messi ─────────────────────────────────────── */
:root {
  --celeste: #75aadb;
  --celeste-bright: #8fc4f5;
  --celeste-deep: #4a8cc7;
  --navy: #0a1628;
  --navy-2: #0f2038;
  --navy-3: #16304f;
  --gold: #ffc93c;
  --gold-deep: #e6a817;
  --white: #f5f9ff;
  --muted: #9db4cc;
  --green: #1d7a4a;
  --red: #ff5a6a;
  --radius: 18px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  --font-display: "Archivo Black", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.container { max-width: 1120px; margin: 0 auto; padding: 0 20px; }

h1, h2 { font-family: var(--font-display); line-height: 1.12; letter-spacing: -0.5px; }
h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); text-align: center; }
.section-sub { text-align: center; color: var(--muted); margin: 12px auto 0; max-width: 560px; }

/* ── Botones ── */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 800;
  font-family: var(--font-body);
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s;
  background: var(--celeste);
  color: var(--navy);
}
.btn:hover { transform: translateY(-2px); filter: brightness(1.06); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: #201400;
  box-shadow: 0 10px 30px rgba(255, 201, 60, 0.35);
}
.btn-big { padding: 18px 36px; font-size: 1.12rem; }
.btn-small { padding: 10px 20px; font-size: 0.9rem; }
.btn-block { width: 100%; text-align: center; }
.btn:disabled { opacity: 0.6; cursor: wait; transform: none; }

/* ── Anuncio + header ── */
.announce {
  background: linear-gradient(90deg, var(--celeste-deep), var(--celeste), var(--celeste-deep));
  color: var(--navy);
  text-align: center;
  font-size: 0.9rem;
  padding: 8px 16px;
  font-weight: 600;
}
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 22, 40, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(117, 170, 219, 0.15);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; padding-bottom: 14px; }
.logo { font-family: var(--font-display); font-size: 1.15rem; }
.logo span { color: var(--gold); font-size: 0.8em; margin: 0 2px; }

/* ── Hero ── */
.hero { position: relative; padding: 72px 0 90px; overflow: hidden; }
.hero-glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 45% at 75% 20%, rgba(117, 170, 219, 0.22), transparent),
    radial-gradient(ellipse 45% 35% at 15% 85%, rgba(255, 201, 60, 0.1), transparent);
  pointer-events: none;
}
.hero-inner { position: relative; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: center; }
.hero-badge {
  display: inline-block;
  background: rgba(117, 170, 219, 0.14);
  border: 1px solid rgba(117, 170, 219, 0.35);
  color: var(--celeste-bright);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.hero h1 { font-size: clamp(2.1rem, 5.2vw, 3.6rem); }
.hero h1 .messi {
  color: var(--celeste-bright);
  text-shadow: 0 0 34px rgba(117, 170, 219, 0.55);
}
.hero h1 .golazo {
  color: var(--gold);
  text-shadow: 0 0 34px rgba(255, 201, 60, 0.45);
}
.hero-sub { margin-top: 20px; font-size: 1.08rem; color: var(--muted); max-width: 540px; }
.hero-sub strong { color: var(--white); }
.hero-cta { display: flex; align-items: center; gap: 24px; margin-top: 30px; flex-wrap: wrap; }
.hero-price { display: flex; flex-direction: column; line-height: 1.25; }
.price-old { color: var(--muted); text-decoration: line-through; font-size: 0.95rem; }
.price-now { font-family: var(--font-display); font-size: 1.6rem; color: var(--gold); }
.price-note { font-size: 0.8rem; color: var(--muted); }
.trust { list-style: none; display: flex; gap: 22px; margin-top: 30px; flex-wrap: wrap; font-size: 0.88rem; color: var(--muted); }

/* ── Foto Messi + mock teléfono ── */
.hero-phone { position: relative; display: flex; justify-content: center; align-items: center; min-height: 480px; }
.messi-card {
  position: relative;
  width: 300px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(117, 170, 219, 0.4);
  box-shadow: 0 0 60px rgba(117, 170, 219, 0.25), var(--shadow);
  transform: rotate(-3deg) translateX(-40px);
}
.messi-card img { width: 100%; height: 400px; object-fit: cover; object-position: top; }
.messi-card-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: linear-gradient(transparent, rgba(5, 10, 20, 0.92) 45%);
  padding: 38px 16px 14px;
  font-weight: 800;
  font-size: 0.92rem;
  text-align: center;
}
.hero-phone .phone {
  position: absolute;
  right: 4%;
  bottom: -6%;
  z-index: 2;
}
.phone {
  width: 205px;
  border-radius: 42px;
  padding: 12px;
  background: linear-gradient(160deg, #1c2f4a, #0c1930);
  border: 1px solid rgba(117, 170, 219, 0.3);
  box-shadow: var(--shadow);
  transform: rotate(3deg);
}
.phone-screen { border-radius: 32px; overflow: hidden; background: #000; position: relative; }
.scene { position: relative; height: 310px; overflow: hidden; }
.scene-sky { position: absolute; inset: 0 0 55% 0; background: linear-gradient(#050c18, #0d2038); }
.scene-stands {
  position: absolute; left: 0; right: 0; top: 26%; height: 22%;
  background:
    repeating-linear-gradient(90deg, rgba(117,170,219,.65) 0 6px, rgba(245,249,255,.7) 6px 12px);
  filter: blur(3px);
  opacity: 0.5;
}
.scene-field {
  position: absolute; left: 0; right: 0; bottom: 0; height: 55%;
  background: linear-gradient(#2e7d46, #1d5c32);
}
.field-line {
  position: absolute; left: 10%; right: 10%; top: 40%; height: 46%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-bottom: none;
  border-radius: 8px 8px 0 0;
}
.goal {
  position: absolute; left: 32%; right: 32%; top: 6%; height: 22%;
  border: 3px solid #fff;
  border-bottom: none;
  background: repeating-linear-gradient(45deg, rgba(255,255,255,.22) 0 2px, transparent 2px 7px);
}
.player {
  position: absolute;
  width: 34px; height: 34px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 800; font-size: 0.8rem;
  box-shadow: 0 4px 10px rgba(0,0,0,.4);
}
.p-messi {
  background: repeating-linear-gradient(90deg, var(--celeste) 0 6px, #fff 6px 12px);
  color: var(--navy);
  left: 18%; bottom: 18%;
  animation: messi-run 5s ease-in-out infinite;
}
.p-kid {
  background: repeating-linear-gradient(90deg, var(--celeste) 0 6px, #fff 6px 12px);
  font-size: 1.05rem;
  right: 22%; bottom: 30%;
  animation: kid-run 5s ease-in-out infinite;
}
.ball {
  position: absolute;
  width: 12px; height: 12px;
  background: radial-gradient(circle at 35% 35%, #fff, #cfd8e6);
  border-radius: 50%;
  left: 24%; bottom: 22%;
  animation: ball-play 5s ease-in-out infinite;
}
@keyframes messi-run {
  0%, 20% { left: 18%; bottom: 18%; }
  45%, 100% { left: 30%; bottom: 24%; }
}
@keyframes kid-run {
  0%, 35% { right: 22%; bottom: 30%; }
  60%, 100% { right: 30%; bottom: 52%; }
}
@keyframes ball-play {
  0%, 20% { left: 24%; bottom: 22%; }
  45% { left: 58%; bottom: 34%; }
  60% { left: 60%; bottom: 40%; }
  78%, 100% { left: 47%; bottom: 74%; }
}
.scene-caption {
  position: absolute; left: 10px; right: 10px; bottom: 12px;
  background: rgba(5, 10, 20, 0.82);
  border-left: 4px solid var(--gold);
  padding: 8px 10px;
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: 6px;
}
.confetti { position: absolute; inset: 0; pointer-events: none; }
.confetti::before, .confetti::after {
  content: "🎉";
  position: absolute;
  animation: conf 3.5s linear infinite;
  opacity: 0;
}
.confetti::before { left: 22%; animation-delay: 3.4s; }
.confetti::after { left: 68%; animation-delay: 3.9s; }
@keyframes conf {
  0% { top: -10%; opacity: 0; }
  10% { opacity: 1; }
  70% { opacity: 1; }
  100% { top: 90%; opacity: 0; }
}
.play-hint {
  position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  background: rgba(5, 10, 20, 0.7);
  border-radius: 999px;
  padding: 5px 14px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--celeste-bright);
  white-space: nowrap;
}
.floating-tag {
  position: absolute;
  background: var(--navy-3);
  border: 1px solid rgba(117, 170, 219, 0.35);
  border-radius: 12px;
  padding: 8px 14px;
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: var(--shadow);
  animation: float 4s ease-in-out infinite;
}
.tag-1 { top: 8%; left: -4%; }
.tag-2 { bottom: 10%; right: -6%; animation-delay: 2s; }
@keyframes float { 50% { transform: translateY(-8px); } }

/* ── Pasos ── */
.steps { padding: 84px 0; background: var(--navy-2); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 44px; }
.step {
  position: relative;
  background: var(--navy-3);
  border: 1px solid rgba(117, 170, 219, 0.18);
  border-radius: var(--radius);
  padding: 34px 26px 28px;
  text-align: center;
}
.step-num {
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
  width: 34px; height: 34px;
  background: var(--gold);
  color: #201400;
  font-weight: 800;
  border-radius: 50%;
  display: grid; place-items: center;
}
.step-icon { font-size: 2.4rem; margin-bottom: 10px; }
.step h3 { margin-bottom: 8px; font-size: 1.1rem; }
.step p { color: var(--muted); font-size: 0.94rem; }

/* ── Descripción de la escena ── */
.scene-desc { padding: 84px 0; }
.scene-desc-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
.scene-desc h2 { text-align: left; }
.scene-list { list-style: none; margin: 26px 0 30px; display: grid; gap: 14px; }
.scene-list li {
  background: rgba(117, 170, 219, 0.07);
  border: 1px solid rgba(117, 170, 219, 0.15);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 0.96rem;
}
.messi-photo-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(117, 170, 219, 0.35);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
}
.messi-photo-card img { width: 100%; height: 280px; object-fit: cover; object-position: 50% 20%; }
.messi-photo-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: linear-gradient(transparent, rgba(5, 10, 20, 0.92) 50%);
  padding: 34px 18px 12px;
  font-weight: 700;
  font-size: 0.9rem;
}
.quote-card {
  background: linear-gradient(160deg, var(--navy-3), var(--navy-2));
  border: 1px solid rgba(255, 201, 60, 0.25);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow);
  position: relative;
}
.quote-mark { font-family: var(--font-display); font-size: 4rem; color: var(--gold); line-height: 0.5; margin-bottom: 18px; }
.quote-card p { font-size: 1.05rem; font-style: italic; }
.quote-author { margin-top: 16px; color: var(--muted); font-weight: 600; }
.stars { color: var(--gold); letter-spacing: 3px; margin-top: 8px; }

/* ── Formulario ── */
.create { padding: 84px 0; background: linear-gradient(180deg, var(--navy-2), var(--navy)); }
.order-form { max-width: 720px; margin: 44px auto 0; display: grid; gap: 34px; }
.form-block { display: grid; gap: 12px; }
.form-label { font-weight: 800; font-size: 1.05rem; }
.req {
  background: rgba(255, 90, 106, 0.15);
  color: var(--red);
  font-size: 0.7rem;
  padding: 3px 9px;
  border-radius: 999px;
  vertical-align: middle;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.opt {
  background: rgba(117, 170, 219, 0.15);
  color: var(--celeste-bright);
  font-size: 0.7rem;
  padding: 3px 9px;
  border-radius: 999px;
  vertical-align: middle;
  font-weight: 700;
  text-transform: uppercase;
}
.dropzone {
  border: 2px dashed rgba(117, 170, 219, 0.45);
  border-radius: var(--radius);
  background: rgba(117, 170, 219, 0.05);
  min-height: 180px;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  text-align: center;
  padding: 22px;
}
.dropzone:hover, .dropzone.drag { border-color: var(--gold); background: rgba(255, 201, 60, 0.06); }
.dz-icon { font-size: 2.6rem; margin-bottom: 8px; }
.dz-empty span { color: var(--muted); font-size: 0.88rem; }
.dz-preview { display: grid; gap: 12px; justify-items: center; }
.dz-preview img {
  max-height: 220px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}
.dz-change {
  background: none;
  border: 1px solid rgba(117, 170, 219, 0.45);
  color: var(--celeste-bright);
  border-radius: 999px;
  padding: 7px 18px;
  cursor: pointer;
  font-weight: 600;
  font-family: var(--font-body);
}
.rivals { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.rival input { display: none; }
.flag { width: 40px; height: 30px; border-radius: 4px; box-shadow: 0 2px 6px rgba(0,0,0,.35); margin-bottom: 6px; }
.flag-inline { width: 20px; height: 15px; margin: 0 4px -2px 0; display: inline-block; vertical-align: baseline; }
.rival span {
  display: grid;
  gap: 2px;
  justify-items: center;
  text-align: center;
  background: var(--navy-3);
  border: 2px solid rgba(117, 170, 219, 0.18);
  border-radius: 14px;
  padding: 16px 8px 12px;
  cursor: pointer;
  font-size: 1.7rem;
  transition: border-color 0.15s, transform 0.15s, background 0.15s;
  height: 100%;
}
.rival span b { font-size: 0.86rem; }
.rival span i { font-size: 0.68rem; color: var(--muted); font-style: normal; }
.rival span:hover { transform: translateY(-2px); border-color: rgba(117, 170, 219, 0.5); }
.rival input:checked + span {
  border-color: var(--gold);
  background: rgba(255, 201, 60, 0.08);
  box-shadow: 0 0 0 3px rgba(255, 201, 60, 0.18);
}
.form-contact { grid-template-columns: 1fr 1fr; display: grid; gap: 18px; }
.form-contact input {
  width: 100%;
  background: var(--navy-3);
  border: 2px solid rgba(117, 170, 219, 0.22);
  border-radius: 12px;
  color: var(--white);
  padding: 14px 16px;
  font-size: 1rem;
  font-family: var(--font-body);
  margin-top: 10px;
}
.form-contact input:focus { outline: none; border-color: var(--celeste); }
.field-error { color: var(--red); font-size: 0.88rem; font-weight: 600; }
.checkout-box {
  background: linear-gradient(160deg, var(--navy-3), var(--navy-2));
  border: 1px solid rgba(255, 201, 60, 0.3);
  border-radius: var(--radius);
  padding: 30px;
  display: grid;
  gap: 16px;
  box-shadow: var(--shadow);
}
.value-stack {
  background: rgba(10, 22, 40, 0.55);
  border: 1px solid rgba(117, 170, 219, 0.2);
  border-radius: 14px;
  padding: 20px 22px;
}
.stack-title { font-weight: 800; margin-bottom: 12px; }
.value-stack ul { list-style: none; display: grid; gap: 9px; }
.value-stack li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  font-size: 0.92rem;
  border-bottom: 1px dashed rgba(117, 170, 219, 0.18);
  padding-bottom: 9px;
}
.value-stack li b { color: var(--muted); white-space: nowrap; font-weight: 600; }
.value-stack li .stack-free { color: var(--gold); font-weight: 800; }
.stack-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
  font-size: 0.95rem;
}
.stack-total s { color: var(--muted); }
.stack-off {
  background: rgba(255, 201, 60, 0.15);
  color: var(--gold);
  font-weight: 800;
  border-radius: 999px;
  padding: 4px 14px;
  font-size: 0.85rem;
}
.guarantee {
  display: flex;
  gap: 18px;
  align-items: center;
  background: rgba(29, 122, 74, 0.12);
  border: 1px solid rgba(29, 122, 74, 0.45);
  border-radius: var(--radius);
  padding: 22px 26px;
}
.guarantee-icon { font-size: 2.4rem; }
.guarantee b { font-size: 1.05rem; }
.guarantee p { color: var(--muted); font-size: 0.92rem; margin-top: 4px; }
.checkout-price { display: flex; align-items: baseline; justify-content: space-between; flex-wrap: wrap; gap: 6px; }
.checkout-price .price-now { font-size: 2rem; margin-left: 10px; }
.checkout-note { font-size: 0.82rem; color: var(--muted); text-align: center; }

/* ── Testimonios ── */
.testimonials { padding: 84px 0; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 44px; }
.testi {
  background: var(--navy-2);
  border: 1px solid rgba(117, 170, 219, 0.15);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: grid;
  gap: 14px;
  align-content: start;
}
.testi p { font-size: 0.95rem; color: #d7e4f2; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-author .avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--celeste);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.35);
}
.testi-author b { display: block; font-size: 0.92rem; }
.testi-author span { color: var(--muted); font-size: 0.8rem; }

/* ── FAQ ── */
.faq { padding: 84px 0; background: var(--navy-2); }
.faq details {
  max-width: 720px;
  margin: 0 auto 12px;
  background: var(--navy-3);
  border: 1px solid rgba(117, 170, 219, 0.15);
  border-radius: 14px;
  padding: 18px 22px;
}
.faq details:first-of-type { margin-top: 40px; }
.faq summary { font-weight: 700; cursor: pointer; list-style: none; position: relative; padding-right: 28px; }
.faq summary::after { content: "+"; position: absolute; right: 0; top: 0; color: var(--gold); font-weight: 800; font-size: 1.2rem; }
.faq details[open] summary::after { content: "−"; }
.faq details p { margin-top: 12px; color: var(--muted); font-size: 0.95rem; }

/* ── CTA final ── */
.final-cta {
  padding: 100px 0;
  text-align: center;
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(117, 170, 219, 0.18), transparent),
    var(--navy);
}
.final-cta h2 { margin-bottom: 30px; }
.final-note { margin-top: 18px; color: var(--muted); font-size: 0.9rem; }

/* ── Footer ── */
.footer { padding: 48px 0 120px; border-top: 1px solid rgba(117, 170, 219, 0.12); text-align: center; }
.footer p { color: var(--muted); font-size: 0.88rem; margin-top: 12px; max-width: 640px; margin-left: auto; margin-right: auto; }
.footer .legal { font-size: 0.75rem; opacity: 0.75; }

/* ── Sticky CTA mobile ── */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 201, 60, 0.3);
  padding: 12px 18px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.sticky-cta b { font-family: var(--font-display); color: var(--gold); font-size: 1.1rem; display: block; }
.sticky-cta span { font-size: 0.72rem; color: var(--muted); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero-inner, .scene-desc-inner { grid-template-columns: 1fr; }
  .hero { padding: 48px 0 64px; }
  .hero-phone { margin-top: 24px; }
  .steps-grid, .testi-grid { grid-template-columns: 1fr; }
  .rivals { grid-template-columns: repeat(2, 1fr); }
  .form-contact { grid-template-columns: 1fr; }
  .sticky-cta { display: flex; }
  .tag-1 { left: 2%; }
  .tag-2 { right: 2%; }
  .messi-card { transform: rotate(-3deg); width: 260px; margin-right: 90px; }
  .hero-phone { min-height: 440px; }
  .hero-phone .phone { right: 0; width: 175px; }
  .value-stack li { flex-direction: column; gap: 2px; }
  .guarantee { flex-direction: column; text-align: center; }
}
