/* ============================================================
   ProntoJá — style.css
   Brad Frost Atomic Design · Light warm theme · Bricolage Grotesque
   ============================================================ */

/* ──────────────────────────────────────────────────────────
   TOKENS
   ────────────────────────────────────────────────────────── */
:root {
  --bg:        #F8F6F1;
  --bg-tint:   #F0EDE6;
  --bg-dark:   #100F0C;
  --white:     #FFFFFF;
  --ink:       #1A1A1A;
  --ink-2:     #555555;
  --ink-3:     #888888;
  --accent:    #E5430A;
  --accent-d:  #C03508;
  --accent-l:  #FFF0EB;
  --border:    #E2DED6;
  --success:   #0F9D58;
  --r-sm:      6px;
  --r:         12px;
  --r-lg:      20px;
  --sh-sm:     0 1px 3px rgba(0,0,0,.08);
  --sh:        0 4px 20px rgba(0,0,0,.10);
  --sh-lg:     0 12px 48px rgba(0,0,0,.14);
  --nav-h:     68px;
  --t:         .2s ease;
}

/* ──────────────────────────────────────────────────────────
   RESET & BASE
   ────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  line-height: 1.1;
  font-weight: 700;
}

a           { color: inherit; text-decoration: none; }
a:hover     { text-decoration: underline; }
img         { display: block; max-width: 100%; }
ul, ol      { list-style: none; }
button      { cursor: pointer; border: none; background: none; font: inherit; }
input, select, textarea { font: inherit; }
fieldset    { border: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

/* ──────────────────────────────────────────────────────────
   LAYOUT
   ────────────────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ──────────────────────────────────────────────────────────
   ATOMS — BUTTONS
   ────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--r-sm);
  font-weight: 600;
  font-size: .9375rem;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none !important;
  transition: background var(--t), color var(--t), border-color var(--t),
              transform .15s ease, box-shadow .15s ease;
}
.btn:active { transform: scale(.97); }

.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: var(--accent-d); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--border);
}
.btn--ghost:hover { border-color: var(--ink); background: rgba(0,0,0,.04); }

.btn--outline {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}
.btn--outline:hover { background: var(--accent-l); }

.btn--white { background: #fff; color: var(--accent); }
.btn--white:hover { background: var(--accent-l); }

.btn--sm  { padding: 9px 18px; font-size: .875rem; }
.btn--lg  { padding: 15px 32px; font-size: 1rem; }
.btn--block { display: flex; justify-content: center; width: 100%; }

/* ──────────────────────────────────────────────────────────
   ATOMS — REVEAL
   ────────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ──────────────────────────────────────────────────────────
   ATOMS — SECTION HEADER
   ────────────────────────────────────────────────────────── */
.section__tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--accent);
  margin-bottom: 12px;
}
.section__title {
  font-size: clamp(1.875rem, 3vw, 2.875rem);
  font-weight: 800;
  letter-spacing: -.03em;
  margin-bottom: 16px;
  color: var(--ink);
}
.section__sub {
  font-size: 1.0625rem;
  color: var(--ink-2);
  line-height: 1.65;
}

/* ──────────────────────────────────────────────────────────
   TOPBAR (mobile emergency bar)
   ────────────────────────────────────────────────────────── */
.topbar {
  display: none;
  background: var(--accent);
  color: #fff;
  font-size: .8125rem;
  font-weight: 500;
  text-align: center;
  padding: 8px 16px;
  gap: 12px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.topbar a { color: #fff; font-weight: 700; text-decoration: underline; }

@media (max-width: 767px) {
  .topbar { display: flex; }
}

/* ──────────────────────────────────────────────────────────
   NAV
   ────────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--sh-sm);
}

.nav__wrap {
  display: flex;
  align-items: center;
  height: var(--nav-h);
  gap: 32px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.375rem;
  color: var(--ink);
  flex-shrink: 0;
  text-decoration: none !important;
}
.nav__logo-mark {
  width: 32px;
  height: 32px;
  background: var(--accent);
  color: #fff;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: -.5px;
}
.nav__logo-dot { color: var(--accent); }

.nav__links {
  display: flex;
  gap: 0;
  margin-left: auto;
}
.nav__links a {
  padding: 8px 14px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--ink-2);
  border-radius: var(--r-sm);
  transition: color var(--t), background var(--t);
  text-decoration: none !important;
}
.nav__links a:hover { color: var(--ink); background: var(--bg); }

.nav__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 16px;
}
.nav__wa {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .875rem;
  font-weight: 500;
  color: #25D366;
  text-decoration: none !important;
}
.nav__wa:hover { text-decoration: underline !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: var(--r-sm);
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
  transform-origin: center;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Drawer */
.nav-drawer {
  display: none;
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  background: var(--white);
  z-index: 99;
  padding: 24px;
  flex-direction: column;
  gap: 4px;
  transform: translateX(100%);
  transition: transform .3s ease;
}
.nav-drawer.is-open { transform: translateX(0); }
.nav-drawer nav { display: flex; flex-direction: column; gap: 4px; }
.nav-drawer a {
  padding: 14px 16px;
  font-weight: 500;
  border-radius: var(--r-sm);
  color: var(--ink);
  font-size: 1.0625rem;
  text-decoration: none !important;
}
.nav-drawer a:hover { background: var(--bg); }

@media (max-width: 899px) {
  .nav__links, .nav__actions { display: none; }
  .hamburger { display: flex; }
  .nav-drawer { display: flex; }
}

/* ──────────────────────────────────────────────────────────
   HERO
   ────────────────────────────────────────────────────────── */
.hero {
  overflow: hidden;
  background: var(--bg);
}

.hero__inner {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 56px;
  align-items: center;
  padding-top: 72px;
}

.hero__content { padding-bottom: 72px; }

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--ink-2);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 14px;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.dot-live {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  display: inline-block;
  animation: pulse-live 2s infinite;
}
@keyframes pulse-live {
  0%, 100% { opacity: 1; }
  50%       { opacity: .3; }
}

.hero__title {
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -.03em;
  margin-bottom: 20px;
}
.hero__title em { font-style: italic; }
.hero__title--accent { color: var(--accent); display: block; }

.hero__desc {
  font-size: 1.0625rem;
  color: var(--ink-2);
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: 32px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  font-size: .8125rem;
  font-weight: 500;
  color: var(--ink-3);
}

/* ── Browser mockup ── */
.hero__visual {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.site-preview {
  position: relative;
  width: 100%;
  max-width: 460px;
  border-radius: 16px 16px 0 0;
  background: var(--white);
  box-shadow: 0 20px 60px rgba(0,0,0,.15), 0 4px 16px rgba(0,0,0,.08);
}

.site-preview__chrome {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: #ECEAE5;
  border-radius: 16px 16px 0 0;
  border-bottom: 1px solid #DDD9D0;
}
.site-preview__dots { display: flex; gap: 6px; }
.site-preview__dots i {
  width: 10px; height: 10px;
  border-radius: 50%;
  display: block;
}
.site-preview__addr {
  flex: 1;
  font-size: .7rem;
  color: #888;
  background: #fff;
  border-radius: 4px;
  padding: 3px 10px;
  text-align: center;
}

.site-preview__body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--bg);
}

.sp-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.sp-logo {
  width: 64px; height: 12px;
  border-radius: 4px;
  background: var(--accent);
  opacity: .7;
}
.sp-nav-links { margin-left: auto; display: flex; gap: 8px; }
.sp-nav-links i {
  width: 36px; height: 8px;
  border-radius: 4px;
  background: var(--border);
  display: block;
}

.sp-hero-area {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 8px 0;
}
.sp-h1 {
  height: 14px; border-radius: 4px;
  background: var(--ink); opacity: .15;
  width: 90%;
}
.sp-h1--short { width: 65%; }
.sp-p {
  height: 8px; border-radius: 4px;
  background: var(--ink-3); opacity: .2;
  width: 100%;
}
.sp-p--short { width: 75%; }
.sp-cta {
  width: 120px; height: 28px;
  border-radius: 6px;
  background: var(--accent); opacity: .85;
  margin-top: 4px;
}

.sp-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.sp-card {
  height: 64px; border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--border);
}

/* Floating before/after tags */
.site-preview__tag {
  position: absolute;
  background: var(--white);
  border-radius: var(--r);
  padding: 8px 14px;
  font-size: .75rem;
  font-weight: 600;
  box-shadow: var(--sh);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  pointer-events: none;
}
.site-preview__tag span {
  display: block;
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.site-preview__tag--before {
  bottom: 30%;
  left: -20px;
  color: var(--ink-2);
}
.site-preview__tag--before span { color: var(--ink-3); }
.site-preview__tag--after {
  top: 30%;
  right: -20px;
  color: var(--success);
  border-left: 3px solid var(--success);
}
.site-preview__tag--after span { color: var(--success); }

/* Stats bar */
.hero__stats {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  background: var(--white);
  border-top: 1px solid var(--border);
  margin-top: 48px;
}
.hero__stats > div {
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-right: 1px solid var(--border);
}
.hero__stats > div:last-child { border-right: none; }
.hero__stats strong {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.hero__stats span { font-size: .8125rem; color: var(--ink-3); font-weight: 500; }

/* ──────────────────────────────────────────────────────────
   SECTIONS (generic wrappers)
   ────────────────────────────────────────────────────────── */
.section { padding: 96px 0; }
.section--tinted { background: var(--bg-tint); }

.section__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

/* ──────────────────────────────────────────────────────────
   PROBLEMA — dark editorial
   ────────────────────────────────────────────────────────── */
.problema {
  background: var(--bg-dark);
  color: var(--white);
  padding: 96px 0;
}
.problema__grid {
  display: grid;
  grid-template-columns: 120px 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.problema__label {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255,255,255,.3);
  padding-top: 8px;
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  height: fit-content;
}
.problema__quote blockquote {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2.125rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--white);
  border-left: 3px solid var(--accent);
  padding-left: 28px;
}
.problema__body p {
  color: rgba(255,255,255,.65);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 16px;
}
.problema__body p:last-child { margin-bottom: 0; }
.problema__body strong { color: var(--white); }

/* ──────────────────────────────────────────────────────────
   HOW IT WORKS — STEPS
   ────────────────────────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 24px;
}
.step {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  transition: box-shadow var(--t), transform var(--t);
}
.step:hover { box-shadow: var(--sh); transform: translateY(-4px); }

@media (min-width: 900px) {
  .step:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -13px;
    top: 48px;
    width: 26px;
    height: 2px;
    background: var(--border);
    z-index: 1;
  }
}

.step__num {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--border);
  line-height: 1;
  margin-bottom: 12px;
}
.step__icon  { font-size: 1.75rem; margin-bottom: 12px; display: block; }
.step__title { font-size: 1.0625rem; font-weight: 700; margin-bottom: 8px; color: var(--ink); }
.step__desc  { font-size: .9rem; color: var(--ink-2); line-height: 1.6; }

/* ──────────────────────────────────────────────────────────
   PORTFOLIO
   ────────────────────────────────────────────────────────── */
.portfolio {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pf__browser {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #ECEAE5;
  padding: 8px 14px;
  border-radius: 12px 12px 0 0;
  border-bottom: 1px solid #DDD9D0;
}
.pf__browser span {
  width: 10px; height: 10px;
  border-radius: 50%;
  display: block;
  flex-shrink: 0;
}
.pf__browser span:nth-child(1) { background: #FF5F57; }
.pf__browser span:nth-child(2) { background: #FFBD2E; }
.pf__browser span:nth-child(3) { background: #28CA42; }
.pf__addr {
  flex: 1;
  font-size: .7rem;
  background: var(--white);
  border-radius: 4px;
  padding: 3px 10px;
  text-align: center;
  color: #888;
}

.pf__screen { position: relative; height: 260px; overflow: hidden; }
.pf__screen--sm { height: 140px; }

.pf__screen--food   { background: linear-gradient(135deg,#7B2D00 0%,#C0392B 50%,#E67E22 100%); }
.pf__screen--beauty { background: linear-gradient(135deg,#E8A598 0%,#D4618A 50%,#A01E5B 100%); }
.pf__screen--auto   { background: linear-gradient(135deg,#0D1B2A 0%,#1B3A5C 50%,#2E6DA4 100%); }
.pf__screen--build  { background: linear-gradient(135deg,#3D2B1F 0%,#6B4226 50%,#A0522D 100%); }
.pf__screen--health { background: linear-gradient(135deg,#006064 0%,#00897B 50%,#26A69A 100%); }

.pf__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.65) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: #fff;
}
.pf__sector { font-size: .7rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; opacity: .75; margin-bottom: 4px; }
.pf__name   { font-family: 'Bricolage Grotesque', system-ui, sans-serif; font-size: 1.375rem; font-weight: 700; }
.pf__result { font-size: .8125rem; color: #90EE90; margin-top: 4px; }

.portfolio__featured {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--sh);
}
.portfolio__featured .pf__screen { height: 300px; }

.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
}
.portfolio__card {
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
  transition: box-shadow var(--t), transform var(--t);
}
.portfolio__card:hover { box-shadow: var(--sh); transform: translateY(-4px); }

.pf__info { padding: 12px 14px; }
.pf__info .pf__sector { color: var(--ink-3); margin-bottom: 2px; }
.pf__info .pf__name   { font-size: .9375rem; font-weight: 600; font-family: 'Bricolage Grotesque', system-ui, sans-serif; }

.portfolio__more {
  text-align: center;
  color: var(--ink-3);
  font-size: .9rem;
  margin-top: 8px;
}
.portfolio__more a { color: var(--accent); font-weight: 600; }
.portfolio__more a:hover { text-decoration: underline; }

/* ──────────────────────────────────────────────────────────
   COMPARE TABLE
   ────────────────────────────────────────────────────────── */
.compare-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--r-lg);
  box-shadow: var(--sh);
  border: 1px solid var(--border);
}

.compare {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  min-width: 580px;
}

.compare thead tr { border-bottom: 2px solid var(--border); }
.compare th {
  padding: 20px 24px;
  font-size: .8125rem;
  font-weight: 700;
  text-align: left;
  color: var(--ink-2);
  text-transform: uppercase;
  letter-spacing: .05em;
}
.compare__feature-col { width: 28%; }
.compare__col         { width: 24%; }
.compare__col--winner {
  background: var(--accent-l);
  color: var(--accent);
}
.compare__winner-badge {
  display: block;
  font-size: .65rem;
  font-weight: 700;
  background: var(--accent);
  color: #fff;
  border-radius: 100px;
  padding: 2px 8px;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 4px;
  width: fit-content;
}

.compare tbody tr { border-bottom: 1px solid var(--border); }
.compare tbody tr:last-child { border-bottom: none; }
.compare tbody tr:hover td { background: var(--bg); }
.compare tbody tr:hover .compare__val--winner { background: #FFE8DE; }

.compare td { padding: 16px 24px; font-size: .9375rem; color: var(--ink-2); }
.compare__label { font-weight: 600; color: var(--ink); }
.compare__val--winner { background: var(--accent-l); font-weight: 600; color: var(--ink); }
.compare__val--bad    { color: var(--ink-3); }

.ico-yes { color: var(--success); font-weight: 700; }
.ico-no  { color: #E53E3E; font-weight: 700; }

/* ──────────────────────────────────────────────────────────
   PLANS
   ────────────────────────────────────────────────────────── */
.plans {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 760px;
  margin: 0 auto 56px;
}

.plan {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  transition: box-shadow var(--t);
}
.plan:hover { box-shadow: var(--sh); }

.plan--featured {
  border-color: var(--accent);
  border-width: 2px;
  box-shadow: 0 0 0 4px var(--accent-l);
}
.plan--featured:hover { box-shadow: 0 0 0 4px var(--accent-l), var(--sh); }

.plan__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.plan__name {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--ink);
}
.plan__price {
  display: flex;
  align-items: baseline;
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -.04em;
  line-height: 1;
}
.plan__curr { font-size: 1.5rem; font-weight: 700; color: var(--accent); align-self: flex-start; margin-top: 6px; }
.plan__mo   { font-size: .9rem; font-weight: 400; color: var(--ink-3); align-self: flex-end; padding-bottom: 4px; }
.plan__note { font-size: .8125rem; color: var(--ink-3); margin-top: -8px; }

.plan__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.plan__features li {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: .9rem;
  color: var(--ink-2);
}
.plan__features li span { color: var(--success); font-size: .8rem; flex-shrink: 0; }

/* Extras */
.extras { text-align: center; }
.extras__label {
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--ink-3);
  margin-bottom: 16px;
}
.extras__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.extra {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 7px 16px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--ink-2);
}

/* ──────────────────────────────────────────────────────────
   TESTIMONIALS
   ────────────────────────────────────────────────────────── */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}

.testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial__stars { color: #F5A623; font-size: 1rem; letter-spacing: 2px; }

.testimonial__quote {
  font-size: .9375rem;
  color: var(--ink-2);
  line-height: 1.65;
  flex: 1;
  font-style: normal;
}
.testimonial__quote::before {
  content: '"';
  color: var(--accent);
  font-size: 1.5rem;
  font-family: Georgia, serif;
  line-height: 1;
  display: block;
  margin-bottom: 4px;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: .75rem;
  font-weight: 700;
  flex-shrink: 0;
}
.testimonial__name { font-weight: 600; font-size: .9rem; display: block; font-style: normal; }
.testimonial__biz  { font-size: .8rem; color: var(--ink-3); }

/* ──────────────────────────────────────────────────────────
   CTA STRIP
   ────────────────────────────────────────────────────────── */
.cta-strip {
  background: var(--bg-dark);
  padding: 80px 0;
}
.cta-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-strip__title {
  font-size: clamp(1.75rem, 2.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--white);
  margin-bottom: 10px;
}
.cta-strip__sub { color: rgba(255,255,255,.6); font-size: 1rem; }

/* ──────────────────────────────────────────────────────────
   FORM SHELL
   ────────────────────────────────────────────────────────── */
.form-shell {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  align-items: start;
  max-width: 920px;
  margin: 0 auto;
}

/* Sidebar */
.form-shell__sidebar {
  background: var(--bg-dark);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  color: var(--white);
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}
.form-shell__sidebar-title {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.4);
  margin-bottom: 20px;
}
.form-shell__guarantees {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}
.form-shell__guarantees li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.fsg-icon { font-size: 1.25rem; flex-shrink: 0; line-height: 1; margin-top: 1px; }
.form-shell__guarantees strong {
  display: block;
  font-size: .875rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}
.form-shell__guarantees span { font-size: .8rem; color: rgba(255,255,255,.45); }
.form-shell__wa {
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: .8125rem;
  color: rgba(255,255,255,.45);
}
.form-shell__wa a { color: #25D366; font-weight: 600; }
.form-shell__wa a:hover { text-decoration: underline; }

/* Form card */
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh);
}

.form-card__head {
  padding: 20px 28px 16px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.form-progress {
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 8px;
}
.form-progress__fill {
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
  width: 25%;
  transition: width .4s ease;
}
.form-card__step-label { font-size: .8rem; color: var(--ink-3); font-weight: 500; }

.form-card__body { padding: 32px 28px; }

/* Steps */
.fstep { display: none; }
.fstep.is-active { display: block; }

.fstep legend { display: block; margin-bottom: 24px; }
.fstep__title {
  display: block;
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}
.fstep__sub { display: block; font-size: .875rem; color: var(--ink-3); }

/* Fields */
.fg {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.fg:last-child { margin-bottom: 0; }

.fg-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.fg-row .fg { margin-bottom: 0; }

label { font-size: .875rem; font-weight: 600; color: var(--ink); }

input[type="text"],
input[type="tel"],
input[type="email"],
select,
textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  background: var(--bg);
  color: var(--ink);
  font-size: .9375rem;
  transition: border-color .15s ease, box-shadow .15s ease;
  outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-l);
  background: var(--white);
}
input.is-invalid, select.is-invalid, textarea.is-invalid { border-color: #E53E3E; }
textarea { resize: vertical; min-height: 96px; }
select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2.5'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.ferr { font-size: .8rem; color: #E53E3E; display: none; font-weight: 500; }
.ferr.is-visible { display: block; }

/* Chips */
.chip-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  padding: 7px 14px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-size: .8125rem;
  font-weight: 500;
  color: var(--ink-2);
  cursor: pointer;
  transition: border-color .15s, background .15s, color .15s;
}
.chip:hover { border-color: var(--accent); color: var(--accent); }
.chip.is-selected {
  background: var(--accent-l);
  border-color: var(--accent);
  color: var(--accent);
}

/* Color swatches */
.color-row { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.cswatch {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--c, #888);
  border: 3px solid transparent;
  cursor: pointer;
  position: relative;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.15);
  transition: transform .15s ease, box-shadow .15s ease;
}
.cswatch:hover { transform: scale(1.15); }
.cswatch.is-picked {
  border-color: var(--ink);
  box-shadow: 0 0 0 2px var(--white), 0 0 0 4px var(--ink);
  transform: scale(1.1);
}
.cswatch--custom {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  font-size: .9rem;
}
.cswatch--custom input[type="color"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
  padding: 0;
  border: none;
}

/* Upload zone */
.upload-zone {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 28px;
  border: 2px dashed var(--border);
  border-radius: var(--r);
  cursor: pointer;
  transition: border-color .15s, background .15s;
  text-align: center;
  position: relative;
}
.upload-zone:hover, .upload-zone:focus-within {
  border-color: var(--accent);
  background: var(--accent-l);
}
.upload-zone input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
}
.upload-zone__icon { font-size: 2rem; }
.upload-zone__text { font-size: .9rem; color: var(--ink-2); }
.upload-zone__hint { font-size: .75rem; color: var(--ink-3); }
.upload-zone__name { font-size: .8rem; color: var(--success); font-weight: 600; }

/* Form footer */
.form-card__foot {
  padding: 16px 28px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg);
}
.form-card__prog { font-size: .8rem; color: var(--ink-3); }
.form-card__btns { display: flex; gap: 10px; }

/* Disclaimer */
.form-disclaimer {
  font-size: .8rem;
  color: var(--ink-3);
  line-height: 1.6;
  padding: 12px 16px;
  background: var(--bg);
  border-radius: var(--r-sm);
  margin-top: 12px;
}

/* Success */
.form-success { text-align: center; padding: 40px 20px; }
.form-success__icon { font-size: 3rem; margin-bottom: 16px; }
.form-success h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 8px; }
.form-success p { color: var(--ink-2); }

/* ──────────────────────────────────────────────────────────
   FAQ
   ────────────────────────────────────────────────────────── */
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}
.faq-layout__intro .section__title,
.faq-layout__intro .section__tag { text-align: left; }
.faq-layout__intro p { color: var(--ink-2); line-height: 1.65; }

.faq-list { display: flex; flex-direction: column; }

.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-item__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 4px;
  font-size: .9375rem;
  font-weight: 600;
  color: var(--ink);
  text-align: left;
  gap: 16px;
  transition: color .15s;
}
.faq-item__q:hover { color: var(--accent); }

.faq-item__icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: grid;
  place-items: center;
  font-size: 1.125rem;
  font-weight: 400;
  flex-shrink: 0;
  transition: transform .25s ease, background .15s, border-color .15s, color .15s;
}
.faq-item.is-open .faq-item__icon {
  transform: rotate(45deg);
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.faq-item__a { padding: 0 4px 16px; }
.faq-item__a p { font-size: .9rem; color: var(--ink-2); line-height: 1.7; }

/* ──────────────────────────────────────────────────────────
   FOOTER
   ────────────────────────────────────────────────────────── */
.footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,.65);
  padding-top: 64px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer__logo {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--white);
  text-decoration: none !important;
  display: inline-block;
  margin-bottom: 12px;
}
.footer__logo span { color: var(--accent); }
.footer__brand p { font-size: .875rem; line-height: 1.65; margin-bottom: 20px; }
.footer__wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .875rem;
  color: #25D366;
  font-weight: 600;
  text-decoration: none !important;
}
.footer__wa:hover { text-decoration: underline !important; }

.footer__nav-title {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.3);
  margin-bottom: 16px;
}
.footer__nav ul { display: flex; flex-direction: column; gap: 10px; }
.footer__nav a {
  font-size: .875rem;
  color: rgba(255,255,255,.5);
  text-decoration: none !important;
  transition: color .15s;
}
.footer__nav a:hover { color: var(--white); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: .8125rem;
  color: rgba(255,255,255,.3);
  flex-wrap: wrap;
  gap: 8px;
}
.footer__bottom a { color: rgba(255,255,255,.3); }
.footer__bottom a:hover { color: var(--white); }

/* ──────────────────────────────────────────────────────────
   WHATSAPP FLOAT
   ────────────────────────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform .2s ease, box-shadow .2s ease;
  text-decoration: none !important;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,.5);
}
.wa-float svg { width: 28px; height: 28px; }

/* ──────────────────────────────────────────────────────────
   RESPONSIVE
   ────────────────────────────────────────────────────────── */
@media (max-width: 1099px) {
  .hero__inner     { gap: 40px; }
  .steps           { grid-template-columns: repeat(2,1fr); }
  .portfolio__grid { grid-template-columns: repeat(2,1fr); }
  .testimonials    { grid-template-columns: 1fr 1fr; }
  .testimonials .testimonial:nth-child(3) {
    grid-column: 1/-1;
    max-width: 520px;
    margin: 0 auto;
  }
}

@media (max-width: 899px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 48px;
  }
  .hero__content { padding-bottom: 0; }
  .hero__visual  { order: -1; }
  .site-preview  { max-width: 380px; margin: 0 auto; }

  .hero__stats { grid-template-columns: repeat(2,1fr); }
  .hero__stats > div { border-bottom: 1px solid var(--border); }
  .hero__stats > div:nth-child(2n) { border-right: none; }
  .hero__stats > div:nth-last-child(-n+2) { border-bottom: none; }

  .problema__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .problema__label {
    writing-mode: horizontal-tb;
    transform: none;
    height: auto;
  }

  .faq-layout    { grid-template-columns: 1fr; gap: 40px; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__brand { grid-column: 1/-1; }
}

@media (max-width: 767px) {
  .section { padding: 64px 0; }
  .section__header { margin-bottom: 40px; }

  .steps { grid-template-columns: 1fr; gap: 16px; }
  .step:not(:last-child)::after { display: none; }

  .portfolio__grid { grid-template-columns: 1fr 1fr; }

  .plans { grid-template-columns: 1fr; max-width: 400px; }

  .testimonials { grid-template-columns: 1fr; }
  .testimonials .testimonial:nth-child(3) { grid-column: auto; max-width: none; margin: 0; }

  .form-shell { grid-template-columns: 1fr; }
  .form-shell__sidebar { position: static; order: 2; }

  .fg-row { grid-template-columns: 1fr; }

  .cta-strip__inner { flex-direction: column; text-align: center; }

  .footer__inner { grid-template-columns: 1fr; }

  .wa-float { bottom: 20px; right: 20px; width: 48px; height: 48px; }
  .wa-float svg { width: 24px; height: 24px; }
}

@media (max-width: 479px) {
  .hero__title { font-size: 2rem; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { justify-content: center; }
  .site-preview { max-width: 100%; }
  .portfolio__grid { grid-template-columns: 1fr; }
  .compare { min-width: 400px; }
  .compare th, .compare td { padding: 12px 14px; font-size: .8125rem; }
  .plan__price { font-size: 2.75rem; }
}
