/* ─────────────────────────────────────────
   BPM agency — style.css
   Paleta: fundo claro neutro, texto escuro,
   acento amarelo-limão. Nomes de vars
   refletem função, não cor percebida.
───────────────────────────────────────── */

/* ── TOKENS ── */
:root {
  /* Fundos */
  --bg:        #f1f1f1;
  --bg-2:      #e2e2e2;
  --bg-3:      #e0e0e0;
  --bg-white:  #f7f7f7;
  --card:      #ffffff;

  /* Escuros */
  --ink:       #0b100e;   /* texto/fundo principal escuro */
  --ink-2:     #0f1712;
  --ink-3:     #2b2b2b;

  /* Acento (amarelo-limão) */
  --accent:    #f3f44c;
  --accent-2:  #f9f95e;
  --accent-3:  #fefe97;

  /* Pill verde */
  --pill-bg:   #d0ead8;
  --pill-text: #0d4a27;

  /* Texto */
  --text:      #0b100e;
  --muted:     #5d5d5d;
  --subtle:    #8a9e94;
  --border:    #d4cfc6;

  /* Misc */
  --radius:    4px;
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Instrument Sans', sans-serif;
  background: var(--bg-white);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
h1, h2, h3, .display {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  background: var(--bg-white);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--ink-3);
}
nav a {
  padding: 10px 14px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.logo {
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1;
}
.logo img         { height: 120px; align-self: flex-start; margin-bottom: 61px; }
.logo-bpm         { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 26px; letter-spacing: -2px; color: var(--accent); line-height: .9; display: none; }
.logo-rule        { height: 1px; background: var(--border); margin: 3px 0 2px; display: none; }
.logo-agency      { font-family: 'Playfair Display', serif; font-style: italic; font-size: 9px; color: var(--subtle); letter-spacing: .2em; display: none; }
.nav-links        { display: flex; gap: 28px; list-style: none; }
.nav-links a      { text-decoration: none; color: var(--ink-3); font-size: 14px; font-weight: 500; transition: color .2s; }
.nav-links a:hover,
.nav-links a.active { font-weight: 600; color: var(--ink); }
.nav-cta          { background: var(--ink); color: #fff; padding: 9px 22px; border-radius: var(--radius); font-size: 13px; font-weight: 600; text-decoration: none; transition: background .2s, color .2s; }
.nav-cta:hover    { background: var(--accent); color: var(--ink); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 140px 48px 100px;
  position: relative;
  overflow: hidden;
}
.hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: var(--border); }
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--ink);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .08em;
  padding: 6px 16px 6px 12px;
  border-radius: 50px;
  margin-bottom: 36px;
  text-transform: uppercase;
}
.pill-dot { width: 7px; height: 7px; background: var(--ink); border-radius: 50%; flex-shrink: 0; }
.hero h1  { font-size: clamp(52px, 7.5vw, 96px); line-height: 1; letter-spacing: -3px; max-width: 960px; margin-bottom: 6px; }
.hero h1 em { font-family: 'Playfair Display', serif; font-style: italic; font-weight: 400; font-size: .85em; letter-spacing: -1px; }
.hl { position: relative; display: inline-block; color: var(--ink); background: var(--accent); }
.hero-sub { font-size: clamp(16px, 1.8vw, 19px); color: var(--muted); max-width: 540px; margin: 32px auto 48px; line-height: 1.8; font-weight: 400; }
.hero-nums { display: flex; gap: 56px; margin-top: 72px; padding-top: 80px; border-top: 1px solid var(--border); flex-wrap: wrap; justify-content: center; }
.num-val   { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 36px; letter-spacing: -1px; color: var(--ink); line-height: 1; }
.num-label { font-size: 13px; color: var(--muted); margin-top: 4px; }

/* ── BOTÕES ── */
.btns    { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.btn-dark  { background: var(--ink); color: #fff; padding: 15px 32px; border-radius: var(--radius); font-size: 15px; font-weight: 600; text-decoration: none; transition: background .2s, color .2s; display: inline-flex; align-items: center; gap: 8px; }
.btn-dark:hover  { background: var(--accent); color: var(--ink); }
.btn-ghost { background: transparent; color: var(--text); padding: 14px 30px; border-radius: var(--radius); font-size: 15px; font-weight: 600; text-decoration: none; border: 1.5px solid var(--ink); transition: border-color .2s, color .2s; }
.btn-ghost:hover { border-color: var(--ink-3); color: var(--ink-3); }

/* ── SEÇÕES / CONTAINER ── */
section   { padding: 108px 48px; }
.container { max-width: 1080px; margin: 0 auto; }
.tag {
  display: inline-block;
  background: var(--accent);
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  padding: 4px 14px;
  border-radius: 50px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.tag.inv { background: var(--accent); color: var(--ink); } /* mesma coisa, mantido por compatibilidade */
h2.big { font-size: clamp(36px, 4.5vw, 54px); line-height: 1.05; }

/* ── ESPECIALIDADES ── */
.especialidades { padding: 20px 0; background: #f9f9f9; border-bottom: 1px solid #eee; }
.esp-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--ink-3);
  text-align: center;
  margin-bottom: 16px;
}
.esp-grid  { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.esp-item  { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 12px 20px; background: var(--card); border: 1px solid #eee; border-radius: var(--radius); min-width: 180px; }
.esp-item strong { font-size: 14px; color: #111; margin-bottom: 4px; }
.esp-item span   { font-size: 12px; color: var(--muted); }

/* ── PROBLEMA ── */
.problema { background: var(--ink-3); padding: 108px 48px; }
.problema h2    { color: #fff; margin-bottom: 52px; }
.acc-list  { max-width: 880px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.acc       { background: var(--ink); border-radius: var(--radius); overflow: hidden; cursor: pointer; transition: border-color .25s; }
.acc.open  { border-color: var(--accent); }
.acc-head  { display: flex; align-items: flex-start; gap: 18px; padding: 26px 30px; user-select: none; }
.acc-num   { width: 36px; height: 36px; background: var(--accent); color: var(--ink); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 15px; flex-shrink: 0; margin-top: 2px; }
.acc-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: clamp(18px, 2.2vw, 24px); letter-spacing: -.2px; flex: 1; color: #fff; line-height: 1.15; padding-top: 4px; }
.acc-ico   { font-size: 22px; color: var(--accent); flex-shrink: 0; transition: transform .3s; margin-top: 4px; font-weight: 300; }
.acc.open .acc-ico { transform: rotate(45deg); color: var(--accent-3); }
.acc-body  { display: none; padding: 0 30px 28px 84px; }
.acc.open .acc-body { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.acc-p     { color: var(--subtle); font-size: 15px; line-height: 1.8; }
.acc-p + .acc-p { margin-top: 12px; }
.acc-ul    { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.acc-ul li { color: var(--subtle); font-size: 14px; display: flex; gap: 10px; line-height: 1.55; }
.acc-ul li::before { content: ''; width: 5px; height: 5px; background: var(--accent-3); border-radius: 50%; flex-shrink: 0; margin-top: 8px; }

/* ── SOLUÇÃO ── */
.solucao   { background: var(--bg); }
.sol-grid  { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; margin-top: 52px; }
.sol-p     { font-size: 16.5px; line-height: 1.85; color: var(--muted); margin-bottom: 18px; }
.sol-card  { background: var(--card); border-radius: var(--radius); padding: 32px 34px; }
.feat      { display: flex; gap: 15px; padding: 16px 0; border-bottom: 1px solid var(--border); }
.feat:last-child { border-bottom: none; }
.feat-check svg  { width: 13px; height: 13px; fill: none; stroke: #000; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.feat-title { font-weight: 600; font-size: 15px; margin-bottom: 3px; color: var(--text); }
.feat-sub   { font-size: 13px; color: var(--muted); line-height: 1.55; }

/* ── COMO FUNCIONA ── */
.como      { background: var(--ink-3); padding: 108px 48px; }
.como h2   { color: #fff; text-align: center; margin-bottom: 10px; }
.como-sub  { text-align: center; color: var(--subtle); font-size: 17px; margin-bottom: 60px; }

/* Wizard */
.wiz-steps    { display: flex; align-items: center; gap: 0; margin-bottom: 40px; }
.wiz-step-dot { display: flex; flex-direction: column; align-items: center; gap: 6px; cursor: pointer; flex: 1; }
.wiz-dot      { opacity: .7; width: 36px; height: 36px; border-radius: 50%; background: var(--accent-3); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; color: var(--muted); transition: all .25s; }
.wiz-dot.active,
.wiz-dot.done { opacity: 1; background: var(--accent); color: var(--ink); }
.wiz-dot-label        { opacity: .7; font-size: 10px; color: var(--accent-3); font-weight: 600; letter-spacing: .06em; text-transform: uppercase; transition: color .25s; text-align: center; }
.wiz-dot-label.active,
.wiz-dot-label.done   { opacity: 1; color: var(--accent); }
.wiz-line      { flex: 1; height: 1px; background: #1a2e20; margin-bottom: 18px; transition: background .25s; }
.wiz-line.done { background: var(--accent); }
.wiz-content   { background: var(--ink); border-radius: var(--radius); padding: 32px 36px; min-height: 200px; }
.wiz-tag   { font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #3fbf70; margin-bottom: 12px; }
.wiz-title { font-size: 28px; font-weight: 900; color: #fff; margin-bottom: 16px; line-height: 1.1; font-family: 'Barlow Condensed', sans-serif; }
.wiz-desc  { font-size: 16px; color: var(--subtle); line-height: 1.8; margin-bottom: 20px; }
.wiz-list  { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 28px; }
.wiz-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: var(--subtle); line-height: 1.5; }
.wiz-list li::before { content: ''; width: 5px; height: 5px; background: var(--accent); border-radius: 50%; flex-shrink: 0; margin-top: 7px; }
.wiz-nav   { display: flex; justify-content: space-between; align-items: center; margin-top: 8px; }
.wiz-btn   { border: none; padding: 10px 24px; border-radius: var(--radius); font-size: 13px; font-weight: 600; cursor: pointer; transition: all .2s; font-family: inherit; }
.wiz-btn-prev       { background: transparent; color: var(--ink-3); border: 1.5px solid var(--ink-3); }
.wiz-btn-prev:hover { border-color: var(--accent); color: var(--accent-3); }
.wiz-btn-next       { background: var(--accent-3); color: var(--ink); }
.wiz-btn-next:hover { background: var(--accent); color: var(--ink); }
.wiz-counter { font-size: 12px; color: #a0a0a0; }

/* ── BPM 360 ── */
.d360        { background: var(--bg); min-height: 1220px; }
.s360-badge  { display: inline-block; background: var(--ink); color: #fff; font-size: 11px; font-weight: 700; padding: 4px 14px; border-radius: 50px; text-transform: uppercase; margin-bottom: 24px; }
.s360-coming { display: inline-flex; align-items: center; gap: 6px; background: var(--accent-2); color: var(--ink); font-size: 10px; font-weight: 700; letter-spacing: .08em; padding: 4px 12px; border-radius: 50px; text-transform: uppercase; margin-left: 8px; }
.s360-grid   { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; margin-top: 52px; }
.s360-title  { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: clamp(36px, 4.5vw, 60px); line-height: 1; margin-bottom: 20px; color: var(--ink); }
.s360-title span { background: var(--accent-2); padding: 0 4px; }
.s360-sub    { font-size: 16px; color: #4e5e56; line-height: 1.85; margin-bottom: 14px; }
.s360-price  { display: flex; align-items: baseline; gap: 6px; margin: 28px 0 8px; }
.s360-price-val  { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 48px; color: var(--ink); line-height: 1; }
.s360-price-mes  { font-size: 15px; color: #4e5e56; }
.s360-price-note { font-size: 12px; color: #4e5e56; margin-bottom: 28px; }
.s360-indep  { display: flex; gap: 16px; margin-bottom: 32px; flex-wrap: wrap; }
.s360-pill   { background: var(--accent); border-radius: var(--radius); padding: 6px 14px; font-size: 12px; font-weight: 600; color: var(--ink); }
.s360-right  { background: var(--card); border-radius: var(--radius); padding: 32px 34px; top: 326px; position: relative; z-index: 2; }

/* Feat (reutilizado em sol-card e s360) */
.feat              { display: flex; gap: 15px; padding: 16px 0; border-bottom: 1px solid var(--border); }
.feat:last-child   { border-bottom: none; }
.feat-check        { width: 28px; height: 28px; background: var(--ink); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.feat-check.hl     { background: var(--accent-2); }
.feat-check svg    { width: 13px; height: 13px; fill: none; stroke: #fff; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.feat-check.hl svg { stroke: var(--ink); }
.feat-title        { font-weight: 600; font-size: 15px; margin-bottom: 3px; color: var(--ink); }
.feat-sub          { font-size: 13px; color: #4e5e56; line-height: 1.55; }
.feat-tag          { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--ink); background: var(--accent); padding: 2px 8px; border-radius: 50px; margin-bottom: 5px; }

.s360-more   { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 32px 0; }
.more-card   { background: var(--card); border-radius: var(--radius); padding: 16px 18px; }
.more-title  { font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 4px; }
.more-desc   { font-size: 12px; color: #4a5e56; line-height: 1.5; }

/* ── QUEM FAZ ── */
.quem        { background: var(--card); }
.quem-inner  { display: grid; grid-template-columns: 1fr 40%; gap: 72px; align-items: center; margin-top: 52px; padding: 0 70px; }
.quem-p      { font-size: 16.5px; line-height: 1.85; color: var(--muted); margin-bottom: 16px; }
.quem-p strong { color: var(--text); font-weight: 600; }
.quem-print  { width: 100%; height: auto; border-radius: 12px; display: block; }

/* ── PLANOS ── */
.planos           { background: var(--ink-3); }
.planos .big      { color: var(--card); }
.planos .planos-sub { color: var(--card); margin-top: 28px; }
.planos .planos-note small { color: #9a9a9a !important}
.section-header   { text-align: center; color: var(--card); }
.section-header small { color: var(--muted); }
.wrap             { padding: 2rem 5rem; }
.section-title    { font-size: 13px; font-weight: 700; color: var(--accent); text-transform: uppercase; margin-bottom: 1.5rem; }
.product-card     { background: var(--ink); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; transition: border-color .2s; }
.product-card.selected { border: 1px solid var(--accent); }
.card-header      { display: flex; align-items: flex-start; gap: 12px; padding: 1rem 1.25rem; cursor: pointer; user-select: none; color: var(--card); }
.checkbox         { width: 20px; height: 20px; min-width: 20px; border-radius: 5px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; margin-top: 2px; transition: all .15s; }
.checkbox.checked { background: var(--accent); border-color: var(--accent); }
.checkbox i       { color: var(--ink); font-size: 13px; }
.card-info        { flex: 1; }
.card-top         { display: flex; align-items: flex-start; justify-content: space-between; gap: 8px; flex-wrap: wrap; }
.card-name        { font-size: 15px; font-weight: 600; color: var(--card); }
.badge-new        { font-size: 11px; background: var(--pill-bg); color: var(--pill-text); padding: 2px 8px; border-radius: 20px; font-weight: 500; }
.badge-pop        { font-size: 11px; background: var(--accent-3); color: var(--ink-3); padding: 2px 8px; border-radius: 20px; font-weight: 500; }
.card-desc        { font-size: 15px; color: var(--subtle); margin-bottom: 3px; }
.card-price       { text-align: right; min-width: 120px; }
.price-main       { font-size: 15px; font-weight: 500; color: var(--accent); }
.price-sub        { font-size: 12px; color: var(--subtle); margin-top: 1px; }
.toggle-btn       { background: none; border: 1px solid var(--subtle); cursor: pointer; color: var(--subtle); padding: 5px 10px; display: flex; align-items: center; gap: 4px; font-size: 12px; margin-top: 6px; border-radius: var(--radius); transition: border-color .15s; }
.toggle-btn i     { transition: transform .2s; }
.toggle-btn.open i { transform: rotate(180deg); }
.features-wrap    { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.features-wrap.open { max-height: 600px; }
.features         { padding: 0 1.25rem 1rem 3.3rem; display: flex; flex-direction: column; gap: 5px; }
.features .feat-item { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: var(--subtle); }
.qty-row          { display: flex; align-items: center; gap: 10px; padding: 8px 1.25rem 8px 3.3rem; background: var(--accent); }
.qty-label        { font-size: 13px; color: var(--ink); flex: 1; }
.qty-ctrl         { display: flex; align-items: center; gap: 6px; }
.qty-btn          { width: 26px; height: 26px; border-radius: 6px; border: .5px solid var(--border); background: var(--card); cursor: pointer; font-size: 15px; display: flex; align-items: center; justify-content: center; color: var(--ink); }
.qty-val          { font-size: 14px; font-weight: 500; min-width: 20px; text-align: center; color: var(--text); }
.divider          { height: .5px; background: var(--ink); margin: .3rem 0; }
.total-bar        { background: var(--ink); border-radius: var(--radius); padding: 1rem 1.25rem; margin-bottom: 1.5rem; }
.total-items      { font-size: 16px; color: var(--subtle); margin-bottom: 8px; }
.total-line       { display: flex; justify-content: space-between; font-size: 13px; color: var(--subtle); margin-bottom: 4px; }
.total-main       { display: flex; justify-content: space-between; align-items: baseline; margin-top: 10px; padding-top: 10px; border-top: .5px solid var(--ink-3); }
.total-label      { font-size: 14px; font-weight: 500; color: var(--text); }
.total-value      { font-size: 20px; font-weight: 500; color: var(--accent); }
.total-recur      { font-size: 12px; color: var(--subtle); text-align: right; margin-top: 2px; }
.cta-btn          { width: 100%; padding: 14px; background: var(--accent); color: var(--ink); border: none; border-radius: var(--radius); font-size: 15px; font-weight: 600; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; transition: opacity .15s; }
.cta-btn:hover    { opacity: .88; }
.cta-btn:disabled { opacity: .4; cursor: not-allowed; }
.form-card        { background: var(--card); border: .5px solid var(--border); border-radius: var(--radius); padding: 1.5rem; margin-top: 1.5rem; display: none; }
.form-card.visible { display: block; }
.form-title       { font-size: 16px; font-weight: 500; color: var(--text); margin-bottom: 4px; }
.form-sub         { font-size: 13px; color: var(--muted); margin-bottom: 1.25rem; }
.field            { margin-bottom: 1rem; }
.field label      { display: block; font-size: 13px; color: var(--muted); margin-bottom: 5px; }
.field input      { width: 100%; padding: 9px 12px; border: .5px solid var(--border); border-radius: var(--radius); font-size: 14px; background: var(--card); color: var(--text); }
.field input:focus { outline: none; box-shadow: 0 0 0 2px var(--accent-3); }
.two-col          { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.order-summary    { background: var(--bg-2); border-radius: var(--radius); padding: 1rem; margin-bottom: 1.25rem; font-size: 13px; }
.order-sum-title  { font-weight: 500; font-size: 13px; color: var(--text); margin-bottom: 8px; }
.order-sum-line   { display: flex; justify-content: space-between; color: var(--muted); margin-bottom: 4px; }
.order-sum-total  { display: flex; justify-content: space-between; font-weight: 500; color: var(--text); margin-top: 8px; padding-top: 8px; border-top: .5px solid var(--border); }
.pay-btn          { width: 100%; padding: 14px; background: var(--accent); color: var(--ink); border: none; border-radius: var(--radius); font-size: 15px; font-weight: 600; cursor: pointer; }
.pay-btn:hover    { opacity: .88; }
.asaas-note       { font-size: 12px; color: var(--muted); text-align: center; margin-top: 10px; display: flex; align-items: center; justify-content: center; gap: 5px; }
.notice           { font-size: 12px; color: var(--subtle); padding: 8px 1.25rem 10px 3.3rem; background: var(--ink-2); }

/* ── FAQ ── */
.faq              { background: var(--bg); }
.faq-inner        { display: grid; grid-template-columns: 300px 1fr; gap: 72px; margin-top: 52px; }
.faq-left h2      { font-size: clamp(28px, 3vw, 40px); line-height: 1.15; margin-bottom: 20px; }
.faq-left p       { font-size: 15px; color: var(--muted); line-height: 1.75; }
.faq-left a       { color: var(--ink); text-decoration: none; font-weight: 600; background: var(--accent); }
.faq-items        { display: flex; flex-direction: column; gap: 8px; }
.faq-item         { background: var(--card); border-radius: var(--radius); overflow: hidden; }
.faq-q            { display: flex; align-items: center; justify-content: space-between; padding: 18px 24px; cursor: pointer; font-weight: 500; font-size: 15px; gap: 14px; user-select: none; transition: background .2s; }
.faq-q:hover      { background: var(--bg-3); }
.faq-ico          { font-size: 20px; color: var(--subtle); flex-shrink: 0; transition: transform .3s; font-weight: 300; }
.faq-item.open .faq-ico { transform: rotate(45deg); color: var(--accent); }
.faq-a            { display: none; padding: 0 24px 20px; font-size: 14px; color: var(--muted); line-height: 1.8; }
.faq-item.open .faq-a { display: block; }

/* ── CTA FINAL ── */
.cta-final        { background: var(--ink); text-align: center; padding: 130px 48px; }
.cta-final h2     { color: #fff; font-size: clamp(40px, 5.5vw, 72px); letter-spacing: -.2px; max-width: 740px; margin: 0 auto 20px; line-height: 1.05; }
.cta-final p      { color: var(--subtle); font-size: 18px; max-width: 480px; margin: 0 auto 14px; line-height: 1.8; }
.cta-final .emph  { color: var(--accent); font-weight: 600; font-size: 18px; display: block; margin-bottom: 44px; }
.cta-final .btns  { justify-content: center; }
.cta-final .btn-dark       { background: var(--accent); color: var(--ink); }
.cta-final .btn-dark:hover { background: var(--accent-3); color: var(--ink); }
.cta-final .btn-ghost       { border-color: var(--subtle); color: var(--subtle); }
.cta-final .btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* ── FOOTER ── */
footer            { background: #070c09; padding: 56px 48px 32px; }
.foot-grid        { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
.foot-logo .logo-bpm    { font-size: 28px; color: var(--accent-3); }
.foot-logo .logo-rule   { background: #1a2e20; }
.foot-logo .logo-agency { color: #2a4030; }
.foot-desc        { font-size: 14px; color: var(--subtle); margin-top: 12px; line-height: 1.7; }
.footer-nav-title { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.foot-col a       { font-size: 14px; color: #8fb39e; text-decoration: none; transition: color .2s; display: table; width: 100%; align-items: center; min-height: 44px; padding: 4px 0; }
.foot-col a:hover { color: #fff; }
.foot-bottom      { border-top: 1px solid var(--ink-2); padding-top: 28px; display: flex; justify-content: space-between; font-size: 13px; color: #7a7a7a; }
.foot-bottom a    { color: #7a7a7a; text-decoration: none; font-weight: 600; }
.foot-bottom a:hover { color: #aaa; }

/* ── ANIMAÇÕES ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-pill { animation: fadeUp .6s ease both; }
.hero h1   { animation: fadeUp .6s .1s ease both; }
.hero-sub  { animation: fadeUp .6s .2s ease both; }
.btns      { animation: fadeUp .6s .3s ease both; }
.hero-nums { animation: fadeUp .6s .4s ease both; }

/* ── RESPONSIVO ── */
@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .logo img { margin-bottom: 61px; }
  .hero h1  { letter-spacing: -2px; }

  section, .hero, .problema, .como, .cta-final, footer { padding: 50px 24px; }

  .sol-grid, .quem-inner, .faq-inner, .s360-grid { grid-template-columns: 1fr; }
  .quem-inner  { padding: 0; }
  .foot-grid   { grid-template-columns: 1fr; }
  .port-grid   { grid-template-columns: 1fr; }
  .acc.open .acc-body { grid-template-columns: 1fr; }

  .hero-nums   { gap: 28px; margin-top: 30px; padding-top: 30px; }
  .hero-pill   { margin-top: 35px; }

  .s360-right  { top: 0; position: static; z-index: 0; }
  .s360-grid img { display: none; }
  .s360-indep  { gap: 5px; }
  .s360-pill   { padding: 6px 10px; }

  .wrap        { padding: 0; }
  .divider     { margin: .2rem 0; }
  .section-title { padding-top: 20px; text-align: center; }
  .section-header small { color: #9a9a9a; line-height: 1.25em; }

  footer .container { text-align: center; }
}