/* ============================================================
   ¡ÑAM! — Sitio web · Stylesheet
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root{
  --red:#D83429;
  --red-dark:#A8231B;
  --red-soft:#FBEAE8;
  --ink:#1A1A1D;
  --gray:#757275;
  --soft:#F7F6F6;
  --line:#ECEAEA;
  --max:1180px;
  --font:'Poppins',system-ui,sans-serif;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0; font-family:var(--font); color:var(--ink); background:#fff;
  -webkit-font-smoothing:antialiased; text-rendering:optimizeLegibility;
}
img{ display:block; }
a{ color:inherit; text-decoration:none; }
.wrap{ max-width:var(--max); margin:0 auto; padding:0 32px; }

/* ---------- nav ---------- */
.nav{
  position:fixed; top:14px; left:50%; transform:translateX(-50%);
  width:min(var(--max), calc(100% - 32px));
  display:flex; align-items:center; gap:34px;
  padding:12px 22px; border-radius:999px; z-index:50;
  background:rgba(255,255,255,.86); backdrop-filter:blur(14px);
  border:1px solid rgba(0,0,0,.05);
  transition:box-shadow .3s ease;
}
.nav.scrolled{ box-shadow:0 14px 40px -18px rgba(26,26,29,.25); }
.nav .logo img{ height:30px; }
.nav .links{ display:flex; gap:26px; margin-left:auto; }
.nav .links a{ font-size:13.5px; font-weight:500; color:#3c3b3e; transition:color .2s; }
.nav .links a:hover{ color:var(--red); }
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  font-family:var(--font); font-weight:600; font-size:14px;
  padding:12px 24px; border-radius:999px; border:0; cursor:pointer;
  transition:transform .2s ease, box-shadow .2s ease, background .2s;
}
.btn.red{ background:var(--red); color:#fff; box-shadow:0 10px 24px -10px rgba(216,52,41,.55); }
.btn.red:hover{ background:var(--red-dark); transform:translateY(-2px); }
.btn.ghost{ background:transparent; color:var(--ink); border:1.5px solid var(--line); }
.btn.ghost:hover{ border-color:var(--ink); transform:translateY(-2px); }
.btn.white{ background:#fff; color:var(--red); }
.btn.white:hover{ transform:translateY(-2px); }
.nav .btn{ padding:10px 20px; font-size:13px; }

/* ---------- hero ---------- */
.hero{ position:relative; padding:150px 0 90px; overflow:hidden; }
.hero .wrap{ display:grid; grid-template-columns:1.05fr .95fr; gap:48px; align-items:center; }
.hero h1{
  font-size:clamp(40px, 5vw, 60px); font-weight:700; line-height:1.04;
  letter-spacing:-.025em; margin:18px 0 0;
}
.hero h1 .mark{ position:relative; display:inline-block; color:var(--red); }
.hero h1 img.wm-inline{ display:inline-block; height:1.18em; width:auto; vertical-align:-0.28em; margin-left:.06em; }
.kicker{
  display:inline-flex; align-items:center; gap:10px;
  font-size:11.5px; font-weight:600; letter-spacing:.22em; text-transform:uppercase; color:var(--red);
}
.kicker::before{ content:''; width:26px; height:2.5px; border-radius:3px; background:var(--red); }
.hero .lead{ font-size:17px; line-height:1.65; color:#4a494d; max-width:440px; margin:22px 0 0; }
.hero .cta-row{ display:flex; gap:14px; margin-top:32px; flex-wrap:wrap; }
.store{ display:flex; align-items:center; gap:11px; background:var(--ink); color:#fff; border-radius:14px; padding:10px 18px; transition:transform .2s; }
.store:hover{ transform:translateY(-2px); }
.store svg{ width:22px; height:22px; }
.store small{ display:block; font-size:8.5px; letter-spacing:.08em; text-transform:uppercase; opacity:.7; font-weight:500; }
.store b{ display:block; font-size:14px; font-weight:600; line-height:1.15; }
.hero .proof{ display:flex; gap:30px; margin-top:38px; }
.hero .proof div b{ display:block; font-size:24px; font-weight:700; color:var(--ink); letter-spacing:-.02em; }
.hero .proof div span{ font-size:11px; color:var(--gray); letter-spacing:.06em; }
.hero .blob{
  position:absolute; right:-180px; top:-160px; width:640px; height:640px; border-radius:50%;
  background:radial-gradient(circle at 35% 35%, var(--red-soft), transparent 70%); z-index:-1;
}

/* phone mockup */
.phone-col{ display:flex; justify-content:center; position:relative; }
.phone{
  width:300px; height:610px; border-radius:44px; background:#0c0c0e; padding:10px;
  box-shadow:0 40px 80px -30px rgba(26,26,29,.45);
  position:relative; z-index:1;
}
.phone .screen{ background:#fff; border-radius:36px; height:100%; overflow:hidden; display:flex; flex-direction:column; }
.p-top{ padding:18px 18px 0; }
.p-status{ display:flex; justify-content:space-between; font-size:10px; font-weight:600; color:var(--ink); }
.p-hello{ margin-top:16px; display:flex; align-items:center; justify-content:space-between; }
.p-hello b{ font-size:15px; font-weight:600; }
.p-hello b small{ display:block; font-size:9px; color:var(--gray); font-weight:500; letter-spacing:.04em; }
.p-hello .av{ width:32px; height:32px; border-radius:50%; background:var(--red); display:flex; align-items:center; justify-content:center; }
.p-hello .av img{ height:16px; }
.p-search{ margin-top:14px; display:flex; align-items:center; gap:8px; background:var(--soft); border-radius:12px; padding:10px 13px; font-size:11px; color:var(--gray); }
.p-search svg{ width:14px; height:14px; stroke:var(--gray); }
.p-chips{ display:flex; gap:7px; margin-top:14px; overflow:hidden; }
.p-chip{ flex:0 0 auto; font-size:9.5px; font-weight:600; padding:7px 13px; border-radius:999px; background:var(--soft); color:#4a494d; }
.p-chip.on{ background:var(--red); color:#fff; }
.p-body{ flex:1; padding:14px 18px 0; display:flex; flex-direction:column; gap:11px; overflow:hidden; }
.p-card{ border:1px solid var(--line); border-radius:16px; overflow:hidden; }
.p-img{ height:84px; position:relative; }
.p-img .tag{ position:absolute; left:9px; top:9px; background:#fff; border-radius:999px; font-size:8px; font-weight:700; padding:4px 9px; color:var(--ink); }
.p-meta{ padding:9px 12px; display:flex; justify-content:space-between; align-items:center; }
.p-meta b{ font-size:11.5px; font-weight:600; }
.p-meta b small{ display:block; font-size:8.5px; color:var(--gray); font-weight:500; margin-top:1px; }
.p-meta .min{ font-size:9px; font-weight:700; color:var(--red); background:var(--red-soft); padding:4px 8px; border-radius:999px; white-space:nowrap; }
.p-navbar{ display:flex; justify-content:space-around; padding:11px 0 16px; border-top:1px solid var(--line); }
.p-navbar svg{ width:19px; height:19px; stroke:#b9b7b9; }
.p-navbar svg.on{ stroke:var(--red); }
/* floating cards around phone */
.float{
  position:absolute; background:#fff; border-radius:16px; padding:12px 16px;
  box-shadow:0 18px 44px -16px rgba(26,26,29,.28); display:flex; align-items:center; gap:10px; z-index:2;
  border:1px solid rgba(0,0,0,.04);
}
.float .dot{ width:34px; height:34px; border-radius:50%; background:var(--red-soft); display:flex; align-items:center; justify-content:center; }
.float .dot svg{ width:16px; height:16px; stroke:var(--red); }
.float b{ font-size:11.5px; font-weight:600; display:block; }
.float span{ font-size:9.5px; color:var(--gray); display:block; }
.float.f1{ top:84px; left:-26px; animation:bob 5s ease-in-out infinite; }
.float.f2{ bottom:120px; right:-30px; animation:bob 6s ease-in-out infinite reverse; }
@keyframes bob{ 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(-10px); } }
@media (prefers-reduced-motion: reduce){ .float{ animation:none; } }

/* ---------- marquee ---------- */
.marquee{ border-block:1px solid var(--line); padding:18px 0; overflow:hidden; background:#fff; }
.marquee .track{ display:flex; gap:48px; width:max-content; animation:slide 30s linear infinite; }
.marquee span{ font-size:14px; font-weight:600; color:#9b999b; letter-spacing:.04em; white-space:nowrap; display:flex; align-items:center; gap:48px; }
.marquee span i{ color:var(--red); font-style:normal; }
@keyframes slide{ to{ transform:translateX(-50%); } }
@media (prefers-reduced-motion: reduce){ .marquee .track{ animation:none; } }

/* ---------- secciones ---------- */
section{ padding:96px 0; }
.sec-head{ max-width:560px; margin-bottom:54px; }
.sec-head h2{ font-size:clamp(30px,3.4vw,42px); font-weight:700; letter-spacing:-.02em; line-height:1.08; margin:14px 0 0; }
.sec-head p{ font-size:15px; line-height:1.65; color:#4a494d; margin:16px 0 0; }
.sec-head.center{ margin-inline:auto; text-align:center; }
.sec-head.center .kicker{ justify-content:center; }

/* pasos */
.steps{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.step{ position:relative; border:1px solid var(--line); border-radius:22px; padding:34px 28px 30px; transition:transform .25s ease, box-shadow .25s ease; background:#fff; }
.step:hover{ transform:translateY(-6px); box-shadow:0 24px 50px -24px rgba(26,26,29,.22); }
.step .n{ font-size:13px; font-weight:700; color:var(--red); letter-spacing:.06em; }
.step .ic{ width:58px; height:58px; border-radius:16px; background:var(--red-soft); display:flex; align-items:center; justify-content:center; margin:20px 0 18px; }
.step .ic svg{ width:26px; height:26px; stroke:var(--red); }
.step h3{ font-size:18px; font-weight:600; margin:0 0 8px; }
.step p{ font-size:13px; line-height:1.65; color:#5a595d; margin:0; }

/* antojos grid */
.bg-soft{ background:var(--soft); }
.crave{ display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.crave .tile{ position:relative; border-radius:20px; overflow:hidden; aspect-ratio:1/1.18; background:#fff; border:1px solid var(--line); }
.crave .tile image-slot{ position:absolute; inset:0; width:100%; height:100%; }
.crave .cap{
  position:absolute; left:12px; right:12px; bottom:12px; z-index:2;
  background:rgba(255,255,255,.92); backdrop-filter:blur(6px);
  border-radius:12px; padding:10px 14px; display:flex; justify-content:space-between; align-items:center;
  pointer-events:none;
}
.crave .cap b{ font-size:13px; font-weight:600; }
.crave .cap span{ font-size:10px; font-weight:700; color:var(--red); }

/* valores */
.vals{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.val{ border-radius:22px; padding:34px 30px; background:var(--soft); transition:background .25s; }
.val:hover{ background:var(--red-soft); }
.val svg{ width:30px; height:30px; stroke:var(--red); }
.val h3{ font-size:19px; font-weight:600; margin:18px 0 8px; }
.val h3 small{ display:block; font-size:10px; font-weight:600; letter-spacing:.2em; text-transform:uppercase; color:var(--gray); margin-top:4px; }
.val p{ font-size:13px; line-height:1.66; color:#5a595d; margin:0; }

/* banda descarga */
.dl{ padding:0; }
.dl .band{
  position:relative; border-radius:32px; background:var(--red); color:#fff; overflow:hidden;
  display:grid; grid-template-columns:1.2fr .8fr; align-items:center; gap:30px; padding:70px 64px;
}
.dl .band h2{ font-size:clamp(30px,3.6vw,44px); font-weight:700; letter-spacing:-.02em; line-height:1.06; margin:0; }
.dl .band p{ font-size:15px; opacity:.92; max-width:400px; line-height:1.6; margin:18px 0 0; }
.dl .cta-row{ display:flex; gap:14px; margin-top:30px; flex-wrap:wrap; }
.dl .store{ background:#fff; color:var(--ink); }
.dl .smile{ position:absolute; right:-60px; bottom:-110px; width:420px; opacity:.14; pointer-events:none; }
.dl .icon3d{ justify-self:center; width:240px; filter:drop-shadow(0 30px 50px rgba(0,0,0,.25)); border-radius:48px; }

/* aliados */
.ally{ display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.ally .card{
  border-radius:24px; padding:44px 40px; position:relative; overflow:hidden;
  display:flex; flex-direction:column; align-items:flex-start; gap:0; min-height:250px;
}
.ally .card.ink{ background:var(--ink); color:#fff; }
.ally .card.soft{ background:var(--soft); }
.ally .card h3{ font-size:24px; font-weight:700; letter-spacing:-.02em; margin:0 0 10px; }
.ally .card p{ font-size:13.5px; line-height:1.65; margin:0 0 26px; max-width:380px; }
.ally .card.ink p{ color:#c9c7c9; }
.ally .card.soft p{ color:#5a595d; }
.ally .card .btn{ margin-top:auto; }

/* footer */
footer{ border-top:1px solid var(--line); padding:54px 0 40px; }
footer .top{ display:flex; justify-content:space-between; align-items:flex-start; gap:40px; flex-wrap:wrap; }
footer .top img{ height:34px; }
footer .top .tag{ font-size:11px; letter-spacing:.26em; text-transform:uppercase; color:var(--gray); margin-top:14px; font-weight:500; }
footer .cols{ display:flex; gap:64px; }
footer .cols h4{ font-size:11px; font-weight:600; letter-spacing:.18em; text-transform:uppercase; color:var(--gray); margin:0 0 14px; }
footer .cols a, footer .cols span{ display:block; font-size:13px; color:#3c3b3e; margin-bottom:9px; }
footer .cols a:hover{ color:var(--red); }
footer .base{ display:flex; justify-content:space-between; align-items:center; margin-top:44px; padding-top:22px; border-top:1px solid var(--line); font-size:11.5px; color:var(--gray); flex-wrap:wrap; gap:10px; }

/* reveal */
.reveal{ opacity:0; transform:translateY(26px); transition:opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
.reveal.in{ opacity:1; transform:none; }
@media (prefers-reduced-motion: reduce){ .reveal{ opacity:1; transform:none; transition:none; } }

/* responsive */
@media (max-width: 900px){
  .hero .wrap{ grid-template-columns:1fr; }
  .phone-col{ margin-top:30px; }
  .steps, .vals, .crave, .ally{ grid-template-columns:1fr; }
  .crave{ grid-template-columns:1fr 1fr; }
  .dl .band{ grid-template-columns:1fr; padding:48px 32px; }
  .dl .icon3d{ display:none; }
  .nav .links{ display:none; }
  .float.f1{ left:0; } .float.f2{ right:0; }
}
