:root {
  --bg: #121110;
  --bg-alt: #17140F;
  --bg-footer: #0C0B0A;
  --text-head: #FAF7F2;
  --text-body: #9E9B95;
  --text-muted: #6E6C67;
  --text-label: #8A8782;
  --accent: #F18644;
  --accent-dark: #C96A2E;
  --accent-soft: #FBD9BE;
  --border: rgba(255,255,255,0.12);
  --border-soft: rgba(255,255,255,0.08);
  --card-bg: rgba(255,255,255,0.045);
  --font-head: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text-body);
  font-family: var(--font-body);
  overflow-x: hidden;
}
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-soft); }
::selection { background: var(--accent); color: var(--bg); }
img { max-width: 100%; display: block; }
input, textarea, select { font-family: var(--font-body); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

/* image placeholder (drop your own photo in assets/images and swap the <img> src) */
.image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  background: repeating-linear-gradient(135deg, rgba(255,255,255,0.03) 0 12px, rgba(255,255,255,0.06) 12px 24px);
  border: 1px dashed var(--border);
  border-radius: 4px;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 13px;
}

/* NAV */
.nav {
  position: sticky; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 18px clamp(20px,4vw,48px);
  background: rgba(18,17,16,0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-logo { height: 32px; width: auto; flex-shrink: 0; }
.nav-links { display: flex; align-items: center; gap: clamp(16px,2vw,32px); }
.nav-links a, .mobile-menu a { font-size: 14px; font-weight: 500; color: #C9C6C0; white-space: nowrap; }
.nav-cta {
  font-family: var(--font-mono); font-size: 13px; font-weight: 600; color: var(--bg);
  background: var(--accent); padding: 11px 20px; border-radius: 2px; white-space: nowrap;
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(241,134,68,0.3); background-color: var(--accent-soft); color: var(--bg); }
.nav-burger { display: none; background: none; border: none; padding: 8px; cursor: pointer; flex-direction: column; gap: 5px; }
.nav-burger span { width: 24px; height: 2px; background: var(--text-head); display: block; }
.mobile-menu {
  display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--bg);
  border-bottom: 1px solid var(--border); flex-direction: column; padding: 16px clamp(20px,4vw,48px) 24px; gap: 20px;
}
.mobile-menu.open { display: flex; }
@media (max-width: 1099px) {
  .nav-links, .desktop-only { display: none; }
  .nav-burger { display: flex; }
}

/* HERO */
.hero {
  position: relative; padding: clamp(64px,11vw,100px) clamp(20px,6vw,48px) clamp(56px,10vw,88px);
  overflow: hidden;
  background: radial-gradient(ellipse 900px 600px at 85% -10%, rgba(241,134,68,0.22), transparent 60%), var(--bg);
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .6;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px); background-size: 26px 26px;
}
.hero-glow {
  position: absolute; top: -140px; right: -160px; width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(241,134,68,0.28), transparent 70%); filter: blur(50px); pointer-events: none;
  animation: floatSlow 9s ease-in-out infinite;
}
.hero-swirl {
  position: absolute; top: -40px; right: -60px; width: clamp(260px,40vw,480px); opacity: .14;
  transform: rotate(8deg); pointer-events: none; filter: brightness(6);
}
.hero-inner { position: relative; max-width: 1320px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: clamp(40px,6vw,72px); align-items: center; }
.hero-text { flex: 1 1 480px; min-width: 280px; }
.hero-text h1 { font-family: var(--font-head); font-weight: 700; font-size: clamp(34px,5.6vw,62px); line-height: 1.08; margin: 0 0 28px; color: var(--text-head); }
.hero-text p { font-size: clamp(16px,1.9vw,19px); line-height: 1.65; color: var(--text-body); max-width: 560px; margin: 0 0 40px; }
.hero-ctas { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.btn-primary {
  font-family: var(--font-mono); font-size: 14px; font-weight: 600; color: var(--bg); background: var(--accent);
  padding: 16px 32px; border-radius: 2px; letter-spacing: 0.02em; display: inline-block; border: none; cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(241,134,68,0.35); background-color: var(--accent-soft); color: var(--bg); }
.btn-dark { font-family: var(--font-mono); font-size: 14px; font-weight: 600; color: var(--text-head); background: var(--bg); padding: 18px 36px; border-radius: 2px; display: inline-block; transition: all .25s ease; }
.btn-dark:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(0,0,0,0.4); background-color: #2B2B2A; color: var(--text-head); }
.link-underline { font-size: 15px; font-weight: 500; color: var(--text-head); border-bottom: 1px solid var(--text-head); padding-bottom: 2px; transition: opacity .2s ease; }
.link-underline:hover { opacity: .6; color: var(--text-head); }

.hero-indicators { position: relative; margin-top: clamp(48px,8vw,72px); display: grid; grid-template-columns: repeat(auto-fit,minmax(150px,1fr)); gap: 28px; max-width: 640px; }
.hero-indicators .item { border-top: 1px solid var(--border); padding-top: 18px; }
.hero-indicators .num { font-family: var(--font-head); font-weight: 700; font-size: clamp(26px,3vw,32px); color: var(--text-head); line-height: 1; margin-bottom: 8px; }
.hero-indicators .label { font-size: 13px; line-height: 1.5; color: var(--text-label); }

.hero-esp-card {
  flex: 1 1 380px; min-width: 280px; max-width: 520px; display: block; position: relative; border-radius: 4px; overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,0.45); background: linear-gradient(160deg,#1C1712 0%,#100E0C 100%);
  border: 1px solid rgba(241,134,68,0.3); padding: clamp(32px,4vw,44px); transition: transform .3s ease, border-color .3s ease;
}
.hero-esp-card:hover { transform: translateY(-4px); border-color: var(--accent); }
.hero-esp-card img.deco { position: absolute; bottom: -60px; right: -60px; width: 220px; opacity: .16; filter: brightness(3); pointer-events: none; }
.hero-esp-card h2 { position: relative; font-family: var(--font-head); font-weight: 700; font-size: clamp(26px,3.4vw,34px); margin: 0 0 14px; color: var(--text-head); }
.hero-esp-card p { position: relative; font-size: 15px; line-height: 1.65; color: var(--text-body); margin: 0 0 24px; max-width: 380px; }
.hero-esp-chips { position: relative; display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 8px; }
.hero-esp-chips span { font-family: var(--font-mono); font-size: 11px; color: var(--accent-soft); border: 1px solid rgba(255,255,255,0.18); padding: 7px 12px; border-radius: 2px; }
.hero-esp-cta { position: relative; margin-top: 20px; font-size: 14px; font-weight: 600; color: var(--accent); }

@keyframes floatSlow { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-18px); } }

/* SELF AUTHORITY TEASER */
.section-selfauthority { position: relative; padding: clamp(48px,9vw,72px) clamp(20px,6vw,48px); background: var(--bg); overflow: hidden; }
.section-selfauthority::before { content: ""; position: absolute; top: -120px; left: -120px; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(241,134,68,0.16), transparent 70%); filter: blur(40px); pointer-events: none; }
.selfauthority-inner { max-width: 1200px; margin: 0 auto; position: relative; display: flex; flex-wrap: wrap; gap: clamp(32px,5vw,56px); align-items: center; justify-content: space-between; border-top: 1px solid var(--border); padding-top: clamp(40px,7vw,56px); }
.selfauthority-inner h2 { font-family: var(--font-head); font-weight: 700; font-size: clamp(26px,4vw,36px); margin: 0 0 16px; color: var(--text-head); }
.selfauthority-inner p { font-size: 16px; line-height: 1.7; margin: 0; max-width: 520px; }

/* DUAS FORMAS DE ATUAR */
.section-atuamos { position: relative; padding: clamp(64px,12vw,100px) clamp(20px,6vw,48px); background: var(--bg-alt); }
.atuamos-inner { max-width: 1200px; margin: 0 auto; }
.atuamos-inner h2 { font-family: var(--font-head); font-weight: 700; font-size: clamp(28px,5vw,40px); margin: 0 0 20px; color: var(--text-head); max-width: 680px; }
.atuamos-inner > p { font-size: 17px; line-height: 1.65; margin: 0 0 clamp(40px,7vw,60px); max-width: 640px; }
.atuamos-cards { display: flex; flex-wrap: wrap; gap: 28px; }
.atuamos-card {
  flex: 1 1 380px; min-width: 280px; background: var(--card-bg); border: 1px solid var(--border); border-radius: 4px;
  padding: clamp(28px,4vw,40px); display: block; transition: transform .3s ease, border-color .3s ease, background .3s ease;
}
.atuamos-card:hover { transform: translateY(-4px); border-color: var(--accent); background: rgba(255,255,255,0.07); }
.atuamos-card .tag { font-family: var(--font-mono); font-size: 12px; color: var(--accent); margin-bottom: 14px; }
.atuamos-card h3 { font-family: var(--font-head); font-weight: 700; font-size: clamp(22px,3vw,26px); margin: 0 0 12px; color: var(--text-head); }
.atuamos-card .quote { font-family: var(--font-head); font-weight: 500; font-size: 17px; color: var(--accent); margin: 0 0 16px; }
.atuamos-card p.desc { font-size: 15px; line-height: 1.65; margin: 0; }

/* BANNER DIVISOR */
.banner-divisor { position: relative; height: clamp(240px,32vw,360px); overflow: hidden; }
.banner-divisor .image-placeholder { position: absolute; inset: 0; border-radius: 0; border: none; }
.banner-divisor .scrim { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(18,17,16,0.92) 10%, rgba(18,17,16,0.5) 60%, rgba(18,17,16,0.85)); pointer-events: none; display: flex; align-items: center; }
.banner-divisor .scrim p { max-width: 720px; margin: 0; padding: 0 clamp(24px,8vw,96px); font-family: var(--font-head); font-weight: 600; font-size: clamp(22px,3.6vw,34px); line-height: 1.35; color: var(--text-head); }
.banner-divisor .scrim cite { display: block; font-style: normal; font-family: var(--font-mono); font-size: 14px; font-weight: 600; color: var(--accent); margin-top: 8px; }

/* QUEM CONDUZ */
.section-quem { padding: clamp(72px,14vw,120px) clamp(20px,6vw,48px); max-width: 1200px; margin: 0 auto; }
.quem-wrap { display: flex; flex-wrap: wrap; gap: clamp(40px,6vw,80px); align-items: center; margin-bottom: clamp(56px,9vw,88px); }
.quem-photo { flex: 1 1 380px; min-width: 280px; border-radius: 4px; overflow: hidden; }
.quem-photo img { width: 100%; height: clamp(320px,42vw,560px); object-fit: cover; object-position: top; filter: grayscale(.2) contrast(1.05); transition: transform .7s cubic-bezier(0.16,1,0.3,1); }
.quem-photo:hover img { transform: scale(1.05); }
.quem-text { flex: 1 1 420px; min-width: 280px; }
.quem-text h2 { font-family: var(--font-head); font-weight: 700; font-size: clamp(30px,4.5vw,40px); margin: 0 0 8px; color: var(--text-head); }
.quem-text .role { font-family: var(--font-mono); font-size: 13px; color: var(--text-label); margin-bottom: 28px; }
.quem-text p { font-size: 18px; line-height: 1.7; margin: 0 0 20px; }
.quem-text blockquote { margin: 0 0 20px; padding: 24px 0 0; border-top: 1px solid var(--border); font-family: var(--font-head); font-size: clamp(19px,2.6vw,24px); font-weight: 600; line-height: 1.4; color: var(--accent); }
.celi-card { border: 1px solid var(--border); border-radius: 4px; padding: clamp(28px,4vw,44px); background: var(--card-bg); }
.celi-card h3 { font-family: var(--font-head); font-weight: 700; font-size: clamp(22px,3vw,26px); margin: 0 0 6px; color: var(--text-head); }
.celi-card .role { font-family: var(--font-mono); font-size: 13px; color: var(--text-label); margin-bottom: 20px; }
.celi-card p { font-size: 16px; line-height: 1.7; margin: 0; max-width: 760px; }

/* OPERAÇÃO */
.section-operacao { position: relative; padding: clamp(72px,14vw,120px) clamp(20px,6vw,48px); background: var(--bg-alt); }
.operacao-inner { max-width: 1100px; margin: 0 auto; position: relative; }
.operacao-inner > .eyebrow, .operacao-inner > h2, .operacao-inner > p.intro { }
.operacao-inner h2 { font-family: var(--font-head); font-weight: 700; font-size: clamp(28px,5vw,40px); margin: 0 0 20px; color: var(--text-head); }
.operacao-inner p.intro { font-size: 17px; line-height: 1.65; margin: 0 0 clamp(40px,7vw,64px); max-width: 680px; }
.vertical-row { display: flex; flex-wrap: wrap; gap: 8px 32px; padding: 32px 24px; margin: 0 -24px; border-top: 1px solid var(--border); align-items: baseline; transition: background .3s ease; border-radius: 2px; }
.vertical-row:hover { background: rgba(255,255,255,0.04); }
.vertical-row.last { border-bottom: 1px solid var(--border); }
.vertical-row.highlight { background: rgba(241,134,68,0.08); }
.vertical-num { font-family: var(--font-mono); font-size: 15px; font-weight: 600; color: var(--accent); flex: 0 0 auto; }
.vertical-body { flex: 1 1 460px; }
.vertical-body h3 { font-family: var(--font-head); font-weight: 600; font-size: clamp(19px,2.6vw,22px); margin: 0 0 8px; color: var(--text-head); display: inline; }
.vertical-badge { font-family: var(--font-mono); font-size: 11px; font-weight: 600; color: var(--bg); background: var(--accent); padding: 3px 10px; border-radius: 2px; margin-left: 10px; vertical-align: middle; }
.vertical-body .quote { font-family: var(--font-head); font-weight: 500; font-size: 15px; color: var(--accent); margin: 8px 0 12px; }
.vertical-body .desc { font-size: 15px; line-height: 1.65; margin: 0 0 10px; max-width: 640px; }
.vertical-body .tags { font-family: var(--font-mono); font-size: 12px; color: var(--text-muted); margin: 0; }

.stoploss-box { margin-top: clamp(56px,9vw,80px); padding: clamp(32px,5vw,48px); background: var(--bg); border: 1px solid var(--border); border-radius: 4px; }
.stoploss-box h3 { font-family: var(--font-head); font-weight: 700; font-size: clamp(22px,3.2vw,28px); margin: 0 0 12px; color: var(--text-head); }
.stoploss-box .quote { font-family: var(--font-head); font-weight: 500; font-size: 17px; color: var(--accent); margin: 0 0 24px; }
.stoploss-box > p { font-size: 16px; line-height: 1.7; margin: 0 0 32px; max-width: 700px; }
.stoploss-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: 20px; }
.stoploss-grid div { border-top: 1px solid var(--border); padding-top: 16px; font-size: 15px; color: var(--accent-soft); line-height: 1.6; }

/* CONSELHEIRO */
.section-conselheiro { position: relative; padding: clamp(72px,14vw,120px) clamp(20px,6vw,48px); background: var(--bg); }
.section-conselheiro::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px); background-size: 28px 28px; pointer-events: none; }
.conselheiro-inner { max-width: 1100px; margin: 0 auto; position: relative; }
.conselheiro-inner h2 { font-family: var(--font-head); font-weight: 700; font-size: clamp(28px,5vw,40px); margin: 0 0 20px; color: var(--text-head); }
.conselheiro-inner > p.intro { font-size: 17px; line-height: 1.65; margin: 0 0 12px; max-width: 700px; }
.conselheiro-inner blockquote { margin: 24px 0 clamp(40px,7vw,64px); padding: 20px 0 0; border-top: 1px solid var(--border); font-family: var(--font-head); font-size: 20px; font-weight: 600; line-height: 1.4; color: var(--accent); max-width: 640px; }
.lentes-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 24px; margin-bottom: clamp(56px,9vw,80px); }
.lente-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: 4px; padding: 28px; }
.lente-card .tag { font-family: var(--font-mono); font-size: 12px; color: var(--accent); margin-bottom: 10px; }
.lente-card .quote { font-family: var(--font-head); font-weight: 500; font-size: 16px; color: var(--text-head); margin: 0 0 12px; font-style: italic; }
.lente-card p { font-size: 14px; line-height: 1.6; margin: 0 0 10px; }
.lente-card .question { color: var(--text-muted); margin: 0; }
.conselheiro-inner h3 { font-family: var(--font-head); font-weight: 700; font-size: clamp(22px,3.2vw,26px); margin: 0 0 8px; color: var(--text-head); }
.conselheiro-inner > p.como-contratar-intro { font-size: 16px; line-height: 1.6; margin: 0 0 32px; max-width: 640px; }
.planos { display: flex; flex-wrap: wrap; gap: 24px; margin-bottom: 24px; }
.plano-card { flex: 1 1 380px; min-width: 280px; background: var(--card-bg); border: 1px solid var(--border); border-radius: 4px; padding: clamp(24px,3.5vw,36px); }
.plano-card.destaque { background: linear-gradient(160deg,#F18644,#C96A2E); border: none; }
.plano-card .tag { font-family: var(--font-mono); font-size: 12px; color: var(--accent); margin-bottom: 10px; }
.plano-card.destaque .tag { color: #1A1310; font-weight: 600; }
.plano-card p { font-size: 15px; line-height: 1.65; margin: 0 0 16px; }
.plano-card.destaque p { color: #1A1310; }
.plano-card ul { margin: 0; padding-left: 18px; font-size: 14px; line-height: 1.9; }
.plano-card.destaque ul { color: #1A1310; }
.aplicacao-note { font-size: 14px; line-height: 1.6; color: var(--text-muted); margin: 0; }

/* INTELIGÊNCIA ESPIRITUAL */
.section-esp { position: relative; background: linear-gradient(160deg,#1C1712 0%,#100E0C 100%); padding: clamp(72px,14vw,120px) clamp(20px,6vw,48px); overflow: hidden; }
.esp-swirl { position: absolute; bottom: -100px; left: -100px; width: clamp(240px,42vw,520px); opacity: .08; transform: rotate(-12deg); filter: brightness(3); pointer-events: none; }
.esp-inner { position: relative; max-width: 1200px; margin: 0 auto; }
.esp-badge { font-family: var(--font-mono); font-size: 13px; font-weight: 600; letter-spacing: 0.1em; color: var(--accent); margin-bottom: 24px; }
.esp-grid { display: flex; flex-wrap: wrap; gap: clamp(40px,6vw,80px); align-items: start; }
.esp-text { flex: 1 1 480px; min-width: 280px; }
.esp-text h2 { font-family: var(--font-head); font-weight: 700; font-size: clamp(30px,5vw,44px); margin: 0 0 16px; color: var(--text-head); }
.esp-role { font-family: var(--font-mono); font-size: 14px; color: var(--text-body); margin: 0 0 40px; }
.esp-text p.body { font-size: 18px; line-height: 1.7; margin: 0 0 24px; }
.esp-chips { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 56px; }
.esp-chip { font-family: var(--font-mono); font-size: 12px; color: var(--accent-soft); border: 1px solid rgba(255,255,255,0.18); padding: 9px 16px; border-radius: 2px; transition: border-color .25s ease; }
.esp-chip:hover { border-color: var(--accent); }
.esp-offer { display: flex; flex-wrap: wrap; gap: 8px 24px; padding: 24px 0; border-top: 1px solid rgba(255,255,255,0.15); }
.esp-offer:last-child { border-bottom: 1px solid rgba(255,255,255,0.15); }
.esp-offer-label { font-family: var(--font-mono); font-size: 12px; color: var(--accent); letter-spacing: 0.05em; flex: 0 0 100px; }
.esp-offer-body { flex: 1 1 300px; }
.esp-offer-body .name { font-family: var(--font-head); font-weight: 600; font-size: 17px; color: var(--text-head); margin-bottom: 6px; }
.esp-offer-body .desc { font-size: 15px; line-height: 1.6; }
.esp-philosophy { margin: 44px 0 0; padding: 28px 0 0 28px; border-left: 2px solid var(--accent); }
.esp-philosophy .lead { font-family: var(--font-head); font-size: clamp(19px,2.4vw,23px); font-weight: 500; line-height: 1.5; color: var(--text-head); }
.esp-philosophy .attr { margin-top: 14px; font-family: var(--font-mono); font-size: 13px; font-weight: 600; color: var(--text-body); }
.esp-photo { overflow: hidden; flex: 1 1 320px; min-width: 260px; border-radius: 4px; }
.esp-photo img { width: 100%; height: clamp(360px,42vw,640px); object-fit: cover; object-position: top; transition: transform .7s cubic-bezier(0.16,1,0.3,1); }
.esp-photo:hover img { transform: scale(1.05); }

/* STATS */
.section-stats { padding: clamp(72px,14vw,120px) clamp(20px,6vw,48px); max-width: 1200px; margin: 0 auto; }
.section-stats h2 { font-family: var(--font-head); font-weight: 700; font-size: clamp(26px,4.5vw,36px); margin: 0 0 clamp(40px,8vw,64px); color: var(--text-head); max-width: 640px; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 40px; }
.stat { border-top: 1px solid var(--border); padding-top: 28px; transition: border-color .3s ease; }
.stat:hover { border-color: var(--accent); }
.stat .num { font-family: var(--font-head); font-weight: 700; font-size: clamp(40px,5.5vw,56px); color: var(--accent); line-height: 1; margin-bottom: 16px; }
.stat.wide .num { font-size: clamp(32px,4.2vw,44px); }
.stat .label { font-size: 16px; line-height: 1.6; }

/* CTA FINAL */
.section-cta { background: linear-gradient(135deg,#F18644 0%,#C96A2E 100%); padding: clamp(64px,12vw,100px) clamp(20px,6vw,48px); }
.cta-inner { max-width: 900px; margin: 0 auto; }
.cta-inner h2 { font-family: var(--font-head); font-weight: 700; font-size: clamp(28px,5vw,42px); margin: 0 0 24px; color: #1A1310; }
.cta-inner p { font-size: clamp(16px,2.2vw,19px); line-height: 1.6; color: #1A1310; opacity: .85; margin: 0 0 40px; max-width: 640px; }

/* FAQ */
.section-faq { padding: clamp(56px,10vw,88px) clamp(20px,6vw,48px); max-width: 900px; margin: 0 auto; }
.faq-item { padding: 24px 0; border-top: 1px solid var(--border); }
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-item .q { font-family: var(--font-head); font-weight: 600; font-size: 18px; color: var(--text-head); margin-bottom: 8px; }
.faq-item .a { font-size: 16px; line-height: 1.6; }

/* CONTATO */
.section-contato { padding: clamp(72px,14vw,120px) clamp(20px,6vw,48px); max-width: 1200px; margin: 0 auto; }
.contato-grid { display: flex; flex-wrap: wrap; gap: clamp(40px,6vw,80px); }
.contato-info { flex: 1 1 360px; min-width: 280px; }
.contato-info h2 { font-family: var(--font-head); font-weight: 700; font-size: clamp(26px,4.5vw,36px); margin: 0 0 32px; color: var(--text-head); }
.contato-info > p { font-size: 16px; line-height: 1.7; margin: 0 0 40px; max-width: 400px; }
.contact-item { border-top: 1px solid var(--border); padding-top: 24px; margin-bottom: 20px; }
.contact-item .label { font-family: var(--font-mono); font-size: 12px; color: var(--text-label); margin-bottom: 6px; }
.contact-item a { font-size: 17px; color: var(--text-head); font-weight: 500; }
.contact-form { display: flex; flex-direction: column; gap: 28px; flex: 1 1 380px; min-width: 280px; }
.form-row { display: flex; flex-wrap: wrap; gap: 24px; }
.field { display: flex; flex-direction: column; gap: 8px; flex: 1 1 200px; }
.field span { font-family: var(--font-mono); font-size: 12px; color: var(--text-label); }
.field input, .field textarea, .field select {
  border: none; border-bottom: 1px solid rgba(255,255,255,0.25); background: transparent; padding: 8px 0;
  font-size: 16px; color: var(--text-head); outline: none; transition: border-color .25s ease;
}
.field select { background: var(--bg); }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--accent); }
.btn-submit {
  align-self: flex-start; font-family: var(--font-mono); font-size: 14px; font-weight: 600; color: var(--bg);
  background: var(--accent); padding: 16px 32px; border: none; border-radius: 2px; cursor: pointer; margin-top: 8px;
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(241,134,68,0.3); background-color: var(--accent-soft); }
.form-message { display: none; font-size: 14px; color: var(--accent); }
.form-message.show { display: block; }

/* FOOTER */
.footer { background: var(--bg-footer); padding: clamp(48px,10vw,64px) clamp(20px,6vw,48px) 40px; border-top: 1px solid var(--border-soft); }
.footer-top { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 40px; }
.footer-logo { height: 30px; width: auto; margin-bottom: 16px; }
.footer-desc { font-size: 14px; color: var(--text-label); max-width: 320px; line-height: 1.6; margin-bottom: 16px; }
.footer-social-note { font-size: 13px; color: var(--text-muted); max-width: 320px; line-height: 1.6; }
.footer-cols { display: flex; gap: 64px; flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col-title { font-family: var(--font-mono); font-size: 12px; color: var(--text-muted); margin-bottom: 4px; }
.footer-col a { font-size: 14px; color: var(--text-body); }
.footer-bottom { max-width: 1200px; margin: 56px auto 0; padding-top: 24px; border-top: 1px solid var(--border-soft); font-size: 13px; color: var(--text-muted); }

/* FLOATING WHATSAPP */
.floating-whatsapp {
  position: fixed; bottom: 28px; right: 28px; width: 58px; height: 58px; border-radius: 50%; background: var(--accent);
  display: flex; align-items: center; justify-content: center; z-index: 60; animation: pulseRing 2.4s infinite; transition: transform .25s ease;
}
.floating-whatsapp:hover { transform: scale(1.1); }
@keyframes pulseRing { 0% { box-shadow: 0 0 0 0 rgba(241,134,68,0.45); } 70% { box-shadow: 0 0 0 14px rgba(241,134,68,0); } 100% { box-shadow: 0 0 0 0 rgba(241,134,68,0); } }

/* Reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s cubic-bezier(0.16,1,0.3,1), transform .8s cubic-bezier(0.16,1,0.3,1); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* SELF AUTHORITY PAGE specifics */
.sa-nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 18px clamp(20px,4vw,48px); max-width: 1400px; margin: 0 auto; border-bottom: 1px solid var(--border-soft); }
.sa-hero { position: relative; padding: clamp(64px,11vw,100px) clamp(20px,6vw,48px) clamp(72px,12vw,110px); overflow: hidden; background: radial-gradient(ellipse 900px 600px at 50% -10%, rgba(241,134,68,0.16), transparent 60%), var(--bg); text-align: center; }
.sa-hero::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px); background-size: 26px 26px; opacity: .5; pointer-events: none; }
.sa-hero-inner { position: relative; max-width: 920px; margin: 0 auto; }
.sa-hero-inner h1 { font-family: var(--font-head); font-weight: 700; font-size: clamp(30px,5.2vw,54px); line-height: 1.16; margin: 0 0 32px; color: var(--text-head); }
.sa-hero-inner > p { font-size: clamp(17px,2vw,20px); line-height: 1.65; max-width: 620px; margin: 0 auto 48px; }
.sa-section { padding: clamp(56px,10vw,88px) clamp(20px,6vw,48px); border-top: 1px solid var(--border-soft); text-align: center; }
.sa-section-alt { background: var(--bg-alt); }
.sa-section .inner { max-width: 760px; margin: 0 auto; }
.sa-section h2, .sa-section .headline { font-family: var(--font-head); font-weight: 600; font-size: clamp(22px,3.2vw,28px); line-height: 1.5; color: var(--text-head); margin: 0 0 28px; }
.sa-manifesto blockquote { margin: 0; padding: 0; font-family: var(--font-head); font-weight: 500; font-style: italic; font-size: clamp(20px,2.6vw,26px); line-height: 1.8; color: var(--accent-soft); }
.sa-manifesto .note { margin: 56px 0 0; font-size: 14px; line-height: 1.7; color: var(--text-muted); font-family: var(--font-mono); }
.sa-modelo { padding: clamp(72px,13vw,120px) clamp(20px,6vw,48px); }
.sa-modelo-inner { max-width: 1100px; margin: 0 auto; }
.sa-modelo h2 { text-align: center; font-family: var(--font-head); font-weight: 700; font-size: clamp(26px,4vw,36px); margin: 0 0 clamp(48px,8vw,72px); color: var(--text-head); }
.sa-compare { display: flex; flex-wrap: wrap; gap: 2px; background: var(--border); border-radius: 4px; overflow: hidden; }
.sa-compare-col { flex: 1 1 380px; min-width: 280px; padding: clamp(32px,4vw,44px); background: var(--bg-alt); }
.sa-compare-col.destaque { background: linear-gradient(160deg,#F18644,#C96A2E); }
.sa-compare-col .tag { font-family: var(--font-mono); font-size: 12px; color: var(--text-muted); margin-bottom: 20px; }
.sa-compare-col.destaque .tag { color: #1A1310; font-weight: 600; }
.sa-compare-col ul { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 18px; }
.sa-compare-col li { font-size: 15px; line-height: 1.6; color: var(--text-label); border-top: 1px solid var(--border); padding-top: 18px; }
.sa-compare-col.destaque li { color: #1A1310; border-top: 1px solid rgba(26,19,16,0.2); }
.sa-fases { padding: clamp(72px,13vw,120px) clamp(20px,6vw,48px); background: var(--bg-alt); }
.sa-fases-inner { max-width: 1200px; margin: 0 auto; }
.sa-fases h2 { text-align: center; font-family: var(--font-head); font-weight: 700; font-size: clamp(26px,4vw,36px); margin: 0 0 clamp(48px,8vw,72px); color: var(--text-head); }
.sa-fases-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: 1px; background: var(--border); border-radius: 4px; overflow: hidden; }
.sa-fase-card { background: var(--bg); padding: clamp(28px,3.5vw,36px); }
.sa-fase-card .num { font-family: var(--font-head); font-weight: 700; font-size: 32px; color: var(--accent); margin-bottom: 20px; }
.sa-fase-card h3 { font-family: var(--font-head); font-weight: 600; font-size: 18px; margin: 0 0 12px; color: var(--text-head); }
.sa-fase-card p { font-size: 14px; line-height: 1.65; margin: 0; color: var(--text-label); }
.sa-cta { background: linear-gradient(135deg,#F18644 0%,#C96A2E 100%); padding: clamp(64px,12vw,100px) clamp(20px,6vw,48px); text-align: center; }
.sa-cta-inner { max-width: 760px; margin: 0 auto; }
.sa-cta-inner h2 { font-family: var(--font-head); font-weight: 700; font-size: clamp(24px,4vw,36px); line-height: 1.35; margin: 0 0 40px; color: #1A1310; }
.sa-footer { padding: 32px clamp(20px,6vw,48px) 40px; border-top: 1px solid var(--border-soft); text-align: center; background: var(--bg-footer); }
.sa-footer p { font-family: var(--font-mono); font-size: 12px; color: var(--text-muted); }
