:root{
  --bg: #ffffff;
  --ink: #0b0b0b;
  --muted: #4b4b4b;
  --card: #f6f6f6;
  --alt: #f1f1f1;
  --outline: #0b0b0b;
  --primary: #ffd400;
  --accent: #00e5a8;
  --danger: #ff4d4d;

  --shadow: 6px 6px 0 #000000;
  --shadow-sm: 3px 3px 0 #000000;

  --radius: 16px;
  --radius-sm: 12px;

  --container: 1120px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color: var(--ink);
  background: var(--bg);
}

a{ color: inherit; text-decoration: none; }
img{ max-width: 100%; display:block; }

.container{
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.topbar{
  position: sticky;
  top:0;
  z-index: 10;
  background: #fff;
  border-bottom: 3px solid var(--outline);
}

.topbar__inner{
  height: 72px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 16px;
}

.brand{
  display:flex;
  align-items:center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: -0.02em;
}
.brand__mark{
  display:inline-grid;
  place-items:center;
  width: 34px;
  height: 34px;
  border: 3px solid var(--outline);
  background: #fff;
  box-shadow: var(--shadow-sm);
  font-size: 18px;
  overflow: hidden;
}

.brand__logo{
  width: 26px;
  height: 26px;
  object-fit: contain;
  display: block;
}

.brand__name{
  font-size: 18px;
}

.topbar__nav{
  display:flex;
  align-items:center;
  gap: 18px;
  font-weight: 800;
}

.navlink{
  padding: 10px 12px;
  border-radius: 12px;
  border: 2px solid transparent;
}
.navlink:hover{
  border-color: var(--outline);
  background: var(--alt);
}

.navlink--cta{
  background: var(--primary);
  border: 2px solid var(--outline);
  box-shadow: var(--shadow-sm);
}

.hamburger{
  display:none;
  border: 2px solid var(--outline);
  background: #fff;
  border-radius: 12px;
  width: 44px;
  height: 44px;
  font-weight: 900;
  box-shadow: var(--shadow-sm);
}

.mobilemenu{
  border-top: 3px solid var(--outline);
  background: #fff;
}

.mobilemenu__inner{
  padding: 14px 0 18px;
  display:flex;
  flex-direction: column;
  gap: 10px;
}

main{ padding-bottom: 44px; }

/* HERO */
.hero{
  padding: 30px 0 20px;
}
.hero__grid{
  display:grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 22px;
  align-items: start;
}

.hero__left{
  padding: 18px 0;
}

.pill{
  display:inline-block;
  padding: 10px 14px;
  border: 2px solid var(--outline);
  background: #fff;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.title{
  margin: 16px 0 10px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.02;
  font-weight: 950;
  letter-spacing: -0.03em;
}
.title__stroke{
  position: relative;
  display:inline-block;
  -webkit-text-stroke: 3px var(--outline);
  color: transparent;
}

.lead{
  margin: 0 0 18px;
  font-size: 18px;
  max-width: 56ch;
  color: #222;
  font-weight: 650;
}

.hero__cta{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.hero__price{
  margin-top: 18px;
}

.pricecard{
  background: var(--card);
  border: 3px solid var(--outline);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px 16px 14px;
  width: fit-content;
}

.pricecard__top{
  display:flex;
  align-items:center;
  gap: 10px;
  margin-bottom: 10px;
}
.pricecard__label{
  font-weight: 950;
  padding: 6px 10px;
  border: 2px solid var(--outline);
  border-radius: 999px;
  background: #fff;
}
.pricecard__badge{
  font-weight: 900;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--accent);
  border: 2px solid var(--outline);
}

.pricecard__amount{
  display:flex;
  align-items: baseline;
  gap: 6px;
  font-weight: 950;
}
.pricecard__currency{
  font-size: 18px;
  font-weight: 950;
}
.pricecard__value{
  font-size: 44px;
  letter-spacing: -0.04em;
}
.pricecard__sub{
  margin-top: 6px;
  font-weight: 900;
  color: #111;
}

.trustline{
  margin-top: 18px;
  display:flex;
  flex-direction: column;
  gap: 10px;
}
.trustline__item{
  display:flex;
  align-items:center;
  gap: 10px;
  font-weight: 850;
}
.check{
  width: 28px;
  height: 28px;
  border-radius: 10px;
  border: 2px solid var(--outline);
  background: var(--primary);
  display:grid;
  place-items:center;
  box-shadow: var(--shadow-sm);
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 950;
  border: 3px solid var(--outline);
  box-shadow: var(--shadow-sm);
  background: #fff;
  cursor:pointer;
}
.btn--primary{
  background: var(--primary);
}
.btn--ghost{
  background: #fff;
}
.btn--full{
  width: 100%;
}
.btn:hover{
  transform: translate(-1px, -1px);
  box-shadow: 7px 7px 0 #000;
}

/* Preview card */
.hero__right{
  padding-top: 18px;
}
.preview{
  border: 3px solid var(--outline);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  overflow:hidden;
}
.preview__bar{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 12px 14px;
  border-bottom: 3px solid var(--outline);
  background: var(--alt);
}
.dot{
  width: 12px;
  height: 12px;
  border-radius: 4px;
  border: 2px solid var(--outline);
}
.dot--r{ background: var(--danger); }
.dot--y{ background: var(--primary); }
.dot--g{ background: var(--accent); }
.preview__title{
  font-weight: 950;
  margin-left: 4px;
}
.preview__content{
  padding: 14px;
}
.preview__kicker{
  display:inline-block;
  font-weight: 950;
  padding: 8px 10px;
  border: 2px solid var(--outline);
  border-radius: 999px;
  background: #fff;
  margin-bottom: 8px;
}
.preview__h2{
  margin:0 0 10px;
  font-weight: 950;
  letter-spacing: -0.02em;
}
.preview__list{
  padding-left: 18px;
  margin: 0 0 14px;
  color: #111;
  font-weight: 750;
}
.preview__box{
  border: 2px solid var(--outline);
  background: #fff;
  border-radius: 14px;
  padding: 12px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 12px;
}
.preview__boxTitle{
  font-weight: 950;
  margin-bottom: 8px;
}
.preview__boxAmount{
  font-weight: 950;
  font-size: 18px;
}
.muted{ color: var(--muted); }
.small{ font-size: 13px; font-weight: 700; }
.preview__boxHint{
  margin-top: 8px;
  font-weight: 900;
  color: #111;
}

/* SECTIONS */
.section{
  padding: 46px 0;
}
.section--alt{
  background: var(--alt);
  border-top: 3px solid var(--outline);
  border-bottom: 3px solid var(--outline);
}
.sectionTitle{
  font-weight: 950;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  font-size: clamp(24px, 3vw, 34px);
}

.cards{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.card{
  background:#fff;
  border: 3px solid var(--outline);
  border-radius: var(--radius-sm);
  padding: 14px;
  box-shadow: var(--shadow-sm);
  min-height: 170px;
}
.card__icon{
  font-size: 28px;
  font-weight: 950;
  width: 44px;
  height: 44px;
  border: 2px solid var(--outline);
  border-radius: 14px;
  display:grid;
  place-items:center;
  background: var(--primary);
  box-shadow: 3px 3px 0 #000;
}
.card__title{
  margin: 12px 0 8px;
  font-weight: 950;
  letter-spacing: -0.02em;
}
.card__text{
  margin:0;
  font-weight: 740;
  color: #111;
  line-height: 1.35;
}

.callout{
  margin-top: 18px;
  border: 3px solid var(--outline);
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 14px;
  display:flex;
  gap: 14px;
  align-items:flex-start;
}
.callout__tag{
  flex:0 0 auto;
  border: 2px solid var(--outline);
  border-radius: 999px;
  background: var(--primary);
  padding: 8px 12px;
  font-weight: 950;
  box-shadow: var(--shadow-sm);
}
.callout__text{
  margin: 0;
  font-weight: 780;
  line-height: 1.35;
}

/* Steps */
.steps{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.step{
  background:#fff;
  border: 3px solid var(--outline);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  padding: 16px;
  min-height: 180px;
}
.step__num{
  width: 44px;
  height: 44px;
  border: 3px solid var(--outline);
  border-radius: 16px;
  background: var(--accent);
  box-shadow: 3px 3px 0 #000;
  display:grid;
  place-items:center;
  font-weight: 950;
  margin-bottom: 10px;
}
.step__title{
  margin: 0 0 8px;
  font-weight: 950;
}
.step__text{
  margin:0;
  font-weight: 760;
  color:#111;
  line-height: 1.35;
}

/* Offer + form */
.offerHeader{
  display:flex;
  align-items:flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}
.offerHeader__price{
  flex:0 0 auto;
}
.stamp{
  border: 3px solid var(--outline);
  background: #fff;
  box-shadow: var(--shadow);
  padding: 14px 16px;
  border-radius: var(--radius);
  min-width: 170px;
}
.stamp__top{
  font-weight: 900;
  color: #111;
}
.stamp__mid{
  margin-top: 8px;
  font-size: 44px;
  letter-spacing: -0.04em;
  font-weight: 950;
}
.stamp__bottom{
  font-weight: 900;
  margin-top: 6px;
  color: #111;
}

.grid2{
  display:grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 16px;
  align-items:start;
}

.panel{
  border: 3px solid var(--outline);
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px;
}

.panel__title{
  margin: 0 0 8px;
  font-weight: 980;
  letter-spacing: -0.02em;
  font-size: 24px;
}
.panel__sub{
  margin: 0 0 14px;
  font-weight: 760;
  line-height: 1.35;
}

.form{
  display:flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 6px;
}
.field{
  display:flex;
  flex-direction: column;
  gap: 8px;
  font-weight: 850;
}
.field__label{
  font-size: 14px;
  color:#111;
}
input, textarea{
  width: 100%;
  border: 2.5px solid var(--outline);
  border-radius: 14px;
  padding: 12px 12px;
  font-size: 15px;
  background: #fff;
  font-weight: 700;
  outline: none;
}
textarea{ resize: vertical; min-height: 110px; }
input:focus, textarea:focus{
  border-color: #000;
  box-shadow: 0 0 0 4px rgba(255,212,0,0.55);
}

.form__note{
  font-size: 13px;
  font-weight: 750;
  color: var(--muted);
  margin-top: -2px;
}

.aside__box{
  border: 3px solid var(--outline);
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 14px;
  margin-bottom: 14px;
}
.aside__box--outline{
  background: #fff;
}
.aside__title{
  font-weight: 980;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.aside__list{
  margin:0;
  padding-left: 18px;
  font-weight: 770;
  line-height: 1.4;
}
.aside__text{
  margin:0 0 12px;
  font-weight: 760;
  line-height: 1.35;
}

/* FAQ */
.faq{
  display:flex;
  flex-direction: column;
  gap: 12px;
}
.faq__item{
  border: 3px solid var(--outline);
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 8px 12px;
}
.faq__item summary{
  cursor:pointer;
  font-weight: 950;
  padding: 8px 0;
  outline:none;
}
.faq__item p{
  margin: 0 0 10px;
  font-weight: 760;
  color:#111;
  line-height: 1.35;
}

.ctaBand{
  margin-top: 18px;
  border: 3px solid var(--outline);
  background: var(--primary);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 14px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
}
.ctaBand__title{
  font-weight: 980;
  letter-spacing: -0.02em;
  font-size: 20px;
}
.ctaBand__sub{
  font-weight: 800;
  margin-top: 4px;
}

/* Footer */
.footer{
  border-top: 3px solid var(--outline);
  padding: 26px 0;
  background:#fff;
}
.footer__inner{
  display:flex;
  align-items:flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__muted{
  font-weight: 780;
  color: var(--muted);
  margin-top: 8px;
}
.brand--sm .brand__mark{
  width: 30px;
  height: 30px;
  border-radius: 12px;
}
.footer__cta{
  background: var(--primary);
}
.footer__links{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  font-weight: 900;
}
.footer__links a{
  padding: 10px 12px;
  border: 2px solid var(--outline);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.footer__small{
  font-weight: 800;
  color: var(--muted);
  margin-top: 10px;
}

/* Reveal suave (animaciones al hacer scroll) */
:root{
  --revealDur: 750ms;
  --revealDelay: 80ms;
  --revealEasing: cubic-bezier(.2,.8,.2,1);
}

.js-reveal{
  opacity: 0;
  transform: translateY(22px) scale(0.99);
  filter: blur(6px);
  transition:
    opacity var(--revealDur) var(--revealEasing),
    transform var(--revealDur) var(--revealEasing),
    filter var(--revealDur) var(--revealEasing);
  will-change: opacity, transform, filter;
}

.js-reveal.is-visible{
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* Dots sutiles en el preview (para “wow” sin exagerar) */
.preview .dot{
  animation: dotPulse 1.6s infinite ease-in-out;
}

.preview .dot--y{ animation-delay: 0ms; }
.preview .dot--r{ animation-delay: 220ms; }
.preview .dot--g{ animation-delay: 440ms; }

@keyframes dotPulse{
  0%{ transform: translateY(0); filter: brightness(1); }
  50%{ transform: translateY(-3px); filter: brightness(1.15); }
  100%{ transform: translateY(0); filter: brightness(1); }
}

/* Respeta accesibilidad */
@media (prefers-reduced-motion: reduce){
  .js-reveal{
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
  .preview .dot{ animation: none !important; }
}

/* Responsive */
@media (max-width: 980px){
  .hero__grid{ grid-template-columns: 1fr; }
  .cards{ grid-template-columns: 1fr 1fr; }
  .steps{ grid-template-columns: 1fr 1fr; }
  .grid2{ grid-template-columns: 1fr; }
  .offerHeader{ flex-direction: column; }
  .ctaBand{ flex-direction: column; align-items:flex-start; }
}
@media (max-width: 720px){
  .topbar__nav{ display:none; }
  .hamburger{ display:inline-flex; align-items:center; justify-content:center; }
  .cards{ grid-template-columns: 1fr; }
  .steps{ grid-template-columns: 1fr; }
}

/* Animaciones pro (wow al entrar) */
@keyframes riseIn {
  0% { opacity: 0; transform: translateY(18px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes popIn {
  0% { opacity: 0; transform: scale(0.98) translateY(10px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes gentleShake {
  0% { transform: translate(0,0) rotate(0deg); }
  30% { transform: translate(1px,-1px) rotate(-0.8deg); }
  60% { transform: translate(-1px,1px) rotate(0.8deg); }
  100% { transform: translate(0,0) rotate(0deg); }
}

@keyframes pulseOutline {
  0% { box-shadow: 3px 3px 0 #000000; transform: translate(-1px, -1px); }
  50% { box-shadow: 7px 7px 0 #000000; transform: translate(-2px, -2px); }
  100% { box-shadow: 3px 3px 0 #000000; transform: translate(-1px, -1px); }
}

.hero__left{
  animation: riseIn 900ms cubic-bezier(.2,.9,.2,1) both;
}
.hero__right{
  animation: riseIn 1000ms cubic-bezier(.2,.9,.2,1) both;
  animation-delay: 120ms;
}

.pill{
  animation: popIn 700ms cubic-bezier(.2,.9,.2,1) both;
  animation-delay: 80ms;
}

.pricecard{
  animation: popIn 700ms cubic-bezier(.2,.9,.2,1) both;
  animation-delay: 180ms;
}

.cards .card{
  animation: popIn 600ms cubic-bezier(.2,.9,.2,1) both;
}
.cards .card:nth-child(1){ animation-delay: 140ms; }
.cards .card:nth-child(2){ animation-delay: 220ms; }
.cards .card:nth-child(3){ animation-delay: 300ms; }
.cards .card:nth-child(4){ animation-delay: 380ms; }

.steps .step{
  animation: popIn 650ms cubic-bezier(.2,.9,.2,1) both;
}
.steps .step:nth-child(1){ animation-delay: 120ms; }
.steps .step:nth-child(2){ animation-delay: 220ms; }
.steps .step:nth-child(3){ animation-delay: 320ms; }
.steps .step:nth-child(4){ animation-delay: 420ms; }

.faq__item{
  animation: popIn 650ms cubic-bezier(.2,.9,.2,1) both;
}

.faq__item:nth-child(1){ animation-delay: 120ms; }
.faq__item:nth-child(2){ animation-delay: 220ms; }
.faq__item:nth-child(3){ animation-delay: 320ms; }
.faq__item:nth-child(4){ animation-delay: 420ms; }

.ctaBand{
  animation: riseIn 850ms cubic-bezier(.2,.9,.2,1) both;
  animation-delay: 160ms;
}

.btn--primary{
  /* micro “wow” inicial suave */
  animation: gentleShake 2.4s ease-in-out 1 both;
}

.btn:hover{
  animation: none;
}

.card:hover, .step:hover, .faq__item:hover{
  transform: translate(-1px, -1px);
  box-shadow: 7px 7px 0 #000000;
  transition: transform 120ms ease, box-shadow 120ms ease;
}

.btn--primary.btn--full{
  animation: pulseOutline 2.8s ease-in-out infinite;
}

/* Accesibilidad: reducir movimiento */
@media (prefers-reduced-motion: reduce){
  .hero__left, .hero__right, .pill, .pricecard, .cards .card, .steps .step, .faq__item, .ctaBand{
    animation: none !important;
  }
  .btn--primary.btn--full{
    animation: none !important;
  }
}
