/* ============ TOKENS ============ */
:root{
  --navy: #17375E;
  --navy-ink: #0E2740;
  --orange: #FF6A2B;
  --paper: #F1F3F5;
  --white: #FFFFFF;
  --slate: #495057;
  --slate-soft: #8A94A0;
  --border: #E2E6EA;

  --font-display: 'Manrope', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 20px 45px -20px rgba(14,39,64,.35);
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--font-display);
  color:var(--navy-ink);
  background:var(--white);
  -webkit-font-smoothing:antialiased;
}
img{ max-width:100%; display:block; }
.wrap{ max-width:1120px; margin:0 auto; padding:0 24px; }

a{ color:inherit; }
h1,h2,h3{ margin:0; line-height:1.1; font-weight:800; letter-spacing:-.01em; }
p{ margin:0; }

.skip-link{
  position:absolute; left:-9999px; top:0; background:var(--orange); color:white;
  padding:10px 16px; z-index:200; border-radius:0 0 8px 0;
}
.skip-link:focus{ left:0; }

:focus-visible{ outline:3px solid var(--orange); outline-offset:2px; }

@media (prefers-reduced-motion: reduce){
  *{ animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; }
}

/* ============ BUTTONS ============ */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:12px 22px; border-radius:999px; font-weight:700; font-size:15px;
  text-decoration:none; border:2px solid transparent; cursor:pointer;
  transition:transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover{ transform:translateY(-1px); }
.btn-accent{ background:var(--orange); color:white; }
.btn-accent:hover{ background:#ff7c46; box-shadow:0 10px 24px -8px rgba(255,106,43,.55); }
.btn-ghost{ background:transparent; color:var(--navy); border-color:var(--navy); }
.btn-ghost:hover{ background:var(--navy); color:white; }
.btn-lg{ padding:15px 28px; font-size:16px; }
.btn-block{ width:100%; }

/* ============ NAV ============ */
.nav{
  position:sticky; top:0; z-index:100; background:rgba(255,255,255,.92);
  backdrop-filter:blur(8px); border-bottom:1px solid var(--border);
}
.nav-row{ display:flex; align-items:center; justify-content:space-between; height:72px; gap:20px; }
.brand{ display:flex; align-items:center; gap:10px; text-decoration:none; }
.brand-name{ font-weight:800; font-size:19px; color:var(--navy); }
.nav-links{ display:flex; gap:28px; font-weight:600; font-size:14.5px; color:var(--slate); }
.nav-links a{ text-decoration:none; }
.nav-links a:hover{ color:var(--navy); }
.nav-cta{ padding:10px 20px; font-size:14.5px; }

@media (max-width:760px){
  .nav-links{ display:none; }
}

/* ============ HERO ============ */
.hero{ padding:72px 0 56px; overflow:hidden; }
.hero-grid{
  display:grid; grid-template-columns:1.05fr .95fr; gap:56px; align-items:center;
}
.eyebrow{
  font-family:var(--font-mono); font-size:12.5px; letter-spacing:.08em; text-transform:uppercase;
  color:var(--orange); font-weight:700; margin:0 0 14px;
}
.eyebrow-light{ color:#FFA47A; }
.hero h1{ font-size:clamp(34px,5vw,52px); color:var(--navy-ink); }
.hero .hl{ color:var(--orange); }
.lede{ font-size:17px; line-height:1.6; color:var(--slate); margin-top:18px; max-width:46ch; }
.lede-light{ color:#C7D3DE; }
.hero-actions{ display:flex; flex-wrap:wrap; gap:14px; margin-top:30px; }
.hero-note{ margin-top:18px; font-size:13px; color:var(--slate-soft); }

/* ---- Receipt signature element ---- */
.hero-visual{ display:flex; justify-content:center; }
.receipt{
  width:280px; background:var(--white); border-radius:4px 4px 0 0;
  box-shadow:var(--shadow); padding:26px 22px 16px; position:relative;
  transform:rotate(-2deg);
}
.receipt-body{ font-family:var(--font-mono); font-size:13px; color:#1c2b3a; }
.r-line{
  opacity:0; transform:translateY(6px);
  animation:print .45s ease forwards;
  animation-delay:calc(var(--d) * .28s + .3s);
  margin:5px 0;
}
.r-center{ text-align:center; }
.r-bold{ font-weight:700; }
.r-small{ font-size:11px; color:var(--slate-soft); text-align:center; }
.r-row{ display:flex; justify-content:space-between; gap:10px; }
.r-rule{
  border-top:1px dashed #c7cdd3; margin:10px 0; height:0;
  opacity:0; animation:print .3s ease forwards; animation-delay:calc(var(--d) * .28s + .3s);
}
.r-stamp{
  margin-top:14px; text-align:center; font-family:var(--font-mono); font-weight:700;
  font-size:15px; letter-spacing:.05em; color:#1a9c62; border:3px solid #1a9c62;
  border-radius:6px; padding:6px 4px; transform:rotate(-4deg) scale(.9);
  opacity:0; animation:stampIn .4s ease forwards; animation-delay:calc(var(--d) * .28s + .3s);
}
@keyframes print{ to{ opacity:1; transform:translateY(0); } }
@keyframes stampIn{ to{ opacity:1; transform:rotate(-4deg) scale(1); } }

.receipt-tear{
  height:14px; margin:0 -2px;
  background:
    linear-gradient(135deg, var(--white) 50%, transparent 50%) 0 0/14px 14px repeat-x,
    linear-gradient(-135deg, var(--white) 50%, transparent 50%) 0 0/14px 14px repeat-x;
  background-position:0 0, 7px 0;
}

@media (max-width:900px){
  .hero-grid{ grid-template-columns:1fr; gap:44px; }
  .hero-visual{ order:-1; }
  .lede{ max-width:none; }
}

/* ============ TICKET STRIP ============ */
.strip{ background:var(--navy-ink); padding:16px 0; overflow:hidden; }
.strip-row{
  display:flex; flex-wrap:wrap; gap:14px 34px; justify-content:center;
  font-family:var(--font-mono); font-size:12.5px; color:#BFD0DE; letter-spacing:.03em;
}
.strip-row span{ white-space:nowrap; }

/* ============ SECTIONS ============ */
.section{ padding:88px 0; }
.section-alt{ background:var(--paper); }
.section-dark{ background:var(--navy-ink); color:white; }
.section h2{ font-size:clamp(26px,3.4vw,36px); color:var(--navy-ink); max-width:20ch; margin-top:6px; }
.section-dark h2{ color:white; }
.section-lede{ margin-top:16px; font-size:16px; color:var(--slate); max-width:60ch; }

/* ============ FEATURES ============ */
.feature-grid{
  margin-top:44px; display:grid; grid-template-columns:repeat(4,1fr); gap:2px;
  background:var(--border); border:1px solid var(--border); border-radius:var(--radius); overflow:hidden;
}
.feature{ background:white; padding:26px 22px; }
.feature-sku{ font-family:var(--font-mono); font-size:11.5px; color:var(--orange); font-weight:700; margin:0 0 10px; }
.feature h3{ font-size:16.5px; margin-bottom:8px; }
.feature p{ font-size:14px; color:var(--slate); line-height:1.55; }

@media (max-width:900px){ .feature-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px){ .feature-grid{ grid-template-columns:1fr; } }

/* ============ STEPS ============ */
.steps{
  list-style:none; margin:48px 0 0; padding:0;
  display:grid; grid-template-columns:repeat(3,1fr); gap:32px;
}
.step-n{
  font-family:var(--font-mono); font-weight:700; font-size:14px; color:var(--orange);
  display:inline-block; margin-bottom:14px;
}
.step h3{ font-size:19px; margin-bottom:10px; }
.step p{ font-size:14.5px; color:var(--slate); line-height:1.6; }

@media (max-width:760px){ .steps{ grid-template-columns:1fr; gap:36px; } }

/* ============ PRICING ============ */
.price-card{
  margin-top:40px; max-width:440px; background:white; border:1px solid var(--border);
  border-radius:var(--radius); padding:32px; box-shadow:var(--shadow);
}
.price-card-top h3{ font-size:20px; }
.price-card-top p{ color:var(--slate-soft); font-size:13.5px; margin-top:4px; }
.price-list{ list-style:none; margin:22px 0 26px; padding:0; display:flex; flex-direction:column; gap:12px; }
.price-list li{ font-size:14.5px; color:var(--slate); padding-left:24px; position:relative; }
.price-list li::before{ content:'✓'; position:absolute; left:0; color:var(--orange); font-weight:700; }

/* ============ CONTRATAR ============ */
.contratar-grid{ display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:start; }
.h2-light{ margin-top:8px; }
.form-card{
  background:white; border-radius:var(--radius); padding:30px; color:var(--navy-ink);
  display:flex; flex-direction:column; gap:16px;
}
.form-row{ display:flex; flex-direction:column; gap:6px; }
.form-row label{ font-size:13px; font-weight:600; color:var(--slate); }
.form-row input, .form-row select{
  font-family:var(--font-display); font-size:15px; padding:11px 13px;
  border:1.5px solid var(--border); border-radius:var(--radius-sm); background:var(--paper);
}
.form-row input:focus, .form-row select:focus{ outline:none; border-color:var(--orange); background:white; }
.form-hint{ font-size:12.5px; color:var(--slate-soft); text-align:center; }

@media (max-width:860px){ .contratar-grid{ grid-template-columns:1fr; } }

/* ============ FOOTER ============ */
.footer{ background:var(--navy-ink); border-top:1px solid rgba(255,255,255,.08); padding:32px 0; }
.footer-row{
  display:flex; flex-wrap:wrap; align-items:center; justify-content:space-between; gap:14px;
  color:#AEC0CF;
}
.footer .brand-name{ color:white; font-size:16px; }
.footer-tag{ font-size:13px; }
.footer-copy{ font-size:12.5px; color:#7E93A5; }
