/* ============================================
   BOLSA MAIS BRASIL × ANHANGUERA
   Primary: rgb(249,77,18) = #F94D12
   ============================================ */

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

:root {
  --brand:     #F94D12;
  --brand-dk:  #d93d08;
  --brand-bg:  #fff4f0;

  --ink:    #0f0f0f;
  --ink-80: #1c1c1c;
  --ink-60: #4d4d4d;
  --ink-40: #7a7a7a;
  --ink-20: #b8b8b8;
  --ink-10: #e8e8e8;
  --ink-06: #f2f2f2;

  --green:    #16a34a;
  --green-bg: #dcfce7;

  --white: #ffffff;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --r-xs: 6px;
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 28px;

  --sh:    0 1px 12px rgba(0,0,0,.06);
  --sh-md: 0 4px 24px rgba(0,0,0,.09);
  --sh-lg: 0 16px 56px rgba(0,0,0,.14);

  --t: .22s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ---- UTILS ---- */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ---- ANIMATIONS ---- */
@keyframes fadeUp {
  from { opacity:0; transform:translateY(24px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes blink {
  0%,100% { opacity:1; } 50% { opacity:.3; }
}
@keyframes pulseBrand {
  0%,100% { box-shadow:0 0 0 0 rgba(249,77,18,.45); }
  60%      { box-shadow:0 0 0 12px rgba(249,77,18,0); }
}
@keyframes triDrift {
  0%,100% { transform:translateY(0) rotate(0); }
  50%      { transform:translateY(-16px) rotate(4deg); }
}

.animate-fade-up {
  animation: fadeUp .55s ease both;
  animation-delay: var(--delay,0s);
  animation-play-state: paused;
}

/* ---- SECTION COMMONS ---- */
.section-header { text-align:center; margin-bottom:48px; }

.section-tag {
  display:inline-block;
  background:var(--brand-bg); color:var(--brand);
  font-size:11px; font-weight:700;
  letter-spacing:.1em; text-transform:uppercase;
  padding:5px 14px; border-radius:100px;
  margin-bottom:12px;
}
.section-tag-light {
  background:rgba(255,255,255,.1); color:rgba(255,255,255,.7);
}

.section-header h2 {
  font-size:clamp(26px,4vw,38px);
  font-weight:900; line-height:1.15; letter-spacing:-.02em;
  margin-bottom:12px;
}
.section-header p {
  font-size:16px; color:var(--ink-60);
  max-width:500px; margin:0 auto;
}

/* ---- BUTTONS ---- */
.btn {
  display:inline-flex; align-items:center; gap:8px;
  padding:13px 26px; border-radius:100px;
  font-family:var(--font); font-size:15px; font-weight:700;
  text-decoration:none; cursor:pointer; border:none;
  transition:all var(--t); white-space:nowrap;
}
.btn-primary { background:var(--brand); color:var(--white); }
.btn-primary:hover { background:var(--brand-dk); transform:translateY(-2px); box-shadow:0 8px 24px rgba(249,77,18,.35); }
.btn-md  { padding:14px 30px; font-size:15px; }
.btn-sm  { padding:9px 18px; font-size:13px; }

/* ---- HEADER ---- */
.header {
  position:fixed; top:0; left:0; right:0; z-index:1000;
  background:rgba(255,255,255,.97);
  backdrop-filter:blur(14px);
  border-bottom:1px solid var(--ink-10);
  transition:box-shadow var(--t);
}
.header.scrolled { box-shadow:0 2px 18px rgba(0,0,0,.09); }

.header-inner {
  display:flex; align-items:center; justify-content:space-between;
  height:64px; gap:20px;
}

.header-brand {
  display:flex; align-items:center; gap:20px; flex-shrink:0;
}

/* ── Logo group (novo header) ── */
.header-logos {
  display:flex; align-items:center; gap:12px; flex-shrink:0;
}
.header-logo-sep {
  width:1px; height:26px; background:var(--ink-10);
}
.header-bmb-logo-img { height:34px; width:auto; }
.header-anh-logo     { height:32px; width:auto; }

.logo { display:flex; align-items:center; gap:10px; text-decoration:none; }
.logo-tri { flex-shrink:0; }
.logo-text { display:flex; flex-direction:column; line-height:1.2; }
.logo-name { font-size:15px; font-weight:800; color:var(--ink); }
.logo-tag  { font-size:10px; color:var(--ink-40); font-weight:500; }

.header-parceiro {
  display:flex; align-items:center; gap:8px;
  padding-left:20px;
  border-left:1px solid var(--ink-10);
}
.parceiro-label {
  font-size:10px; font-weight:600; text-transform:uppercase;
  letter-spacing:.08em; color:var(--ink-40);
}
.header-bmb-logo { height:36px; width:auto; }

@media (max-width:680px) {
  .header-logos { gap:8px; }
  .header-logo-sep { height:20px; }
  .header-bmb-logo-img { height:28px; }
  .header-anh-logo { height:24px; }
}

.header-nav { display:flex; gap:2px; }
.header-nav a {
  padding:7px 13px; font-size:14px; font-weight:500;
  color:var(--ink-60); text-decoration:none; border-radius:var(--r-xs);
  transition:all var(--t);
}
.header-nav a:hover { color:var(--ink); background:var(--ink-06); }

/* ---- HERO ---- */
.hero {
  background:var(--ink-80);
  padding:96px 0 0;
  position:relative; overflow:hidden;
}

/* Triângulos decorativos — motivo Anhanguera */
.hero-bg-shape {
  position:absolute; inset:0; pointer-events:none;
  overflow:hidden;
}
.hero-bg-shape::before {
  content:'';
  position:absolute;
  top:-100px; right:-80px;
  width:0; height:0;
  border-left:280px solid transparent;
  border-right:280px solid transparent;
  border-bottom:480px solid var(--brand);
  opacity:.07;
  animation:triDrift 10s ease-in-out infinite;
}
.hero-bg-shape::after {
  content:'';
  position:absolute;
  top:60px; right:100px;
  width:0; height:0;
  border-left:130px solid transparent;
  border-right:130px solid transparent;
  border-bottom:225px solid rgba(255,255,255,.04);
  animation:triDrift 14s ease-in-out infinite reverse;
}

.hero-grid {
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(390px,440px);
  gap:44px;
  align-items:flex-start;
  padding-bottom:44px;
}

/* Hero copy */
.hero-copy { position:relative; z-index:1; max-width:640px; }

.hero-badge {
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  color:rgba(255,255,255,.8);
  font-size:12px; font-weight:600;
  padding:7px 16px; border-radius:100px;
  margin-bottom:22px;
}
.badge-live {
  width:7px; height:7px; border-radius:50%;
  background:#4ade80;
  animation:blink 1.5s ease infinite;
}

.hero-copy h1 {
  font-size:clamp(34px,5vw,58px);
  font-weight:900; line-height:1.08;
  color:var(--white);
  letter-spacing:-.03em;
  margin-bottom:18px;
}

.hero-accent {
  color:var(--brand);
  font-style:normal;
}

.hero-sub {
  font-size:17px; color:rgba(255,255,255,.65);
  line-height:1.65; margin-bottom:22px;
}

.hero-checks {
  list-style:none;
  display:flex; flex-direction:column; gap:8px;
  margin-bottom:24px;
}
.hero-checks li {
  display:flex; align-items:center; gap:10px;
  font-size:15px; color:rgba(255,255,255,.82); font-weight:500;
}
.chk { flex-shrink:0; }

.hero-stats {
  display:flex;
  flex-wrap:nowrap;
  justify-content:flex-start;
  align-items:stretch;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.08);
  border-radius:var(--r-md);
  padding:4px 8px;
  width:fit-content;
  max-width:100%;
  margin:0;
  overflow:hidden;
}
.hst {
  position:relative;
  display:grid;
  grid-template-rows:12px auto 18px;
  align-content:center;
  justify-items:center;
  text-align:center;
  flex:0 0 auto;
  min-width:100px;
  padding:8px 18px;
}
.hst:not(:last-child)::after {
  content:'';
  position:absolute;
  right:0;
  top:12px;
  bottom:12px;
  width:1px;
  background:rgba(255,255,255,.12);
}
.hst-value {
  font-size:clamp(28px,2.2vw,44px);
  font-weight:900;
  color:var(--white);
  line-height:1;
  letter-spacing:-.02em;
  white-space:nowrap;
}
.hst-top,
.hst-bottom {
  font-size:8px;
  color:rgba(255,255,255,.52);
  line-height:1.1;
  white-space:nowrap;
}
.hst-top-empty {
  visibility:hidden;
}

/* Hero form wrap */
.hero-form-wrap { position:relative; z-index:1; }

.form-card {
  background:var(--white);
  border-radius:var(--r-xl);
  overflow:hidden;
  box-shadow:0 20px 52px rgba(0,0,0,.24);
}

.form-card-top {
  background:var(--brand);
  padding:20px 24px;
}
.form-card-top h2 {
  font-size:20px; font-weight:800; color:var(--white);
  letter-spacing:-.01em; margin-bottom:3px;
}
.form-card-top p { font-size:13px; color:rgba(255,255,255,.75); }

.main-form {
  padding:20px 24px;
  display:flex; flex-direction:column; gap:14px;
}

.fgroup { display:flex; flex-direction:column; gap:4px; }
.frow {
  display:grid;
  grid-template-columns:1fr 90px;
  grid-template-areas:
    "cidade uf"
    "curso curso";
  gap:10px;
}
.fgroup-cidade { grid-area:cidade; }
.fgroup-uf { grid-area:uf; }
.fgroup-curso { grid-area:curso; }

.fgroup label {
  font-size:11px; font-weight:700; color:var(--ink-60);
  text-transform:uppercase; letter-spacing:.06em;
}

.fgroup input,
.fgroup select {
  width:100%; padding:11px 13px;
  border:1.5px solid var(--ink-10); border-radius:var(--r-sm);
  font-family:var(--font); font-size:14px; color:var(--ink);
  background:var(--white); outline:none;
  appearance:none; -webkit-appearance:none;
  transition:border-color var(--t), box-shadow var(--t);
}
.fgroup select {
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%237a7a7a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:right 11px center;
  padding-right:30px; cursor:pointer;
}
.fgroup input:focus,
.fgroup select:focus {
  border-color:var(--brand);
  box-shadow:0 0 0 3px rgba(249,77,18,.13);
}
.fgroup input::placeholder { color:var(--ink-20); }
.fgroup.has-error input,
.fgroup.has-error select {
  border-color:#dc2626;
  box-shadow:0 0 0 3px rgba(220,38,38,.12);
}
.ferror {
  font-size:12px;
  color:#b42318;
  line-height:1.25;
  min-height:15px;
}

.btn-submit {
  display:flex; align-items:center; justify-content:center; gap:8px;
  width:100%; padding:15px;
  background:var(--brand); color:var(--white);
  border:none; border-radius:var(--r-sm);
  font-family:var(--font); font-size:16px; font-weight:700;
  cursor:pointer; transition:all var(--t);
  animation:pulseBrand 2.5s infinite;
}
.btn-submit:hover { background:var(--brand-dk); transform:translateY(-2px); }
.btn-submit:disabled { opacity:.7; transform:none; cursor:not-allowed; }

.form-note {
  display:flex; align-items:center; justify-content:center; gap:5px;
  font-size:11px; color:var(--ink-40); text-align:center;
}

/* Form success */
.form-success { padding:40px 28px; text-align:center; }
.success-icon { margin-bottom:16px; }
.form-success h3 { font-size:20px; font-weight:800; color:var(--ink); margin-bottom:10px; }
.form-success p  { font-size:14px; color:var(--ink-60); line-height:1.7; }

/* Hero trust bar */
.hero-trust {
  display:flex; align-items:center; justify-content:center; gap:16px;
  border-top:1px solid rgba(255,255,255,.08);
  padding:14px 0;
  flex-wrap:wrap;
}
.trust-label { font-size:12px; color:rgba(255,255,255,.4); font-weight:500; }
.trust-logo  { height:22px; width:auto; opacity:.6; }
.trust-sep   { color:rgba(255,255,255,.2); }
.trust-certif {
  display:flex; align-items:center; gap:6px;
  font-size:12px; font-weight:600; color:rgba(255,255,255,.55);
}

/* ---- SEM RENOVAÇÃO ---- */
.sem-renovacao { padding:96px 0; background:var(--ink-06); }

.sr-inner {
  max-width:860px; margin:0 auto;
  display:flex; flex-direction:column; align-items:center;
  text-align:center; gap:32px;
}

.sr-label {
  font-size:11px; font-weight:700; text-transform:uppercase;
  letter-spacing:.1em; color:var(--brand);
}

.sr-inner h2 {
  font-size:clamp(26px,4vw,40px);
  font-weight:900; line-height:1.15; letter-spacing:-.02em;
  color:var(--ink);
}

.sr-inner p {
  font-size:17px; color:var(--ink-60); line-height:1.75;
  max-width:680px;
}

.sr-compare {
  display:flex; align-items:stretch; gap:20px; width:100%;
  flex-wrap:wrap; justify-content:center;
}

.sr-col {
  flex:1; min-width:260px;
  border-radius:var(--r-md); padding:28px 24px;
  text-align:left;
}
.sr-col.bad  { background:white; border:1.5px solid #fecaca; }
.sr-col.good { background:white; border:1.5px solid var(--brand); }

.src-title {
  font-size:12px; font-weight:700; text-transform:uppercase;
  letter-spacing:.08em; margin-bottom:16px;
}
.sr-col.bad  .src-title { color:#dc2626; }
.sr-col.good .src-title { color:var(--brand); }

.sr-col ul { list-style:none; display:flex; flex-direction:column; gap:11px; }
.sr-col li {
  display:flex; align-items:flex-start; gap:9px;
  font-size:14px; color:var(--ink-60); line-height:1.5;
}
.sr-col li svg { flex-shrink:0; margin-top:1px; }
.sr-col.good li { color:var(--ink-80); }

.sr-vs {
  display:flex; align-items:center;
  font-size:13px; font-weight:700; color:var(--ink-40);
  padding:0 4px;
}

/* ---- COURSES ---- */
.courses { padding:96px 0; background:var(--white); }

.courses-grid {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  align-items:stretch;
  gap:20px;
  margin:8px 0 36px;
}

.course-card {
  background:var(--white);
  border:1px solid var(--ink-10);
  border-radius:14px;
  padding:18px;
  display:flex; flex-direction:column; gap:12px;
  position:relative;
  transition:all var(--t);
  box-shadow:0 2px 10px rgba(10,10,10,.03);
}
.course-card:hover {
  border-color:var(--brand);
  box-shadow:0 12px 28px rgba(249,77,18,.12);
  transform:translateY(-4px);
}
.course-card.featured {
  border-color:var(--brand);
  background:linear-gradient(180deg, #fff7f2 0%, #ffffff 100%);
  box-shadow:0 0 0 1px var(--brand), 0 14px 30px rgba(249,77,18,.14);
}
.course-card.hidden { display:none; }

.cc-header { min-height:22px; }

.cc-badge {
  display:inline-block; font-size:10px; font-weight:700;
  text-transform:uppercase; letter-spacing:.05em;
  padding:3px 10px; border-radius:100px;
}
.badge-popular { background:var(--brand); color:var(--white); }
.badge-dest    { background:#fef3c7; color:#92400e; }
.badge-tec     { background:#dbeafe; color:#1e40af; }

.cc-name {
  font-size:17px; font-weight:800; color:var(--ink); line-height:1.25;
  min-height:42px;
}

.cc-meta { display:flex; gap:6px; flex-wrap:wrap; }
.cc-meta span {
  font-size:11px; font-weight:600;
  background:var(--ink-06); color:var(--ink-60);
  padding:3px 8px; border-radius:var(--r-xs);
}

.cc-price {
  display:flex; flex-direction:column; gap:4px;
  margin-top:2px;
  background:var(--ink-06);
  border:1px solid var(--ink-10);
  border-radius:12px;
  padding:10px 12px;
}
.cp-old  { font-size:12px; color:var(--ink-40); text-decoration:line-through; }
.cp-new  { font-size:13px; font-weight:700; color:var(--ink); line-height:1.2; }
.cp-new strong { font-size:26px; }
.cp-new em { font-size:13px; font-style:normal; font-weight:600; color:var(--ink-60); }
.cp-disc {
  display:inline-block; font-size:12px; font-weight:700;
  background:var(--green-bg); color:var(--green);
  padding:4px 9px; border-radius:var(--r-xs); width:fit-content;
}

.btn-card {
  display:block; text-align:center;
  padding:10px 0; border-radius:var(--r-sm);
  font-family:var(--font); font-size:13px; font-weight:700;
  background:var(--ink-06); color:var(--ink-60);
  text-decoration:none; transition:all var(--t); margin-top:auto;
}
.btn-card:hover { background:var(--brand-bg); color:var(--brand); }
.btn-card-primary {
  background:var(--brand); color:var(--white);
}
.btn-card-primary:hover { background:var(--brand-dk); color:var(--white); }

.courses-footer {
  text-align:center; font-size:15px; color:var(--ink-60);
}
.link-more {
  color:var(--brand); font-weight:600; text-decoration:none;
  border-bottom:1px solid rgba(249,77,18,.3);
  margin-left:6px; transition:all var(--t);
}
.link-more:hover { border-bottom-color:var(--brand); }

/* ---- HOW ---- */
.how { padding:96px 0; background:var(--ink-06); }

.steps {
  display:flex; align-items:flex-start; justify-content:center;
  gap:0; flex-wrap:wrap;
}

.step {
  flex:1; min-width:180px; max-width:240px;
  text-align:center; padding:0 20px;
}
.step-n {
  width:52px; height:52px; border-radius:50%;
  background:var(--brand); color:var(--white);
  font-size:18px; font-weight:900;
  display:flex; align-items:center; justify-content:center;
  margin:0 auto 18px;
}
.step h3 { font-size:17px; font-weight:700; margin-bottom:10px; color:var(--ink); }
.step p  { font-size:14px; color:var(--ink-60); line-height:1.65; }

.step-arrow {
  padding-top:20px; flex-shrink:0;
  display:flex; align-items:flex-start; padding-top:14px;
}

/* ---- TESTIMONIALS ---- */
.testimonials { padding:96px 0; background:var(--ink-80); }
.testimonials .section-header h2 { color:var(--white); }

.tpartner {
  display:flex; align-items:center; justify-content:center; gap:10px;
  margin-top:12px;
  font-size:12px; color:rgba(255,255,255,.35); font-weight:500;
}
.tpartner-logo { height:18px; width:auto; opacity:.45; }

.tcarousel {
  overflow:hidden;
  position:relative;
}

.tgrid {
  display:flex;
  gap:20px;
  transition:transform .65s ease;
  will-change:transform;
}

.tcard {
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  border-radius:var(--r-lg); padding:28px 24px;
  transition:all var(--t);
  position:relative;
  flex:0 0 calc((100% - 40px) / 3);
}
.tcard:hover {
  background:rgba(255,255,255,.08);
  transform:translateY(-3px);
}
.tquote {
  font-size:48px; line-height:.8; color:var(--brand);
  font-weight:900; margin-bottom:12px;
}
.tcard p {
  font-size:15px; color:rgba(255,255,255,.72);
  line-height:1.72; margin-bottom:24px;
}
.tauthor { display:flex; align-items:center; gap:12px; }
.tavatar {
  width:52px; height:52px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:13px; font-weight:700; color:var(--white); flex-shrink:0;
  overflow:hidden;
  border:2px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
}
.tavatar img { width:100%; height:100%; object-fit:cover; display:block; }
.tauthor strong { display:block; font-size:14px; font-weight:700; color:var(--white); }
.tauthor span   { font-size:12px; color:rgba(255,255,255,.4); }

/* ---- CAROUSEL DOTS ---- */
.tcarousel-dots {
  display:flex; align-items:center; justify-content:center;
  gap:8px; margin-top:28px;
}
.tcarousel-dot {
  width:8px; height:8px; border-radius:50%;
  background:rgba(255,255,255,.2); border:none; padding:0;
  cursor:pointer; transition:all var(--t);
  flex-shrink:0;
}
.tcarousel-dot.active {
  background:var(--brand);
  width:24px; border-radius:4px;
}
.tcarousel-dot:hover { background:rgba(255,255,255,.5); }

/* ---- FAQ ---- */
.faq { padding:96px 0; background:var(--white); }

.faq-list { max-width:680px; margin:0 auto; display:flex; flex-direction:column; gap:8px; }

.faq-item {
  border:1.5px solid var(--ink-10); border-radius:var(--r-sm);
  overflow:hidden; transition:border-color var(--t);
}
.faq-item.open { border-color:var(--brand); }

.fq-btn {
  width:100%; display:flex; align-items:center; justify-content:space-between;
  padding:17px 20px; background:none; border:none; cursor:pointer;
  font-family:var(--font); font-size:15px; font-weight:600; color:var(--ink);
  text-align:left; gap:16px; transition:background var(--t);
}
.fq-btn:hover { background:var(--ink-06); }

.fq-arr {
  flex-shrink:0; color:var(--brand);
  transition:transform var(--t);
}
.faq-item.open .fq-arr { transform:rotate(180deg); }

.fq-body { max-height:0; overflow:hidden; transition:max-height .35s ease; }
.fq-body p { padding:0 20px 18px; font-size:14px; color:var(--ink-60); line-height:1.72; }
.fq-body ul {
  padding:0 20px 18px 36px;
  margin:-8px 0 0;
  color:var(--ink-60);
}
.fq-body li { font-size:14px; line-height:1.72; }

/* ---- FOOTER ---- */
.footer { background:#080808; padding:64px 0 0; }

.footer-grid {
  display:grid; grid-template-columns:2fr 1fr 1fr;
  gap:48px; padding-bottom:48px;
}

.footer-logos {
  display:flex; align-items:center; gap:0;
  margin-bottom:18px; flex-wrap:wrap;
}
.footer-logo-bmb {
  display:flex; align-items:center; gap:10px;
  padding-right:20px;
}
.footer-logo-sep {
  width:1px; height:32px;
  background:rgba(255,255,255,.1);
  margin:0 20px; flex-shrink:0;
}
.footer-logo-anh {
  display:flex; flex-direction:column; gap:4px;
}
.footer-anh-logo { height:18px; width:auto; opacity:.5; }
.footer-bmb-logo-img { height:32px; width:auto; }
.footer-grupo {
  font-size:10px; font-weight:600; text-transform:uppercase;
  letter-spacing:.08em; color:rgba(255,255,255,.25);
}
.footer-desc { font-size:13px; color:rgba(255,255,255,.35); line-height:1.7; max-width:300px; }

.footer-ht {
  font-size:11px; font-weight:700; text-transform:uppercase;
  letter-spacing:.1em; color:rgba(255,255,255,.4);
  margin-bottom:16px;
}
.footer-links { list-style:none; display:flex; flex-direction:column; gap:9px; }
.footer-links a {
  font-size:14px; color:rgba(255,255,255,.4);
  text-decoration:none; transition:color var(--t);
}
.footer-links a:hover { color:var(--white); }

.footer-cp { font-size:14px; color:rgba(255,255,255,.4); margin-bottom:14px; }

.footer-bottom {
  border-top:1px solid rgba(255,255,255,.06);
  padding:22px 0; text-align:center;
}
.footer-bottom p { font-size:12px; color:rgba(255,255,255,.2); line-height:1.7; }
.footer-legal { margin-top:4px; font-size:11px !important; }

/* ---- FLOATING CTA ---- */
.fcta {
  position:fixed; bottom:20px; right:20px; z-index:900;
  opacity:0; transform:translateY(14px);
  transition:all var(--t); pointer-events:none;
}
.fcta.visible { opacity:1; transform:translateY(0); pointer-events:all; }
.fcta .btn { box-shadow:0 8px 28px rgba(249,77,18,.45); }

/* ---- RESPONSIVE ---- */
@media (max-width:1100px) {
  .hero-grid { grid-template-columns:minmax(0,1fr) minmax(360px,410px); gap:30px; }
  .hero-copy { max-width:100%; }
  .courses-grid { grid-template-columns:repeat(3,1fr); }
}

@media (max-width:900px) {
  .container { padding:0 20px; }
  .section-header { margin-bottom:34px; }
  .section-header h2 { font-size:clamp(24px,5vw,32px); }
  .section-header p { font-size:15px; max-width:620px; }

  .hero-grid { grid-template-columns:1fr; gap:26px; padding-bottom:26px; }
  .hero-form-wrap { order:0; width:100%; max-width:620px; margin:0 auto; }
  .hero-badge { margin-bottom:16px; }
  .hero-copy h1 { font-size:clamp(34px,7vw,46px); margin-bottom:14px; }
  .hero-sub { font-size:16px; line-height:1.6; margin-bottom:18px; }
  .hero-checks { margin-bottom:18px; }
  .hero-checks li { font-size:14px; }
  .hero-stats {
    justify-content:flex-start;
    width:100%;
    max-width:100%;
    padding:4px 6px;
    overflow:visible;
  }
  .hst {
    flex:1 1 25%;
    min-width:0;
    padding:8px 10px;
  }
  .hst-value { font-size:clamp(20px,4.8vw,30px); }
  .hst-top,
  .hst-bottom { font-size:8px; }

  .courses-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .tcard { flex-basis:calc((100% - 20px) / 2); }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .footer-grid > div:first-child { grid-column:1/-1; }

  .sem-renovacao,
  .courses,
  .how,
  .testimonials,
  .faq { padding:74px 0; }

  .steps { gap:8px; flex-wrap:wrap; justify-content:center; }
  .step-arrow { display:none; }
  .step { min-width:200px; max-width:320px; }
}

@media (max-width:680px) {
  .container { padding:0 16px; }
  .section-header { margin-bottom:28px; }
  .section-header h2 { font-size:clamp(22px,6.5vw,28px); }
  .section-header p { font-size:14px; }

  .header-inner { height:58px; gap:12px; }
  .header-bmb-logo { height:30px; }
  .btn-sm { padding:8px 14px; font-size:12px; }

  .header-nav { display:none; }
  .header-parceiro { display:none; }
  .hero { padding-top:70px; }
  .hero-bg-shape::before {
    top:-160px; right:-120px;
    border-left:180px solid transparent;
    border-right:180px solid transparent;
    border-bottom:300px solid var(--brand);
    opacity:.06;
  }
  .hero-bg-shape::after { display:none; }
  .hero-grid { gap:20px; padding-bottom:20px; }
  .hero-badge {
    margin-bottom:14px;
    padding:6px 12px;
    font-size:11px;
  }
  .hero-copy h1 { font-size:clamp(30px,9vw,38px); line-height:1.06; }
  .hero-sub { font-size:15px; line-height:1.55; margin-bottom:16px; }
  .hero-checks { gap:9px; margin-bottom:16px; }
  .hero-checks li { font-size:14px; align-items:flex-start; }
  .chk { margin-top:2px; }
  .hero-stats {
    width:100%;
    max-width:none;
    padding:4px;
    border-radius:12px;
  }
  .hst {
    padding:7px 6px;
    grid-template-rows:10px auto 16px;
  }
  .hst:not(:last-child)::after {
    top:8px;
    bottom:8px;
  }
  .hst-value { font-size:clamp(16px,5.6vw,21px); letter-spacing:-.015em; }
  .hst-top,
  .hst-bottom { font-size:7px; }

  .form-card { border-radius:22px; }
  .form-card-top { padding:18px 20px; }
  .form-card-top h2 { font-size:21px; }
  .form-card-top p { font-size:13px; opacity:.9; }
  .main-form { padding:18px 20px; gap:12px; }
  .fgroup input,
  .fgroup select { font-size:16px; }

  .courses-grid { grid-template-columns:1fr; }
  .course-card { padding:16px; gap:10px; }
  .cc-name { font-size:16px; min-height:auto; }
  .cc-price { padding:9px 10px; }
  .cp-new strong { font-size:22px; }
  .tcard { flex-basis:100%; }
  .tcard { padding:20px 16px; border-radius:18px; }
  .tcard p { font-size:14px; line-height:1.65; }

  .sem-renovacao,
  .courses,
  .how,
  .testimonials,
  .faq { padding:58px 0; }
  .sr-inner { gap:22px; }
  .sr-inner p { font-size:15px; line-height:1.65; }

  .steps { gap:16px; }
  .step { min-width:0; max-width:100%; padding:0 8px; text-align:left; }
  .step-n { margin:0 0 12px; }
  .step h3 { font-size:16px; }
  .step p { font-size:13px; line-height:1.6; }

  .fq-btn { font-size:14px; padding:15px 16px; }
  .fq-body p, .fq-body li { font-size:13px; line-height:1.65; }

  .sr-compare { flex-direction:column; }
  .sr-vs { transform:rotate(90deg); padding:4px 0; }

  .footer { padding:48px 0 0; }
  .footer-grid { grid-template-columns:1fr; gap:28px; }
  .footer-logo-sep { display:none; }
  .footer-logos { gap:16px; flex-direction:column; align-items:flex-start; }
  .footer-logo-bmb { padding-right:0; }

  .fcta { bottom:12px; right:12px; left:12px; }
  .fcta .btn { width:100%; justify-content:center; font-size:16px; padding:16px 24px; }

  .tcarousel-dots { margin-top:20px; gap:6px; }
  .tcarousel-dot { width:7px; height:7px; }
  .tcarousel-dot.active { width:20px; }

  .hero-trust {
    justify-content:flex-start;
    gap:10px;
    padding:12px 0;
  }
  .trust-label {
    width:100%;
    text-align:left;
  }
  .trust-sep { display:none; }
  .trust-logo { height:18px; }
  .trust-certif { font-size:11px; }

  .frow {
    grid-template-columns:1fr 76px;
    grid-template-areas:
      "cidade uf"
      "curso curso";
  }
  .fgroup-uf select { padding-right:8px; background-image:none; }
}

@media (max-width:480px) {
  .container { padding:0 14px; }
  .hero-grid { gap:18px; }
  .courses-grid { grid-template-columns:1fr; }
  .hero-copy h1 { font-size:clamp(28px,10vw,34px); }
  .hero-checks li { font-size:13px; }
  .hero-stats { padding:3px; }
  .hst { padding:6px 4px; }
  .hst-value { font-size:clamp(15px,5.2vw,19px); }
  .hst-top,
  .hst-bottom { font-size:6.5px; }

  .form-card-top h2 { font-size:20px; }
  .btn-submit { font-size:15px; }
}
