/* ==========================================================================
   CSfood — Site institucional (Compsoft Sistemas)
   Identidade visual herdada do sistema oficial COMPSOFT (laranja/terracota)
   ========================================================================== */

:root {
  --primary:       #C04008;
  --primary-dark:  #8c2e00;
  --primary-light: #e8804f;   /* laranja claro p/ bordas/realces */
  --primary-soft:  #fdf4ef;   /* tint clarinho p/ fundos suaves */
  --accent:        #E55010;
  --accent-light:  #ff7a33;
  --dark:          #0a0f1e;
  --heading:       #0f1929;
  --text:          #1e293b;
  --text-muted:    #64748b;
  --bg:            #f5f0ed;
  --bg-card:       #ffffff;
  --border:        #e8ddd7;
  --gray-100:      #f3f0ee;
  --gray-200:      #e8ddd7;
  --gray-400:      #a89080;
  --danger:        #dc2626;
  --success:       #16a34a;
  --success-light: #dcfce7;
  --shadow-sm:     0 2px 8px  rgba(192,64,8,.08);
  --shadow:        0 4px 24px rgba(192,64,8,.12);
  --shadow-md:     0 6px 20px rgba(192,64,8,.14);
  --shadow-lg:     0 16px 44px rgba(192,64,8,.20);
  --radius:        8px;
  --radius-sm:     6px;
  --radius-lg:     14px;
  --transition:    .22s ease;
  --maxw:          1160px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 22px;
}

/* ---------- Botões (padrão COMPSOFT) ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--radius);
  border: none;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition), color var(--transition);
  white-space: nowrap;
}
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(192,64,8,.35); }
.btn-accent { background: var(--accent); color: #fff; box-shadow: 0 6px 18px rgba(229,80,16,.32); }
.btn-accent:hover { background: var(--primary-dark); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-ghost-light { background: rgba(255,255,255,.14); color: #fff; border: 1px solid rgba(255,255,255,.28); }
.btn-ghost-light:hover { background: rgba(255,255,255,.24); }
.btn-lg { padding: 14px 30px; font-size: 16px; }
.btn-block { width: 100%; }

/* ---------- Seções ---------- */
.section { padding: 84px 0; }
.section-tight { padding: 56px 0; }

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.section-head { max-width: 680px; margin: 0 auto 52px; text-align: center; }
.section-head h2 {
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.15;
  color: var(--heading);
  letter-spacing: -.5px;
}
.section-head p { margin-top: 16px; font-size: 17px; color: var(--text-muted); }

/* ==========================================================================
   Header / Navegação
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--primary);
  box-shadow: 0 2px 12px rgba(0,0,0,.22);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
  gap: 18px;
}
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  background: #fff;
  border-radius: 6px;
  padding: 4px 10px;
  flex-shrink: 0;
}
.brand-label { color: rgba(255,255,255,.85); font-size: 14px; font-weight: 600; letter-spacing: .02em; }

.nav-links { display: flex; align-items: center; gap: 28px; margin-left: auto; margin-right: 8px; }
.nav-links a { font-size: 15px; font-weight: 500; color: rgba(255,255,255,.85); white-space: nowrap; transition: color var(--transition); }
.nav-links a:hover { color: #fff; }
.nav-cta { display: flex; align-items: center; gap: 12px; }

.nav-toggle {
  display: none;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 8px;
  width: 42px; height: 42px;
  color: #fff;
}
.nav-toggle svg { width: 26px; height: 26px; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  background:
    radial-gradient(1100px 520px at 85% -10%, rgba(229,80,16,.14), transparent 60%),
    radial-gradient(900px 500px at -10% 20%, rgba(192,64,8,.08), transparent 55%);
  padding: 72px 0 92px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 56px;
}
.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 7px 16px;
  font-size: 13px; font-weight: 600; color: var(--primary);
  box-shadow: var(--shadow-sm);
}
.hero-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--success); }
.hero h1 {
  margin: 22px 0 18px;
  font-size: clamp(34px, 5.2vw, 56px);
  line-height: 1.06;
  letter-spacing: -1.2px;
  color: var(--heading);
}
.hero h1 .hl { color: var(--accent); }
.hero-sub { font-size: 19px; color: var(--text-muted); max-width: 540px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-trust { display: flex; gap: 28px; margin-top: 36px; flex-wrap: wrap; }
.hero-trust .t-num { font-size: 26px; font-weight: 800; color: var(--primary); }
.hero-trust .t-label { font-size: 13px; color: var(--text-muted); }

/* Hero mock (mini-PDV) */
.hero-visual { position: relative; }
.mock {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.mock-bar {
  display: flex; align-items: center; gap: 7px;
  padding: 13px 16px;
  background: var(--primary-dark);
}
.mock-bar i { width: 11px; height: 11px; border-radius: 50%; background: rgba(255,255,255,.3); }
.mock-bar span { margin-left: 10px; color: rgba(255,255,255,.78); font-size: 12px; font-weight: 600; }
.mock-body { padding: 18px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.mock-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 13px;
  display: flex; flex-direction: column; gap: 6px;
  background: #fff;
}
.mock-item .ic { width: 34px; height: 34px; border-radius: 9px; background: var(--primary-soft); display: grid; place-items: center; color: var(--primary); }
.mock-item .ic svg { width: 19px; height: 19px; }
.mock-item b { font-size: 14px; color: var(--text); }
.mock-item small { font-size: 12px; color: var(--text-muted); }
.mock-total {
  grid-column: 1 / -1;
  display: flex; align-items: center; justify-content: space-between;
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius);
  padding: 14px 16px;
  font-weight: 700;
}
.mock-total span { font-size: 13px; opacity: .85; font-weight: 600; }
.mock-total b { font-size: 20px; }
.float-card {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  padding: 12px 15px;
  display: flex; align-items: center; gap: 11px;
  font-size: 13px; font-weight: 600;
}
.float-card .fc-ic { width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; color: #fff; }
.float-card small { display: block; font-weight: 500; color: var(--text-muted); font-size: 11px; }
.float-1 { top: 16px; right: 16px; z-index: 2; }
.float-1 .fc-ic { background: var(--success); }
.float-2 { bottom: 16px; left: 16px; z-index: 2; }
.float-2 .fc-ic { background: var(--accent); }

/* Foto real no hero */
.hero-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid #fff;
  position: relative;
}
.hero-photo img { width: 100%; aspect-ratio: 4 / 3.1; object-fit: cover; display: block; }

/* ==========================================================================
   Foto com badge (blocos de destaque)
   ========================================================================== */
.media-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.media-photo img { width: 100%; aspect-ratio: 4 / 3.4; object-fit: cover; display: block; }
.media-badge {
  position: absolute; left: 18px; bottom: 18px; right: 18px;
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(4px);
  border-radius: 12px;
  padding: 13px 15px;
  box-shadow: var(--shadow-md);
}
.media-badge .mb-ic {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  background: var(--primary-soft); color: var(--primary);
  display: grid; place-items: center;
}
.media-badge .mb-ic svg { width: 22px; height: 22px; }
.media-badge small { display: block; font-size: 12px; color: var(--text-muted); font-weight: 600; }
.media-badge b { font-size: 16px; color: var(--heading); }

/* ==========================================================================
   Galeria de operações
   ========================================================================== */
.gallery-single img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 4px solid #fff;
  display: block;
}

.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery figure {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4 / 3;
  margin: 0;
}
.gallery img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .45s ease; }
.gallery figure:hover img { transform: scale(1.06); }
.gallery figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(transparent, rgba(10,15,30,.82));
  color: #fff; font-weight: 700; font-size: 14.5px;
  padding: 30px 16px 14px;
}

/* ==========================================================================
   Faixa de confiança
   ========================================================================== */
.trust-strip { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: #fff; }
.trust-strip .container { padding-top: 26px; padding-bottom: 26px; }
.trust-strip p { text-align: center; font-size: 13px; font-weight: 600; letter-spacing: .5px; color: var(--text-muted); text-transform: uppercase; margin-bottom: 18px; }
.logos { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 18px 40px; }
.logos span { font-size: 19px; font-weight: 800; color: #c9bdb4; letter-spacing: -.5px; }

/* ==========================================================================
   Features
   ========================================================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feature {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--primary-light); }
.feature .f-ic {
  width: 52px; height: 52px;
  border-radius: 13px;
  background: var(--primary-soft);
  display: grid; place-items: center;
  color: var(--primary);
  margin-bottom: 16px;
}
.feature .f-ic svg { width: 26px; height: 26px; }
.feature h3 { font-size: 18px; color: var(--heading); margin-bottom: 8px; }
.feature p { font-size: 14.5px; color: var(--text-muted); }

/* ==========================================================================
   Destaque / split
   ========================================================================== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split.reverse .split-media { order: 2; }
.split h2 { font-size: clamp(26px, 3.6vw, 36px); color: var(--heading); line-height: 1.15; letter-spacing: -.5px; }
.split > div > p { margin-top: 16px; font-size: 16.5px; color: var(--text-muted); }
.check-list { margin-top: 24px; display: flex; flex-direction: column; gap: 14px; }
.check-list li { list-style: none; display: flex; gap: 12px; align-items: flex-start; }
.check-list .ck {
  flex-shrink: 0;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--success); color: #fff;
  display: grid; place-items: center; margin-top: 1px;
}
.check-list .ck svg { width: 14px; height: 14px; }
.check-list b { color: var(--text); font-weight: 600; }
.check-list span { color: var(--text-muted); font-size: 14.5px; }

.split-media {
  background: var(--primary-dark);
  border-radius: var(--radius-lg);
  padding: 32px;
  color: #fff;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.split-media::after {
  content: ""; position: absolute; right: -60px; top: -60px;
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,122,51,.4), transparent 70%);
}
.kds-board { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; position: relative; z-index: 1; }
.kds-col h4 { font-size: 12px; text-transform: uppercase; letter-spacing: .6px; opacity: .7; margin-bottom: 10px; }
.kds-ticket { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); border-radius: 10px; padding: 12px; margin-bottom: 10px; }
.kds-ticket .kt-head { display: flex; justify-content: space-between; font-size: 12px; opacity: .8; margin-bottom: 7px; }
.kds-ticket b { font-size: 14px; }
.kds-ticket .kt-item { font-size: 13px; opacity: .9; }
.kds-ticket.ready { border-color: var(--accent-light); }
.kds-time { color: var(--accent-light); font-weight: 700; }

/* ==========================================================================
   Como funciona
   ========================================================================== */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.step { position: relative; padding: 30px 24px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.step .num {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--primary); color: #fff;
  display: grid; place-items: center; font-weight: 800; font-size: 19px;
  margin-bottom: 16px;
}
.step h3 { color: var(--heading); font-size: 19px; margin-bottom: 8px; }
.step p { color: var(--text-muted); font-size: 15px; }

/* ==========================================================================
   Planos
   ========================================================================== */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.plan {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.plan.featured { border: 2px solid var(--primary); box-shadow: var(--shadow-md); position: relative; }
.plan-tag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff;
  font-size: 12px; font-weight: 700; letter-spacing: .5px;
  padding: 5px 16px; border-radius: 50px;
}
.plan h3 { font-size: 20px; color: var(--heading); }
.plan .desc { color: var(--text-muted); font-size: 14px; margin: 6px 0 18px; }
.plan .price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 4px; }
.plan .price .cur { font-size: 18px; font-weight: 700; color: var(--text); }
.plan .price .val { font-size: 42px; font-weight: 800; color: var(--heading); letter-spacing: -1px; }
.plan .price .per { font-size: 14px; color: var(--text-muted); }
.plan .price-note { font-size: 13px; color: var(--text-muted); margin-bottom: 22px; }
.plan ul { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 26px; }
.plan ul li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: var(--text); }
.plan ul li svg { width: 18px; height: 18px; color: var(--success); flex-shrink: 0; margin-top: 2px; }
.plan ul li.off { color: var(--text-muted); }
.plan ul li.off svg { color: #c9c4bb; }
.plan .btn { margin-top: auto; }

/* ==========================================================================
   Depoimentos
   ========================================================================== */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.quote { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-sm); }
.quote .stars { color: #f59e0b; margin-bottom: 14px; font-size: 16px; letter-spacing: 2px; }
.quote p { font-size: 15.5px; color: var(--text); }
.quote .who { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.quote .av { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--primary)); color: #fff; display: grid; place-items: center; font-weight: 700; }
.quote .who b { display: block; font-size: 14.5px; color: var(--text); }
.quote .who small { color: var(--text-muted); font-size: 13px; }

/* ==========================================================================
   CTA + Contato
   ========================================================================== */
.cta-band {
  background: linear-gradient(135deg, var(--accent), var(--primary-dark));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 56px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; left: -80px; bottom: -80px;
  width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,122,51,.4), transparent 70%);
}
.cta-band h2 { font-size: clamp(26px, 3.4vw, 36px); line-height: 1.15; position: relative; }
.cta-band p { margin-top: 14px; font-size: 17px; color: rgba(255,255,255,.88); position: relative; }

.contact-form {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.contact-form h3 { color: var(--heading); font-size: 18px; margin-bottom: 4px; }
.contact-form .fc-sub { color: var(--text-muted); font-size: 13.5px; margin-bottom: 18px; }
.field { margin-bottom: 14px; }
.field label { display: block; font-size: 12.5px; font-weight: 600; color: var(--heading); text-transform: uppercase; letter-spacing: .4px; margin-bottom: 5px; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px; font-family: inherit; color: var(--text);
  background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(192,64,8,.12);
}
.field textarea { resize: vertical; min-height: 80px; }
.form-note { font-size: 12.5px; color: var(--text-muted); margin-top: 10px; text-align: center; }
.form-success {
  display: none;
  background: var(--success); color: #fff;
  border-radius: var(--radius); padding: 12px 14px;
  font-size: 14px; font-weight: 600; margin-bottom: 14px;
}
.form-success.show { display: block; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; background: none; border: none;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 22px 4px; text-align: left;
  font-size: 17px; font-weight: 600; color: var(--heading);
}
.faq-q .chev { transition: transform var(--transition); flex-shrink: 0; color: var(--primary); }
.faq-item.open .faq-q .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-a p { padding: 0 4px 22px; color: var(--text-muted); font-size: 15.5px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--dark); color: rgba(255,255,255,.72); padding: 56px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; }
.footer-brand .logo-img { height: 38px; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; max-width: 280px; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a { width: 38px; height: 38px; border-radius: 9px; background: rgba(255,255,255,.08); display: grid; place-items: center; color: #fff; transition: background var(--transition); }
.footer-social a:hover { background: var(--accent); }
.footer-social svg { width: 18px; height: 18px; }
.footer-col h4 { color: #fff; font-size: 14px; text-transform: uppercase; letter-spacing: .6px; margin-bottom: 16px; }
.footer-col a { display: block; font-size: 14.5px; padding: 6px 0; transition: color var(--transition); }
.footer-col a:hover { color: var(--accent-light); }
.footer-addr { display: block; font-size: 14.5px; padding: 6px 0; }
.footer-bottom {
  margin-top: 44px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 13.5px;
}

/* ==========================================================================
   Menu mobile (drawer)
   ========================================================================== */
.mobile-menu {
  position: fixed; inset: 0;
  background: rgba(10,15,30,.5);
  backdrop-filter: blur(2px);
  z-index: 200;
  opacity: 0; visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu-panel {
  position: absolute; top: 0; right: 0;
  width: min(300px, 84vw); height: 100%;
  background: var(--bg);
  box-shadow: -10px 0 40px rgba(0,0,0,.25);
  transform: translateX(100%);
  transition: transform .25s ease;
  padding: 22px;
  display: flex; flex-direction: column;
}
.mobile-menu.open .mobile-menu-panel { transform: translateX(0); }
.mobile-menu-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.mobile-menu-head .logo-img { height: 36px; border: 1px solid var(--border); }
.mobile-menu-head button { background: none; border: none; color: var(--heading); width: 40px; height: 40px; }
.mobile-menu-head button svg { width: 26px; height: 26px; }
.mobile-menu a.m-link { padding: 14px 6px; font-size: 17px; font-weight: 600; color: var(--text); border-bottom: 1px solid var(--border); }
.mobile-menu .m-actions { margin-top: auto; display: flex; flex-direction: column; gap: 12px; }

/* ==========================================================================
   Responsivo
   ========================================================================== */
@media (max-width: 980px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { max-width: 460px; margin: 0 auto; width: 100%; }
  .split, .cta-band { grid-template-columns: 1fr; gap: 36px; }
  .split.reverse .split-media { order: 0; }
  .cta-band { padding: 40px 32px; }
  .plans, .steps, .quotes { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}

@media (max-width: 760px) {
  .nav-links, .nav-cta .btn, .brand-label { display: none; }
  .nav-toggle { display: grid; place-items: center; }
  .section { padding: 60px 0; }
  .features-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .gallery { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .hero { padding: 46px 0 64px; }
  .hero-trust { gap: 22px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .float-1 { right: 10px; top: 10px; }
  .float-2 { left: 10px; bottom: 10px; }
}

@media (max-width: 420px) {
  .hero-actions .btn { width: 100%; }
}
