:root{
  --pink:#ef238d;
  --pink-dark:#db1378;
  --pink-soft:#fff0f7;
  --blue:#14aeea;
  --cream:#fff8ef;
  --cream-2:#fffdf8;
  --brown:#4b3733;
  --muted:#765e58;
  --ink:#332e39;
  --line:rgba(239,35,141,.14);
  --shadow:0 24px 60px rgba(151,63,96,.14);
  --shadow-strong:0 28px 80px rgba(151,63,96,.22);
  --radius-xl:34px;
  --radius-lg:26px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"Nunito",system-ui,sans-serif;
  color:var(--brown);
  background:#fffaf4;
  overflow-x:hidden;
}
img{display:block;max-width:100%}
a{text-decoration:none;color:inherit}
button,a{-webkit-tap-highlight-color:transparent}
.lucide{width:18px;height:18px;stroke-width:2.8}

.site-header{
  position:absolute;
  inset:0 0 auto;
  z-index:20;
  padding:22px clamp(18px,5vw,64px) 0;
}
.nav{
  width:min(1180px,100%);
  margin:0 auto;
  display:flex;
  align-items:center;
  min-height:78px;
  gap:28px;
}
.brand img{width:120px}
.nav-links{
  flex:1;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:clamp(18px,3vw,42px);
  font-weight:1000;
  color:#3f302e;
}
.nav-links a{
  position:relative;
  padding:10px 0;
}
.nav-links a::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:2px;
  height:3px;
  border-radius:99px;
  background:var(--pink);
  transform:scaleX(0);
  transition:.22s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after{transform:scaleX(1)}
.nav-links a.active{color:var(--pink)}
.nav-button,.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:52px;
  padding:0 24px;
  border-radius:99px;
  font-weight:1000;
  white-space:nowrap;
}
.nav-button{
  background:var(--pink);
  color:#fff;
  box-shadow:0 16px 35px rgba(239,35,141,.26);
}
.menu-toggle{
  display:none;
  width:46px;
  height:46px;
  border:0;
  border-radius:16px;
  background:#fff;
  box-shadow:var(--shadow);
}
.menu-toggle span{
  width:21px;
  height:2px;
  display:block;
  margin:5px auto;
  border-radius:99px;
  background:var(--pink);
}

.hero{
  position:relative;
  min-height:870px;
  padding:138px clamp(18px,5vw,64px) 240px;
  overflow:hidden;
  background:#fff4ed;
}
.hero-bg{
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(90deg,rgba(255,249,241,.98) 0%,rgba(255,249,241,.92) 22%,rgba(255,249,241,.5) 43%,rgba(255,249,241,.05) 62%),
    url("../img/hero-bg-mochis.png");
  background-size:cover;
  background-position:center right;
  background-repeat:no-repeat;
}
.hero-content{
  position:relative;
  z-index:2;
  width:min(1180px,100%);
  margin:0 auto;
}
.hero-copy{
  width:min(470px,100%);
  padding-top:52px;
}
.kicker{
  margin:0 0 14px;
  color:var(--pink);
  text-transform:uppercase;
  letter-spacing:.09em;
  font-size:.82rem;
  font-weight:1000;
}
.hero h1{
  margin:0;
  font-family:"Fredoka","Nunito",sans-serif;
  color:var(--pink);
  font-size:clamp(4.35rem,7.4vw,6.5rem);
  line-height:.93;
  letter-spacing:-.055em;
}
.hero-text{
  margin:26px 0 24px;
  color:var(--muted);
  font-size:1.08rem;
  line-height:1.62;
  font-weight:850;
}
.hero-features{
  display:grid;
  gap:15px;
  margin-bottom:26px;
}
.feature{
  display:flex;
  align-items:center;
  gap:14px;
}
.feature span{
  width:46px;
  height:46px;
  border-radius:999px;
  display:grid;
  place-items:center;
  background:#fff;
  color:var(--pink);
  box-shadow:inset 0 0 0 2px rgba(239,35,141,.16),0 12px 25px rgba(151,63,96,.1);
}
.feature span.blue{
  color:var(--blue);
  box-shadow:inset 0 0 0 2px rgba(20,174,234,.2),0 12px 25px rgba(151,63,96,.1);
}
.feature strong{
  font-size:.96rem;
  color:#4b3935;
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:14px;
  margin-bottom:38px;
}
.btn.primary{
  background:var(--pink);
  color:#fff;
  box-shadow:0 18px 35px rgba(239,35,141,.26);
}
.btn.outline{
  background:#fff;
  color:var(--pink);
  box-shadow:inset 0 0 0 2px rgba(239,35,141,.38);
}
.hero-wave{
  position:absolute;
  left:0;
  right:0;
  bottom:-1px;
  height:132px;
  z-index:3;
  background:
    radial-gradient(56px 56px at 54px 108px,transparent 97%,#fffaf4 100%) 0 -54px/116px 108px repeat-x,
    linear-gradient(#fffaf4,#fffaf4);
}

.flavors{
  position:relative;
  padding:96px clamp(18px,5vw,64px) 86px;
  background:
    radial-gradient(circle at 4% 28%,rgba(255,170,205,.35),transparent 18rem),
    radial-gradient(circle at 100% 52%,rgba(255,202,221,.48),transparent 20rem),
    #fffaf4;
}
.flavors::before,
.flavors::after{
  content:"";
  position:absolute;
  pointer-events:none;
  opacity:.65;
}
.flavors::before{
  left:2%;
  top:145px;
  width:180px;
  height:220px;
  background:
    radial-gradient(circle at 24px 24px,#ffc5dc 0 9px,transparent 10px),
    radial-gradient(circle at 56px 72px,#ffd8e7 0 12px,transparent 13px),
    radial-gradient(circle at 120px 150px,#ffbdd7 0 8px,transparent 9px);
  filter:blur(.1px);
}
.flavors::after{
  right:2%;
  bottom:220px;
  width:190px;
  height:250px;
  background:
    radial-gradient(circle at 38px 40px,#ffd4e3 0 10px,transparent 11px),
    radial-gradient(circle at 90px 130px,#ffc2dc 0 8px,transparent 9px),
    radial-gradient(circle at 150px 210px,#ffdae8 0 13px,transparent 14px);
}
.section-title{
  position:relative;
  z-index:2;
  text-align:center;
  max-width:690px;
  margin:0 auto 40px;
}
.section-title h2,
.about-card h2{
  margin:0;
  font-family:"Fredoka","Nunito",sans-serif;
  color:var(--ink);
  font-size:clamp(2.35rem,4vw,3.8rem);
  line-height:1;
  letter-spacing:-.045em;
}
.section-title p:not(.kicker){
  margin:16px auto 0;
  max-width:620px;
  color:var(--muted);
  font-weight:800;
  line-height:1.55;
}
.flavor-grid{
  position:relative;
  z-index:2;
  width:min(1080px,100%);
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:22px;
}
.flavor-card{
  min-height:438px;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  border-radius:26px;
  background:#fff;
  border:1px solid rgba(239,35,141,.1);
  box-shadow:0 16px 36px rgba(151,63,96,.1);
  transition:transform .25s ease,box-shadow .25s ease;
}
.flavor-card:hover{
  transform:translateY(-7px);
  box-shadow:0 26px 54px rgba(151,63,96,.15);
}
.flavor-image{
  min-height:225px;
  display:grid;
  place-items:center;
  padding:18px;
  background:
    radial-gradient(circle at 50% 52%,rgba(255,255,255,.85),transparent 62%),
    var(--card-bg);
}
.flavor-image img{
  width:100%;
  border-radius:20px;
  filter:drop-shadow(0 14px 18px rgba(83,48,53,.14));
}
.flavor-info{
  padding:19px 22px 23px;
  display:flex;
  flex-direction:column;
  flex:1;
  align-items:flex-start;
}
.flavor-info h3{
  margin:0 0 8px;
  font-family:"Fredoka","Nunito",sans-serif;
  font-size:1.42rem;
  line-height:1;
  color:var(--flavor);
}
.flavor-info p{
  margin:0;
  color:#4b3935;
  font-weight:850;
  line-height:1.42;
}
.flavor-info span{
  margin-top:auto;
  display:inline-flex;
  align-items:center;
  gap:8px;
  border-radius:99px;
  padding:10px 13px;
  background:var(--pill);
  color:var(--flavor);
  font-size:.84rem;
  font-weight:1000;
}
.flavor-info span .lucide{width:16px;height:16px}
.fresa{--card-bg:#ffe4f1;--flavor:#ef238d;--pill:#ffe0ef}
.cafe{--card-bg:#f8e5d7;--flavor:#925b39;--pill:#f8e8dc}
.mango{--card-bg:#fff0bb;--flavor:#ee9f00;--pill:#fff1c8}
.pina{--card-bg:#fff2c9;--flavor:#d99a00;--pill:#fff0bc}
.guayaba{--card-bg:#ffe3eb;--flavor:#e85b7d;--pill:#ffe8ef}
.anis{--card-bg:#eee2ff;--flavor:#8f62c0;--pill:#f2e9ff}
.chocomenta{--card-bg:#dff8ea;--flavor:#2a9a71;--pill:#e5faef}
.especiales{--card-bg:#e7f3ff;--flavor:#b047b8;--pill:#f5eaff}


.boxes{
  position:relative;
  padding:76px clamp(18px,5vw,64px) 86px;
  background:
    radial-gradient(circle at 10% 20%,rgba(255,180,210,.34),transparent 18rem),
    radial-gradient(circle at 92% 42%,rgba(255,210,228,.46),transparent 19rem),
    #fffaf4;
  overflow:hidden;
}
.boxes::before,
.boxes::after{
  content:"";
  position:absolute;
  pointer-events:none;
  opacity:.58;
}
.boxes::before{
  left:-34px;
  top:140px;
  width:220px;
  height:280px;
  background:
    radial-gradient(circle at 55px 50px,#ffc4dc 0 12px,transparent 13px),
    radial-gradient(circle at 110px 140px,#ffdbec 0 10px,transparent 11px),
    radial-gradient(circle at 160px 230px,#ffd0e5 0 14px,transparent 15px);
}
.boxes::after{
  right:-24px;
  bottom:110px;
  width:230px;
  height:270px;
  background:
    radial-gradient(circle at 40px 55px,#ffd7e7 0 13px,transparent 14px),
    radial-gradient(circle at 116px 136px,#ffc0d9 0 9px,transparent 10px),
    radial-gradient(circle at 175px 220px,#ffe0ed 0 13px,transparent 14px);
}
.boxes-shell{
  position:relative;
  z-index:2;
  width:min(1160px,100%);
  margin:0 auto;
}
.box-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:22px;
}
.box-card{
  overflow:hidden;
  display:flex;
  flex-direction:column;
  min-height:560px;
  border-radius:30px;
  border:1px solid rgba(239,35,141,.12);
  background:rgba(255,255,255,.82);
  box-shadow:0 18px 42px rgba(151,63,96,.12);
  transition:transform .25s ease,box-shadow .25s ease;
}
.box-card:hover{
  transform:translateY(-7px);
  box-shadow:0 28px 60px rgba(151,63,96,.17);
}
.box-card.featured{
  background:linear-gradient(180deg,#fff,#fff0f7);
  box-shadow:0 26px 68px rgba(239,35,141,.18);
}
.box-card figure{
  margin:0;
  min-height:260px;
  padding:14px;
  display:grid;
  place-items:center;
  background:linear-gradient(180deg,#ffe9f2,#fff8ef);
}
.box-card figure img{
  width:100%;
  height:250px;
  object-fit:cover;
  border-radius:24px;
  box-shadow:0 18px 32px rgba(145,73,94,.16);
}
.box-copy{
  padding:24px;
  display:flex;
  flex-direction:column;
  flex:1;
}
.box-size{
  display:inline-flex;
  width:max-content;
  align-items:center;
  border-radius:999px;
  padding:9px 13px;
  background:#ffe3f0;
  color:var(--pink);
  font-size:.84rem;
  font-weight:1000;
}
.box-copy h3{
  margin:14px 0 10px;
  font-family:"Fredoka","Nunito",sans-serif;
  color:var(--ink);
  font-size:1.65rem;
  line-height:1;
  letter-spacing:-.02em;
}
.box-copy p{
  margin:0;
  color:var(--muted);
  font-weight:850;
  line-height:1.52;
}
.box-copy ul{
  list-style:none;
  padding:0;
  margin:18px 0 0;
  display:grid;
  gap:10px;
}
.box-copy li{
  display:flex;
  align-items:center;
  gap:10px;
  color:#4b3935;
  font-weight:1000;
}
.box-copy li .lucide{
  width:18px;
  height:18px;
  color:var(--pink);
}
.custom-box-panel{
  margin:24px auto 0;
  display:grid;
  grid-template-columns:1fr auto;
  align-items:center;
  gap:24px;
  padding:30px;
  border-radius:30px;
  background:linear-gradient(135deg,#fff,#ffeaf4 72%,#e9f8ff);
  border:1px solid rgba(239,35,141,.12);
  box-shadow:0 18px 42px rgba(151,63,96,.11);
}
.custom-box-panel h3{
  margin:0 0 10px;
  font-family:"Fredoka","Nunito",sans-serif;
  color:var(--ink);
  font-size:clamp(1.8rem,3vw,2.6rem);
  line-height:1;
  letter-spacing:-.035em;
}
.custom-box-panel p:not(.kicker){
  margin:0;
  color:var(--muted);
  font-weight:850;
  line-height:1.58;
}

.steps,.about,.faq{
  padding:76px clamp(18px,5vw,64px);
  background:#fffaf4;
}
.step-grid,.faq-grid{
  width:min(1060px,100%);
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:20px;
}
.step,.faq-item,.about-card{
  border-radius:28px;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:0 16px 36px rgba(151,63,96,.1);
}
.step,.faq-item{padding:28px}
.step span{
  color:var(--pink);
  font-weight:1000;
  letter-spacing:.08em;
}
.step h3,.faq-item h3{
  margin:10px 0 8px;
  font-family:"Fredoka","Nunito",sans-serif;
  font-size:1.35rem;
}
.step p,.faq-item p,.about-card p{
  margin:0;
  color:var(--muted);
  font-weight:800;
  line-height:1.58;
}
.about-card{
  width:min(1060px,100%);
  margin:0 auto;
  padding:clamp(28px,5vw,54px);
  display:grid;
  grid-template-columns:1fr 180px;
  align-items:center;
  gap:34px;
  background:linear-gradient(135deg,#fff,#fff1f7);
}
.about-card p:not(.kicker){margin-top:16px;font-size:1.05rem}
.about-card img{
  width:170px;
  justify-self:center;
  filter:drop-shadow(0 16px 24px rgba(20,174,234,.18));
}

.cta{
  padding:42px clamp(18px,5vw,64px) 0;
  background:#fffaf4;
}
.cta-card{
  width:min(1160px,100%);
  min-height:260px;
  margin:0 auto;
  position:relative;
  overflow:hidden;
  border-radius:34px 34px 0 0;
  background:
    radial-gradient(circle at 14% 32%,rgba(255,255,255,.18),transparent 15rem),
    linear-gradient(135deg,#ff65ae,#ef238d 52%,#d91578);
  color:#fff;
  display:grid;
  grid-template-columns:320px 1fr 170px;
  align-items:center;
  gap:22px;
  padding:26px 34px;
  box-shadow:var(--shadow-strong);
}
.cta-mochis{
  width:320px;
  border-radius:24px;
  filter:drop-shadow(0 18px 22px rgba(115,24,66,.22));
}
.cta-text h2{
  margin:0;
  font-family:"Fredoka","Nunito",sans-serif;
  font-size:clamp(2.4rem,4.7vw,4.2rem);
  line-height:.94;
  letter-spacing:-.04em;
}
.cta-text p{
  margin:10px 0 18px;
  font-weight:900;
}
.cta-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  align-items:center;
}
.cta-actions a{
  min-height:44px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  padding:0 18px;
  border-radius:99px;
  background:#fff;
  color:#4b3733;
  font-weight:1000;
}
.cta-actions .blue-btn{
  background:var(--blue);
  color:#fff;
}
.cta-seal{
  width:150px;
  justify-self:center;
  filter:drop-shadow(0 12px 18px rgba(12,117,188,.2));
}
.footer{
  width:min(1160px,calc(100% - 36px));
  margin:0 auto 36px;
  padding:18px 38px;
  border-radius:0 0 34px 34px;
  background:#e8177f;
  color:#fff;
  display:grid;
  grid-template-columns:1fr auto 1fr;
  gap:18px;
  align-items:center;
  font-weight:1000;
}
.footer div{
  display:flex;
  gap:8px;
  align-items:center;
}
.footer div:last-child{justify-content:flex-end}
.footer .lucide{width:17px;height:17px}

.reveal{
  opacity:0;
  transform:translateY(18px);
  transition:opacity .6s ease,transform .6s ease;
}
.reveal.is-visible{
  opacity:1;
  transform:translateY(0);
}


@media (max-width:1080px){
  .box-grid{grid-template-columns:1fr;max-width:720px;margin:0 auto}
  .box-card{min-height:auto}
  .box-card figure img{height:auto;max-height:360px}
  .custom-box-panel{grid-template-columns:1fr;text-align:center;justify-items:center}
}
@media (max-width:1080px){
  .hero{
    min-height:auto;
    padding-bottom:590px;
  }
  .hero-bg{
    background-image:
      linear-gradient(180deg,rgba(255,249,241,.98) 0%,rgba(255,249,241,.94) 45%,rgba(255,249,241,.18) 72%),
      url("../img/hero-bg-mochis.png");
    background-size:auto 520px;
    background-position:center bottom;
  }
  .hero-copy{
    margin:0 auto;
    text-align:center;
    padding-top:42px;
  }
  .hero-features{
    max-width:520px;
    margin-left:auto;
    margin-right:auto;
    text-align:left;
  }
  .hero-actions{justify-content:center}
  .flavor-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .cta-card{grid-template-columns:250px 1fr}
  .cta-seal{
    position:absolute;
    right:28px;
    top:24px;
    width:112px;
  }
}
@media (max-width:820px){
  .site-header{padding:14px 16px 0}
  .nav{min-height:62px;justify-content:space-between}
  .brand img{width:96px}
  .menu-toggle{display:block}
  .nav-button{display:none}
  .nav-links{
    position:fixed;
    left:16px;
    right:16px;
    top:82px;
    display:grid;
    justify-content:stretch;
    gap:0;
    padding:16px;
    border-radius:22px;
    background:rgba(255,255,255,.97);
    box-shadow:var(--shadow);
    opacity:0;
    transform:translateY(-10px);
    pointer-events:none;
    transition:.22s ease;
  }
  .nav-links.open{
    opacity:1;
    transform:translateY(0);
    pointer-events:auto;
  }
  .nav-links a{padding:13px}
  .hero{
    padding-top:104px;
    padding-bottom:470px;
  }
  .hero-bg{
    background-size:auto 390px;
  }
  .hero h1{font-size:clamp(3.35rem,15vw,5rem)}
  .hero-text{font-size:1rem}
  .flavor-grid,.step-grid,.faq-grid{grid-template-columns:1fr}
  .flavor-card{min-height:auto}
  .about-card{grid-template-columns:1fr;text-align:center}
  .cta-card{
    grid-template-columns:1fr;
    text-align:center;
    padding:28px 20px;
  }
  .cta-mochis{display:none}
  .cta-seal{position:static;order:-1;margin:0 auto;width:112px}
  .cta-actions{justify-content:center}
  .footer{
    grid-template-columns:1fr;
    text-align:center;
    border-radius:0 0 28px 28px;
  }
  .footer div,.footer div:last-child{justify-content:center}
}
@media (max-width:520px){
  .hero{padding-left:16px;padding-right:16px;padding-bottom:405px}
  .hero-bg{background-size:auto 330px}
  .hero-actions .btn{width:100%}
  .feature{align-items:flex-start}
  .flavors,.steps,.about,.faq{padding-left:16px;padding-right:16px}
  .section-title h2,.about-card h2{font-size:2.45rem}
  .cta-actions a{width:100%}
}

@media (max-width:820px){
  .boxes{padding:64px 16px 74px}
  .box-copy{padding:22px}
  .custom-box-panel{padding:24px 20px}
}
@media (max-width:520px){
  .hero-actions{margin-bottom:58px}
  .box-card figure{min-height:210px;padding:10px}
  .box-card figure img{border-radius:20px}
}

/* ==========================================================
   AJUSTE TABLET / MÓVIL
   Mantiene el diseño base, corrige hero y grillas en tabletas.
   ========================================================== */

/* Por defecto, el plato extra NO aparece en escritorio ni tablet horizontal */
.mobile-hero-plate {
  display: none !important;
}

/* Tablet horizontal / pantallas medianas */
@media (min-width: 821px) and (max-width: 1180px) {
  .site-header {
    padding: 18px 28px 0;
  }

  .nav {
    min-height: 70px;
    gap: 20px;
  }

  .brand img {
    width: 106px;
  }

  .nav-links {
    gap: 24px;
    font-size: .92rem;
  }

  .nav-button {
    min-height: 48px;
    padding: 0 20px;
  }

  .hero {
    min-height: 760px;
    padding: 125px 32px 165px;
  }

  .hero-bg {
    background-image:
      linear-gradient(90deg, rgba(255,249,241,.98) 0%, rgba(255,249,241,.90) 28%, rgba(255,249,241,.42) 50%, rgba(255,249,241,.03) 70%),
      url("../img/hero-bg-mochis.png");
    background-size: auto 100%;
    background-position: center right;
    background-repeat: no-repeat;
  }

  .hero-copy {
    width: min(430px, 46vw);
    margin: 0;
    text-align: left;
    padding-top: 54px;
  }

  .hero h1 {
    font-size: clamp(4rem, 7.2vw, 5.35rem);
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-features {
    max-width: 430px;
    margin-left: 0;
    margin-right: 0;
    text-align: left;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .hero-wave {
    height: 122px;
  }

  .flavors {
    padding-top: 92px;
  }

  .flavor-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 780px;
  }

  .box-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 100%;
  }

  .box-card {
    min-height: 520px;
  }

  .box-card figure {
    min-height: 220px;
  }

  .box-card figure img {
    height: 220px;
    max-height: none;
  }

  .box-copy {
    padding: 20px;
  }

  .box-copy h3 {
    font-size: 1.45rem;
  }

  .step-grid,
  .faq-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cta-card {
    grid-template-columns: 240px 1fr 118px;
    padding: 24px;
  }

  .cta-mochis {
    width: 240px;
  }

  .cta-seal {
    position: static;
    width: 108px;
  }
}

/* Tablet vertical */
@media (min-width: 768px) and (max-width: 820px) {
  .hero {
    padding: 104px 28px 105px;
    min-height: auto;
  }

  .hero-bg {
    background-image:
      radial-gradient(circle at 50% 12%, rgba(255,255,255,.92), transparent 18rem),
      linear-gradient(180deg, #fff9f1 0%, #ffe8f1 100%);
    background-size: cover;
    background-position: center;
  }

  .mobile-hero-plate {
    display: block !important;
    position: relative;
    z-index: 4;
    width: min(72vw, 520px);
    margin: 92px auto 24px;
    border-radius: 26px;
    filter: drop-shadow(0 18px 26px rgba(151, 63, 96, .18));
    pointer-events: none;
  }

  .hero-content {
    position: relative;
    z-index: 5;
  }

  .hero-copy {
    width: min(620px, 100%);
    margin: 0 auto;
    text-align: center;
    padding-top: 0;
  }

  .hero h1 {
    font-size: clamp(4.2rem, 12vw, 5.7rem);
  }

  .hero-features {
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }

  .hero-actions {
    justify-content: center;
    margin-bottom: 38px;
  }

  .hero-wave {
    height: 104px;
  }

  .flavors {
    padding-top: 86px;
  }

  .flavor-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .flavor-card {
    min-height: 420px;
  }

  .step-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .box-grid {
    grid-template-columns: 1fr;
    max-width: 640px;
    margin: 0 auto;
  }

  .box-card figure img {
    height: auto;
    max-height: 380px;
  }
}

/* Móvil real */
@media (max-width: 767px) {
  .hero {
    padding: 104px 16px 105px;
    min-height: auto;
  }

  .hero-bg {
    background-image:
      radial-gradient(circle at 50% 12%, rgba(255,255,255,.92), transparent 17rem),
      linear-gradient(180deg, #fff9f1 0%, #ffe8f1 100%);
    background-size: cover;
    background-position: center;
  }

  .mobile-hero-plate {
    display: block !important;
    position: relative;
    z-index: 4;
    width: min(94vw, 390px);
    margin: 78px auto 18px;
    border-radius: 24px;
    filter: drop-shadow(0 18px 26px rgba(151, 63, 96, .18));
    pointer-events: none;
  }

  .hero-content {
    position: relative;
    z-index: 5;
  }

  .hero-copy {
    padding-top: 0;
    text-align: center;
    margin: 0 auto;
  }

  .hero-actions {
    margin-bottom: 44px;
  }

  .flavors {
    padding-top: 78px;
  }
}

@media (max-width: 520px) {
  .mobile-hero-plate {
    width: min(94vw, 360px);
    margin: 70px auto 14px;
  }

  .hero {
    padding-bottom: 112px;
  }
}
