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

:root {
  --black:   #0A0A0A;
  --black2:  #111111;
  --black3:  #1A1A1A;
  --gold:    #F5A800;
  --gold2:   #D48F00;
  --gold3:   #FFD166;
  --white:   #FFFFFF;
  --gray:    #2A2A2A;
  --gray2:   #3A3A3A;
  --muted:   #888888;
  --green:   #25D366;
  --green2:  #1DA851;
  --text:    #E8E8E8;
}

html, body { scroll-behavior: smooth; }
body { font-family: 'Open Sans', sans-serif; background: var(--black); color: var(--text); overflow-x: hidden; width: 100%; }

/* ─── TOP BAR ─── */
.topbar {
  background: var(--gold);
  padding: 9px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 16px;
  width: 100%;
  box-sizing: border-box;
  white-space: nowrap;
}
.topbar-left {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: nowrap;
  flex-shrink: 0;
}
.topbar span { color: var(--black); font-size: 13px; font-weight: 600; display: flex; align-items: center; gap: 6px; white-space: nowrap; }
.topbar-right {
  background: var(--black);
  color: var(--gold) !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  padding: 5px 16px;
  border-radius: 20px;
  letter-spacing: .05em;
  flex-shrink: 0;
  white-space: nowrap;
}

/* ─── HERO ─── */
.hero {
  background: var(--black);
  position: relative;
  overflow: hidden;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.hero-photo {
  position: absolute;
  inset: 0;
  background-image: url('../assets/hero-bg.jpg');
  background-size: cover;
  background-position: center 30%;
  opacity: 0.18;
  z-index: 0;
  pointer-events: none;
}

.hero-lines {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(245,168,0,.04) 0px, rgba(245,168,0,.04) 1px, transparent 1px, transparent 80px),
    repeating-linear-gradient(90deg, rgba(245,168,0,.04) 0px, rgba(245,168,0,.04) 1px, transparent 1px, transparent 80px);
  pointer-events: none;
  z-index: 1;
}
.hero-glow {
  position: absolute;
  bottom: -200px; left: -200px;
  width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,168,0,.08) 0%, transparent 65%);
  pointer-events: none;
  z-index: 1;
}
.hero-glow2 {
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,168,0,.05) 0%, transparent 65%);
  pointer-events: none;
  z-index: 1;
}

/* diagonal strip */
.hero-strip {
  position: absolute;
  top: 0; right: 0;
  width: 42%;
  height: 100%;
  background: linear-gradient(160deg, var(--black3) 0%, var(--gray) 100%);
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 1;
  opacity: .5;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  align-items: center;
  gap: 56px;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 80px 40px 100px;
  position: relative;
  z-index: 2;
  flex: 1;
  box-sizing: border-box;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,168,0,.1);
  border: 1px solid rgba(245,168,0,.3);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero-pill-dot {
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
  animation: blink 1.5s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.2} }

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 400;
  color: #fff;
  line-height: 1.0;
  margin-bottom: 24px;
  letter-spacing: .03em;
}
.hero h1 .accent { color: var(--gold); }
.hero h1 .line2 { display: block; }

.hero-desc {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255,255,255,.6);
  max-width: 500px;
  margin-bottom: 40px;
}

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }

.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 17px 28px;
  border-radius: 10px;
  text-decoration: none;
  transition: all .2s;
  box-shadow: 0 6px 28px rgba(37,211,102,.3);
  font-family: 'Open Sans', sans-serif;
}
.btn-wa:hover { background: var(--green2); transform: translateY(-2px); box-shadow: 0 10px 36px rgba(37,211,102,.4); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255,255,255,.85) !important;
  font-size: 15px;
  font-weight: 600;
  padding: 17px 24px;
  border-radius: 10px;
  text-decoration: none !important;
  border: 1.5px solid rgba(255,255,255,.25);
  transition: all .2s;
  font-family: 'Open Sans', sans-serif;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold) !important; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255,255,255,.7);
  font-size: 15px;
  font-weight: 600;
  padding: 17px 24px;
  border-radius: 10px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.15);
  transition: all .2s;
  font-family: 'Open Sans', sans-serif;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.htrust {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.5);
}
.htrust-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ─── HERO CARD ─── */
.hero-card {
  background: var(--black3);
  border: 1px solid rgba(245,168,0,.2);
  border-radius: 20px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  min-width: 0;
}
.hero-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold3));
}
.hero-card-logo {
  text-align: center;
  margin-bottom: 28px;
}
.logo-shield {
  width: 90px;
  height: 90px;
  margin: 0 auto 12px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  font-weight: 400;
  color: var(--black);
  letter-spacing: -.02em;
  box-shadow: 0 8px 32px rgba(245,168,0,.3);
}
.hero-card-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: .1em;
}

.hero-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: .02em;
}
.hero-card-sub {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}
.stat {
  background: var(--black2);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 12px;
  padding: 14px 10px;
  text-align: center;
}
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.3;
}

/* ── Classes do card hero (index.php) ── */
.hero-card-brand {
  text-align: center;
  margin-bottom: 20px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: .08em;
}
.hero-card-body {
  margin-bottom: 20px;
  text-align: center;
}
.hero-card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 4px;
  letter-spacing: .02em;
}
.hero-card-sub {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 20px 0;
}
.hstat {
  background: var(--black2);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 12px;
  padding: 12px 8px;
  text-align: center;
}
.hstat span {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.hstat small {
  display: block;
  font-size: 11px;
  color: var(--muted);
  line-height: 1.3;
}
.hero-card-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  justify-content: center;
}
.hero-card-trust span {
  font-size: 12px;
  color: var(--muted);
  background: var(--black2);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 20px;
  padding: 5px 12px;
}

.card-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--gold);
  color: var(--black);
  font-size: 15px;
  font-weight: 800;
  padding: 17px;
  border-radius: 10px;
  text-decoration: none;
  transition: all .2s;
  font-family: 'Open Sans', sans-serif;
  text-transform: uppercase;
  letter-spacing: .04em;
  box-shadow: 0 6px 24px rgba(245,168,0,.3);
  margin-bottom: 16px;
}
.card-cta:hover { background: var(--gold3); transform: translateY(-2px); box-shadow: 0 10px 36px rgba(245,168,0,.45); }

.card-trust {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.card-trust span {
  font-size: 11px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 5px;
}
.card-trust span::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
}

/* ─── SECTIONS ─── */
.section { padding: 80px 0; }
.section.dark-bg { background: var(--black); }
.section.alt-bg  { background: var(--black); }
.section.gray-bg { background: var(--black); }

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.section-h {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 400;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 16px;
  letter-spacing: -.01em;
}
.section-h .hl { color: var(--gold); }
.section-p {
  font-size: 16px;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 48px;
}

/* ─── PROBLEM ─── */
/* ─── REVIEWS (Trustindex) ─── */
.reviews-placeholder {
  display: flex;
  justify-content: center;
  padding: 48px 0 24px;
}
.reviews-placeholder-inner {
  text-align: center;
  border: 2px dashed rgba(245,168,0,.3);
  border-radius: 16px;
  padding: 48px 40px;
  max-width: 480px;
  width: 100%;
}
.reviews-placeholder-icon {
  font-size: 40px;
  margin-bottom: 16px;
}
.reviews-placeholder-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: .05em;
  color: var(--gold);
  margin-bottom: 12px;
}
.reviews-placeholder-sub {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* ─── SERVICES ─── */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.svc-card {
  background: var(--black3);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color .2s, transform .2s;
}
.svc-card:hover { border-color: rgba(245,168,0,.35); transform: translateY(-4px); }
.svc-head {
  background: linear-gradient(135deg, #1c1c1c 0%, #222 100%);
  padding: 28px 24px 24px;
  border-bottom: 1px solid rgba(255,255,255,.05);
  position: relative;
}
.svc-ico {
  width: 50px; height: 50px;
  background: rgba(245,168,0,.1);
  border: 1px solid rgba(245,168,0,.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--gold);
}
.svc-head h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 6px;
}
.svc-head p { font-size: 13px; color: var(--muted); line-height: 1.55; }
.svc-body { padding: 24px; }
.svc-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.svc-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,.65);
  line-height: 1.4;
}
.svc-chk {
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ─── DIFFERENTIALS BANNER ─── */
.diff-wrap {
  background: linear-gradient(135deg, var(--gold2) 0%, var(--gold) 100%);
  padding: 48px 40px;
}
.diff-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
}
.diff-text h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 10px;
  letter-spacing: -.01em;
}
.diff-text p { font-size: 15px; color: rgba(0,0,0,.6); max-width: 520px; line-height: 1.6; }
.diff-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--black);
  color: var(--gold);
  font-size: 14px;
  font-weight: 800;
  padding: 16px 26px;
  border-radius: 10px;
  text-decoration: none;
  transition: all .2s;
  white-space: nowrap;
  font-family: 'Open Sans', sans-serif;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.diff-btn:hover { background: #1a1a1a; transform: scale(1.04); }

/* ─── HOW IT WORKS ─── */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(245,168,0,.15));
  z-index: 0;
}
.step {
  text-align: center;
  padding: 0 20px 0;
  position: relative;
  z-index: 1;
}
.step-n {
  width: 56px; height: 56px;
  background: var(--gold);
  color: var(--black);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  font-weight: 400;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 6px 20px rgba(245,168,0,.35);
}
.step h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 8px;
}
.step p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ─── TRANSPARENCY SECTION ─── */
.transp-box {
  background: var(--black3);
  border: 1px solid rgba(245,168,0,.2);
  border-radius: 20px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.transp-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold3), transparent);
}
.transp-left h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.05;
}
.transp-left h3 span { color: var(--gold); }
.transp-left p { font-size: 15px; color: var(--muted); line-height: 1.75; margin-bottom: 24px; }
.transp-items { display: flex; flex-direction: column; gap: 14px; }
.titem {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.titem-ico {
  width: 38px; height: 38px;
  background: rgba(245,168,0,.1);
  border: 1px solid rgba(245,168,0,.2);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.titem-text strong {
  display: block;
  font-size: 14px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 2px;
}
.titem-text span { font-size: 13px; color: var(--muted); }

/* ─── GUARANTEE ─── */
.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gcard {
  background: var(--black3);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: border-color .2s;
}
.gcard:hover { border-color: rgba(245,168,0,.3); }
.gcard-ico {
  width: 60px; height: 60px;
  background: rgba(245,168,0,.08);
  border: 1px solid rgba(245,168,0,.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--gold);
}
.gcard h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 10px;
}
.gcard p { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* ─── FINAL CTA ─── */
.facade-section {
  position: relative;
  height: 320px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.facade-photo {
  position: absolute;
  inset: 0;
  background-image: url('../assets/facade-bg.jpg');
  background-size: cover;
  background-position: center center;
  z-index: 0;
}
.facade-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.82) 0%, rgba(20,12,0,0.75) 100%);
  z-index: 1;
}
.facade-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}
.facade-content h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 400;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -.01em;
}
.facade-content h3 span { color: var(--gold); }
.facade-content p {
  font-size: 16px;
  color: rgba(255,255,255,.6);
  margin-bottom: 24px;
}
.final-bg {
  background: linear-gradient(160deg, var(--black3) 0%, #1a1500 100%);
  position: relative;
  overflow: hidden;
}
.final-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(245,168,0,.02) 0px, rgba(245,168,0,.02) 1px, transparent 1px, transparent 40px);
  pointer-events: none;
}
.final-inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 100px 40px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.final-inner .eyebrow { justify-content: center; }
.final-inner .section-h { max-width: 600px; margin: 0 auto 16px; }
.final-desc {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 40px;
}
.final-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--black);
  font-size: 16px;
  font-weight: 800;
  padding: 18px 32px;
  border-radius: 10px;
  text-decoration: none;
  transition: all .2s;
  font-family: 'Open Sans', sans-serif;
  text-transform: uppercase;
  letter-spacing: .04em;
  box-shadow: 0 8px 32px rgba(245,168,0,.3);
}
.btn-gold:hover { background: var(--gold3); transform: translateY(-3px); box-shadow: 0 14px 44px rgba(245,168,0,.45); }
.final-trust {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.final-trust span {
  font-size: 13px;
  color: rgba(255,255,255,.4);
  display: flex;
  align-items: center;
  gap: 6px;
}
.final-trust span::before { content: '✓'; color: var(--gold); font-weight: 700; }

/* ─── FOOTER ─── */
footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: .08em;
}
.footer-info { font-size: 13px; color: var(--muted); }
.footer-link a { font-size: 13px; color: var(--muted); text-decoration: none; }
.footer-link a:hover { color: var(--gold); }

/* ─── FLOAT WA ─── */
.float-wa {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 60px; height: 60px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 6px 28px rgba(37,211,102,.5);
  transition: all .2s;
  animation: pulse-wa 2.5s infinite;
}
.float-wa:hover { transform: scale(1.1); }
@keyframes pulse-wa {
  0%,100%{ box-shadow: 0 6px 28px rgba(37,211,102,.5); }
  50%{ box-shadow: 0 6px 40px rgba(37,211,102,.8); }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-strip { display: none; }
  .hero-pill { margin-left: auto; margin-right: auto; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-trust { justify-content: center; }
  .svc-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .steps::before { display: none; }
  .transp-box { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .transp-left h3 { text-align: center; }
  .transp-left p { text-align: center; }
  .transp-left a { margin: 0 auto; }
  .titem { flex-direction: column; align-items: center; text-align: center; }
  .guarantee-grid { grid-template-columns: 1fr; }
  .diff-inner { grid-template-columns: 1fr; text-align: center; }
  .diff-text p { margin: 0 auto 24px; }
  .diff-btn { margin: 0 auto; }
  .eyebrow { justify-content: center; }
  .section-h { text-align: center; }
  .section-p { margin-left: auto; margin-right: auto; text-align: center; }
  footer { flex-direction: column; text-align: center; }
}
@media (max-width: 600px) {
  .topbar {
    padding: 10px 16px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 6px;
  }
  .topbar-left {
    flex-direction: column !important;
    align-items: center !important;
    gap: 6px !important;
    justify-content: center;
  }
  .topbar span {
    font-size: 12px;
    color: var(--black);
    justify-content: center;
  }
  .topbar-right {
    display: none;
  }
  .hero-pill {
    font-size: 11px;
    padding: 6px 14px;
    white-space: normal;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 280px;
  }
  .hero-grid { padding: 48px 20px 64px; }
  .section-inner { padding: 0 20px; }
  .steps { grid-template-columns: 1fr; }
  .diff-wrap { padding: 36px 20px; }
  footer { padding: 24px 20px; }
  .transp-box { padding: 28px 20px; }
  .final-inner { padding: 64px 20px; }
  .hero-card { text-align: center; }
  .stats-row { max-width: 300px; margin-left: auto; margin-right: auto; margin-bottom: 28px; }
  .card-trust { justify-content: center; }
  .svc-head { text-align: center; }
  .svc-ico { margin-left: auto; margin-right: auto; }
  .gcard { text-align: center; }
  .step { text-align: center; }
}

/* ─── LOGO NO CARD HERO ─── */
.hero-card-logo-img {
  display: block;
  width: auto;
  max-width: 100%;
  margin: 0 auto 8px;
}

/* ─── LOCALIZAÇÃO ─── */
.location-bg { background: var(--black); }

.location-bg .section-inner .location-grid {
  display: grid !important;
  grid-template-columns: 1fr 1.25fr !important;
  gap: 56px !important;
  align-items: start !important;
  width: 100% !important;
  box-sizing: border-box !important;
  float: none !important;
  flex-direction: unset !important;
}

.location-bg .section-inner .location-grid .location-left,
.location-bg .section-inner .location-grid .loc-map-wrap {
  width: 100% !important;
  float: none !important;
  display: block !important;
  box-sizing: border-box !important;
  min-width: 0 !important;
}

.loc-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 400;
  color: #fff;
  line-height: 1.0;
  letter-spacing: -.01em;
  margin-bottom: 14px;
}
.loc-title span { color: var(--gold); }

.loc-sub {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

.loc-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.lcard {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--black3);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 12px;
  padding: 14px 18px;
  transition: border-color .2s;
}
.lcard:hover { border-color: rgba(245,168,0,.3); }

.lcard-ico {
  width: 40px;
  height: 40px;
  background: rgba(245,168,0,.08);
  border: 1px solid rgba(245,168,0,.18);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.lcard-text strong {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,.4);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 3px;
}
.lcard-text span {
  font-size: 14px;
  color: var(--white);
  font-weight: 500;
}

.btn-location {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--black);
  font-size: 15px;
  font-weight: 800;
  padding: 16px 28px;
  border-radius: 10px;
  text-decoration: none;
  transition: all .2s;
  font-family: 'Open Sans', sans-serif;
  text-transform: uppercase;
  letter-spacing: .04em;
  box-shadow: 0 6px 24px rgba(245,168,0,.25);
}
.btn-location:hover {
  background: var(--gold3);
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(245,168,0,.4);
}

/* Mapa */
.loc-map-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(245,168,0,.18);
  box-shadow: 0 24px 64px rgba(0,0,0,.55);
  height: 420px;
  background: var(--black3);
}
.loc-map-wrap iframe {
  width: 100% !important;
  height: 100% !important;
  border: 0 !important;
  display: block;
}
.map-grad {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 56px;
  background: linear-gradient(to top, rgba(17,17,17,.6), transparent);
  pointer-events: none;
}
.map-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  padding: 32px;
  gap: 12px;
}
.map-placeholder svg { color: var(--gold); }

/* Mobile */
@media (max-width: 860px) {
  .location-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .loc-map-wrap { height: 280px; }
  .btn-location { width: 100%; justify-content: center; }
}

/* ─── VIDEO GRID ─── */
/* ─── VIDEO GRID ─── */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
  align-items: start;
}

/* YouTube — paisagem 16:9 */
.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 14px;
  overflow: hidden;
  background: var(--black3);
  border: 1px solid rgba(255,255,255,.06);
}
.video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* Instagram Reels — retrato 9:16 */
/* Instagram — iframe impõe altura mínima interna ~710px, então usamos altura fixa */
.video-wrap--instagram {
  position: relative;
  width: 100%;
  max-width: 340px;
  height: 710px;
  margin: 0 auto;
  border-radius: 14px;
  overflow: hidden;
  background: var(--black3);
  border: 1px solid rgba(255,255,255,.06);
}
.video-wrap--instagram iframe {
  position: absolute;
  top: 0; left: 0;
  width: 1px;
  min-width: 100%;
  height: 100%;
  border: 0;
}

/* WebM/MP4 nativo — retrato 9:16 (Instagram/Reels) */
.video-wrap--native {
  position: relative;
  width: 100%;
  max-width: 340px;
  height: 600px;
  margin: 0 auto;
  border-radius: 14px;
  overflow: hidden;
  background: var(--black3);
  border: 1px solid rgba(255,255,255,.06);
}
.video-wrap--native video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .video-grid { grid-template-columns: 1fr; }
  .video-wrap--instagram { max-width: 100%; }
}

/* ─── VIDEO — overlay Instagram ─── */
.video-wrap--clickable {
  cursor: pointer;
}
.video-ig-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
  text-decoration: none;
  background: linear-gradient(to top, rgba(0,0,0,.55) 0%, transparent 50%);
  transition: background .2s;
}
.video-ig-overlay:hover {
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, transparent 60%);
}
.video-ig-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,.4);
  letter-spacing: .02em;
  transition: transform .15s, box-shadow .15s;
}
.video-ig-overlay:hover .video-ig-badge {
  transform: translateY(-2px);
  box-shadow: 0 4px 18px rgba(0,0,0,.5);
}

/* ─── BOTÃO MUTE/UNMUTE ─── */
.video-mute-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: var(--gold);
  color: var(--black);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,.45);
  transition: background .15s, transform .15s, box-shadow .15s;
}
.video-mute-btn:hover {
  background: var(--gold3);
  transform: scale(1.1);
  box-shadow: 0 4px 16px rgba(245,168,0,.5);
}
.video-mute-btn svg { stroke: var(--black); }
/* por padrão mostra ícone mudo, esconde com-som */
.video-mute-btn .ico-unmuted { display: none; }
.video-mute-btn .ico-muted   { display: block; }
/* quando está com som, inverte */
.video-mute-btn.is-unmuted .ico-muted   { display: none; }
.video-mute-btn.is-unmuted .ico-unmuted { display: block; }
