/* =====================================================
   ALIANÇA FABRANI — LP1 v3
   AIOX UX + Design Squad
   Premium Dark/Gold/Red · Health Professional
   ===================================================== */

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

:root {
  /* ── Palette ── */
  --black:        #080808;
  --black-2:      #0F0F0F;
  --black-3:      #161616;
  --black-4:      #1C1C1C;
  --warm-white:   #F8F5F0;
  --white:        #FFFFFF;
  --off-white:    #EEE9E1;

  --gold:         #C9A84C;
  --gold-light:   #E8D5A3;
  --gold-dim:     #8A7235;
  --gold-glow:    rgba(201,168,76,0.18);
  --gold-border:  rgba(201,168,76,0.35);
  --gold-subtle:  rgba(201,168,76,0.08);

  --red:          #E8003D;
  --red-dim:      #9B0029;
  --red-glow:     rgba(232,0,61,0.18);
  --red-border:   rgba(232,0,61,0.35);

  --text-dark:    #1A1A1A;
  --text-mid:     #444444;
  --text-muted:   #888888;
  --border-dark:  rgba(255,255,255,0.07);
  --border-light: rgba(0,0,0,0.09);

  --green:        #22c55e;

  /* ── Typography ── */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  /* ── Spacing ── */
  --radius:    8px;
  --radius-lg: 14px;
  --radius-xl: 20px;

  /* ── Transitions ── */
  --trans: 0.22s ease;
  --trans-slow: 0.4s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--black);
  color: var(--white);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

em  { font-style: italic; color: inherit; }
strong { font-weight: 700; }
.green  { color: var(--green); font-weight: 600; }

/* ── Container ── */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ─────────────────────────────────────────────
   FADE-IN ANIMATION
───────────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s var(--trans-slow), transform 0.6s var(--trans-slow);
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* ─────────────────────────────────────────────
   INTRO — CAPA / MANIFESTO
───────────────────────────────────────────── */
.intro {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 0 80px;
  overflow: hidden;
  background: var(--black);
}

.intro__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.intro__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.intro__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}
.intro__glow--top {
  width: 600px;
  height: 400px;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(201,168,76,0.10);
}
.intro__glow--bottom {
  width: 500px;
  height: 300px;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(232,0,61,0.08);
}

.intro__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.intro__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.35);
  background: rgba(201,168,76,0.07);
  border-radius: 4px;
  padding: 5px 14px;
  margin-bottom: 20px;
}

/* "Profissionais da Saúde" — menor, kicker */
.intro__prof {
  font-size: clamp(14px, 1.6vw, 18px);
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}

/* Headline principal — stacked, grande */
.intro__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 44px;
}

.intro__title-reposicione {
  font-family: var(--font-serif);
  font-size: clamp(60px, 10vw, 120px);
  font-weight: 900;
  line-height: 1.0;
  color: var(--white);
  letter-spacing: -0.02em;
  font-style: italic;
}

.intro__title-dash {
  font-size: clamp(24px, 3vw, 36px);
  color: var(--gold);
  font-weight: 300;
  line-height: 1;
  opacity: 0.7;
}

.intro__title-srp {
  font-family: var(--font-sans);
  font-size: clamp(22px, 3.5vw, 44px);
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.intro__title-sub {
  font-family: var(--font-sans);
  font-size: clamp(15px, 2vw, 22px);
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  line-height: 1.55;
  margin-top: 8px;
}
.intro__br { display: block; }

/* Negações */
.intro__nao-grid {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.intro__nao {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius);
  padding: 12px 20px;
}
.intro__nao-x {
  font-size: 18px;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  flex-shrink: 0;
}
.intro__nao-text {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  text-decoration: line-through;
  text-decoration-color: rgba(232,0,61,0.45);
}

/* Big Statement */
.intro__statement {
  max-width: 720px;
  margin-bottom: 40px;
  padding: 36px 40px;
  border: 1px solid rgba(201,168,76,0.22);
  border-radius: var(--radius-lg);
  background: rgba(201,168,76,0.04);
  position: relative;
}
.intro__statement::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.intro__statement p {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.45;
}
.intro__statement em {
  color: var(--gold);
  font-style: italic;
}

.intro__cta {
  display: flex;
  justify-content: center;
}

/* Responsive intro */
@media (max-width: 700px) {
  .intro { padding: 80px 0 70px; }
  .intro__title-reposicione { font-size: 52px; }
  .intro__title-srp { font-size: 22px; }
  .intro__nao-grid { flex-direction: column; align-items: center; }
  .intro__nao { width: 100%; max-width: 320px; }
  .intro__statement { padding: 24px 20px; }
}

/* ─────────────────────────────────────────────
   SECTION BASE
───────────────────────────────────────────── */
.section { padding: 104px 0; }

.section--dark  { background: var(--black-2); }
.section--light { background: var(--warm-white); }

.section--offer { background: var(--warm-white); }

.section__header { margin-bottom: 60px; }

.section__title {
  font-family: var(--font-serif);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.12;
  margin-bottom: 20px;
  color: var(--text-dark);
}
.section__title em {
  color: var(--red);
  font-style: italic;
}
.section__title--light {
  color: var(--white);
}
.section__title--light em {
  color: var(--gold);
}

.section__lead {
  font-size: 18px;
  color: var(--off-white);
  max-width: 720px;
  line-height: 1.8;
}
.section__lead--dark {
  font-size: 17px;
  color: var(--text-mid);
  max-width: 720px;
  line-height: 1.8;
}

.kicker {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.kicker--gold { color: var(--gold); }

.cta-row {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.cta-row--center {
  align-items: center;
  text-align: center;
}
.cta-sub {
  font-size: 12px;
  color: var(--text-muted);
}

/* ─────────────────────────────────────────────
   BUTTONS
───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 1px;
  text-decoration: none;
  padding: 18px 36px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--trans), transform var(--trans), box-shadow var(--trans), border-color var(--trans);
  text-align: center;
  line-height: 1.3;
}
.btn__sub {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.3px;
  opacity: 0.82;
}

/* Primary — red */
.btn--primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn--primary:hover {
  background: #c4002f;
  border-color: #c4002f;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(232,0,61,0.4), 0 0 0 4px rgba(232,0,61,0.08);
}

/* Outline — for hero secondary */
.btn--outline {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255,255,255,0.75);
  border-color: rgba(255,255,255,0.2);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.3px;
  padding: 18px 28px;
}
.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 0 16px var(--gold-glow);
}

/* Large */
.btn--lg { font-size: 15px; padding: 22px 44px; }
.btn--xl { font-size: 16px; padding: 26px 52px; }

/* Sticky */
.btn--sticky {
  display: block;
  width: 100%;
  text-align: center;
  padding: 18px 24px;
  border-radius: 0;
  background: var(--red);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
  text-decoration: none;
  transition: background var(--trans);
}
.btn--sticky:hover { background: #c4002f; }

/* ─────────────────────────────────────────────
   BADGE + PILLS
───────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold-light);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 36px;
}
.badge__pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  animation: pulse 2.2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.35; transform: scale(0.65); }
}

.trust-pill {
  display: inline-block;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.2px;
  transition: border-color var(--trans), color var(--trans);
}
.trust-pill:hover {
  border-color: rgba(201,168,76,0.4);
  color: var(--gold-light);
}

/* ─────────────────────────────────────────────
   HERO
───────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--black);
  padding: 120px 0 96px;
  overflow: hidden;
}

/* Backgrounds */
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 63px, rgba(255,255,255,0.018) 64px),
    repeating-linear-gradient(90deg, transparent, transparent 63px, rgba(255,255,255,0.018) 64px);
}
.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero__glow--gold {
  width: 600px;
  height: 600px;
  top: -100px;
  right: -80px;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
}
.hero__glow--red {
  width: 400px;
  height: 400px;
  bottom: -60px;
  left: 10%;
  background: radial-gradient(circle, rgba(232,0,61,0.1) 0%, transparent 70%);
}

/* Decorative SVG illustration */
.hero__visual {
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  width: min(560px, 48vw);
  opacity: 0.9;
  pointer-events: none;
}
.hero__svg {
  width: 100%;
  height: auto;
  display: block;
}

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

.hero__headline {
  font-family: var(--font-serif);
  font-size: clamp(38px, 5.5vw, 72px);
  font-weight: 900;
  line-height: 1.06;
  margin-bottom: 26px;
  letter-spacing: -0.5px;
}
.hero__headline em {
  font-style: italic;
  color: var(--gold);
}

.hero__sub {
  font-size: clamp(16px, 1.8vw, 19px);
  color: rgba(255,255,255,0.65);
  max-width: 580px;
  margin-bottom: 44px;
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* Scroll cue */
.hero__scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  opacity: 0.5;
  transition: opacity var(--trans);
}
.hero__scroll-cue:hover { opacity: 0.9; }
.hero__scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.35));
}

/* ─────────────────────────────────────────────
   CREDIBILITY BAR
───────────────────────────────────────────── */
.cred-bar {
  background: var(--white);
  border-top: 1px solid rgba(201,168,76,0.2);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding: 20px 0;
}
.cred-bar__track {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.cred-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 28px;
  text-align: center;
}
.cred-stat__num {
  font-size: 30px;
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 4px;
  font-family: var(--font-sans);
  letter-spacing: -0.5px;
}
.cred-stat__label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}
.cred-bar__sep {
  width: 1px;
  height: 40px;
  background: rgba(0,0,0,0.1);
  flex-shrink: 0;
}
.cred-stat--mec {
  flex-direction: row;
  gap: 14px;
  align-items: center;
}
.mec-hex {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}
.cred-stat__mec-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
.cred-stat__mec-text strong {
  font-size: 16px;
  font-weight: 900;
  color: var(--gold-dim);
  letter-spacing: 1px;
}
.cred-stat__mec-text span {
  font-size: 11px;
  color: var(--text-muted);
}

/* ─────────────────────────────────────────────
   PAIN SECTION
───────────────────────────────────────────── */
.pain-intro {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-left: 3px solid var(--red);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 28px 36px;
  margin-bottom: 52px;
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.85;
  max-width: 840px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 20px;
  margin-bottom: 16px;
}

.pain-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-top: 2px solid transparent;
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  cursor: default;
  transition: border-top-color var(--trans), transform var(--trans), box-shadow var(--trans);
  box-shadow: 0 1px 8px rgba(0,0,0,0.05);
}
.pain-card:hover {
  border-top-color: var(--red);
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.1), 0 0 0 1px rgba(232,0,61,0.1);
}

.pain-card__num {
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--red);
  margin-bottom: 14px;
  text-transform: uppercase;
}

.pain-card__quote {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--text-dark);
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 12px;
}

.pain-card__text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ─────────────────────────────────────────────
   STEPS — PROTOCOLO ALIANÇA
───────────────────────────────────────────── */
.steps {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 64px;
}

.step {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  background: var(--black-3);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: border-color var(--trans), box-shadow var(--trans);
}
.step:hover {
  border-color: var(--gold-border);
  box-shadow: 0 0 32px var(--gold-glow), 0 8px 32px rgba(0,0,0,0.3);
}
.step--reverse {
  grid-template-columns: 1fr 280px;
}
.step--reverse .step__visual {
  order: 2;
}
.step--reverse .step__content {
  order: 1;
}

/* Gold highlighted step */
.step--gold {
  border-color: rgba(201,168,76,0.4);
  background: linear-gradient(135deg, #0D0A02 0%, var(--black-3) 100%);
}
.step--gold:hover {
  border-color: var(--gold);
  box-shadow: 0 0 48px rgba(201,168,76,0.2), 0 8px 40px rgba(0,0,0,0.4);
}

/* Step visual panel */
.step__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 36px 28px;
  background: rgba(255,255,255,0.018);
  border-right: 1px solid var(--border-dark);
  gap: 12px;
  position: relative;
  margin: 0;
  transition: background var(--trans);
}
.step:hover .step__visual {
  background: rgba(201,168,76,0.04);
}
.step--reverse .step__visual {
  border-right: none;
  border-left: 1px solid var(--border-dark);
}
.step__visual--gold {
  background: rgba(201,168,76,0.04);
  border-color: rgba(201,168,76,0.2);
}
.step--gold:hover .step__visual {
  background: rgba(201,168,76,0.07);
}

.step__visual svg {
  width: 100%;
  max-width: 220px;
  height: auto;
  display: block;
}
.step__visual-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(201,168,76,0.5);
}

/* Step content */
.step__content {
  padding: 40px 44px;
}

.step__num {
  display: block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 3px;
  color: var(--gold-dim);
  margin-bottom: 8px;
  text-transform: uppercase;
}
.step__num--gold {
  color: var(--gold);
}

.step__gold-badge {
  display: inline-block;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.step__title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.3;
}

.step__tag {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--gold-dim);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
}

.step__text {
  font-size: 14.5px;
  color: rgba(255,255,255,0.62);
  line-height: 1.78;
  margin-bottom: 20px;
}

.step__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.step__list li {
  font-size: 13.5px;
  color: rgba(255,255,255,0.48);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.step__list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold-dim);
  font-size: 13px;
}

/* MEC inline chip */
.mec-verify-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  background: rgba(201,168,76,0.07);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 6px;
  padding: 10px 16px;
  margin: 18px 0;
  font-size: 12.5px;
  color: rgba(255,255,255,0.7);
}
.mec-verify-chip__label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  font-weight: 700;
  white-space: nowrap;
}

/* MEC impact row */
.mec-impact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
  padding: 14px 18px;
  background: rgba(34,197,94,0.06);
  border-radius: 6px;
  border: 1px solid rgba(34,197,94,0.15);
}
.mec-impact-row span {
  font-size: 12.5px;
  color: rgba(255,255,255,0.6);
}

/* ─────────────────────────────────────────────
   WEBURN CAROUSEL
───────────────────────────────────────────── */
.carousel {
  position: relative;
  margin-bottom: 48px;
}
.carousel__viewport {
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.carousel__track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.weburn-card {
  flex: 0 0 calc(100% / 3);
  padding: 8px;
}
@media (max-width: 1023px) {
  .weburn-card { flex: 0 0 50%; }
}
@media (max-width: 639px) {
  .weburn-card { flex: 0 0 100%; }
}

.weburn-card > * {
  height: 100%;
}

.weburn-card__inner {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  height: 100%;
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
  box-shadow: 0 1px 8px rgba(0,0,0,0.05);
}

/* Since weburn-card IS the inner element in this structure: */
.weburn-card {
  flex: 0 0 calc(100% / 3);
  min-width: 0;
}

/* Redefine weburn-card as both container and card */
.carousel__track .weburn-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  margin: 4px;
  flex: 0 0 calc(33.333% - 8px);
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
  box-shadow: 0 1px 8px rgba(0,0,0,0.05);
  cursor: default;
}
.carousel__track .weburn-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1), 0 0 0 1px rgba(201,168,76,0.2);
  border-color: rgba(201,168,76,0.35);
}

.weburn-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.weburn-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), #6B0016);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}
.weburn-card__meta {
  text-align: right;
}
.weburn-card__followers {
  display: block;
  font-size: 22px;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  letter-spacing: -0.5px;
}
.weburn-card__platform {
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.weburn-card__name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.weburn-card__desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Carousel controls */
.carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 28px;
}
.carousel__btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--border-light);
  background: var(--white);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color var(--trans), background var(--trans), color var(--trans), box-shadow var(--trans);
}
.carousel__btn:hover:not(:disabled) {
  border-color: var(--red);
  color: var(--red);
  box-shadow: 0 0 12px var(--red-glow);
}
.carousel__btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.carousel__dots {
  display: flex;
  gap: 8px;
}
.carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0,0,0,0.15);
  cursor: pointer;
  transition: background var(--trans), transform var(--trans);
}
.carousel__dot--active {
  background: var(--red);
  transform: scale(1.25);
}

/* Bridge box */
.bridge-box {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-left: 3px solid var(--red);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 28px 40px;
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.8;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

/* ─────────────────────────────────────────────
   PARTNERS — FABRANI PROOF
───────────────────────────────────────────── */
.partners-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}
.partner-card {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 200px;
  background: var(--black-4);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  transition: border-color var(--trans), transform var(--trans), box-shadow var(--trans);
}
.partner-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3), 0 0 16px var(--gold-glow);
}
.partner-card--wide {
  flex: 1.5;
}
.partner-card__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dim), #3D2800);
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.partner-card__info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.partner-card__info strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}
.partner-card__info span {
  font-size: 12px;
  color: rgba(255,255,255,0.38);
  line-height: 1.3;
}

/* MEC Block */
.mec-block {
  display: flex;
  align-items: center;
  gap: 32px;
  background: var(--black-4);
  border: 1px solid rgba(201,168,76,0.25);
  border-top: 2px solid var(--gold);
  border-radius: var(--radius-xl);
  padding: 36px 44px;
  transition: box-shadow var(--trans);
}
.mec-block:hover {
  box-shadow: 0 0 40px var(--gold-glow);
}
.mec-block__badge svg {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
}
.mec-block__text {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.mec-block__eyebrow {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.35);
}
.mec-block__url {
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
}
.mec-block__result {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
}
.mec-block__profs {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

/* ─────────────────────────────────────────────
   OFFER CARDS
───────────────────────────────────────────── */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 56px;
}
.offer-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
  box-shadow: 0 1px 8px rgba(0,0,0,0.05);
}
.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1), 0 0 0 1px rgba(232,0,61,0.12);
  border-color: rgba(232,0,61,0.25);
}
.offer-card__icon {
  width: 44px;
  height: 44px;
}
.offer-card__icon svg {
  width: 100%;
  height: 100%;
}
.offer-card strong {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.35;
}
.offer-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Calendar placeholder */
.calendar-wrap {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.calendar-placeholder {
  background: var(--white);
  border: 2px dashed rgba(232,0,61,0.2);
  border-radius: var(--radius-xl);
  padding: 56px 40px;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.calendar-placeholder__icon {
  opacity: 0.7;
  margin-bottom: 6px;
}
.calendar-placeholder__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
}
.calendar-placeholder__sub {
  font-size: 13px;
  color: var(--text-muted);
}

.cta-trust {
  margin-top: 16px;
  font-size: 12.5px;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.8;
}
.cta-trust small {
  font-size: 11px;
}

/* Who box */
.who-box {
  max-width: 640px;
  margin: 52px auto 0;
  background: rgba(232,0,61,0.04);
  border: 1px solid rgba(232,0,61,0.15);
  border-radius: var(--radius-xl);
  padding: 32px 36px;
}
.who-box__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 18px;
}
.who-box ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 22px;
}
.who-box ul li {
  font-size: 14px;
  color: var(--text-mid);
  padding-left: 22px;
  position: relative;
  line-height: 1.55;
}
.who-box ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}
.who-box__note {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  border-top: 1px solid rgba(0,0,0,0.08);
  padding-top: 18px;
}

/* ─────────────────────────────────────────────
   FINAL CTA
───────────────────────────────────────────── */
.section--final {
  position: relative;
  padding: 120px 0;
  text-align: center;
  background: var(--black);
  overflow: hidden;
}
.final__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.final__grid {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 63px, rgba(255,255,255,0.015) 64px),
    repeating-linear-gradient(90deg, transparent, transparent 63px, rgba(255,255,255,0.015) 64px);
}
.final__glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.1) 0%, transparent 70%);
  filter: blur(40px);
}

.final__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}
.final__title {
  font-family: var(--font-serif);
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 28px;
  background: linear-gradient(135deg, var(--white) 40%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.final__title em {
  font-style: italic;
  -webkit-text-fill-color: transparent;
}
.final__body {
  font-size: 17px;
  color: rgba(255,255,255,0.58);
  line-height: 1.85;
  margin-bottom: 44px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.final__trust {
  margin-top: 16px;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

.site-footer {
  margin-top: 64px;
  padding-top: 28px;
  border-top: 1px solid var(--border-dark);
  font-size: 13px;
  color: rgba(255,255,255,0.22);
  line-height: 2.2;
}

/* ─────────────────────────────────────────────
   STICKY BAR
───────────────────────────────────────────── */
.sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  box-shadow: 0 -2px 16px rgba(0,0,0,0.3);
}
.sticky-bar--visible {
  transform: translateY(0);
}

/* ─────────────────────────────────────────────
   RESPONSIVE — MEDIUM
───────────────────────────────────────────── */
@media (max-width: 1023px) {
  .hero__visual {
    opacity: 0.35;
    width: 44vw;
  }
  .step {
    grid-template-columns: 220px 1fr;
  }
  .step--reverse {
    grid-template-columns: 1fr 220px;
  }
  .step__content { padding: 32px 32px; }
  .mec-block { padding: 28px 32px; gap: 24px; }
}

@media (max-width: 900px) {
  .step,
  .step--reverse {
    grid-template-columns: 1fr;
  }
  .step--reverse .step__visual { order: 0; }
  .step--reverse .step__content { order: 0; }
  .step__visual {
    border-right: none !important;
    border-left: none !important;
    border-bottom: 1px solid var(--border-dark);
    padding: 28px 20px;
  }
  .step__visual svg { max-width: 160px; }
  .mec-block {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .carousel__track .weburn-card { flex: 0 0 calc(50% - 8px); }
}

/* ─────────────────────────────────────────────
   RESPONSIVE — MOBILE
───────────────────────────────────────────── */
@media (max-width: 768px) {
  .section { padding: 72px 0; }

  .hero {
    padding: 96px 0 72px;
    min-height: auto;
  }
  .hero__visual { display: none; }
  .hero__headline { font-size: 36px; }

  .cred-bar__track { flex-wrap: wrap; }
  .cred-stat { padding: 10px 16px; }
  .cred-bar__sep { display: none; }
  .cred-stat--mec { width: 100%; justify-content: center; border-top: 1px solid rgba(0,0,0,0.08); padding-top: 14px; margin-top: 4px; }

  .step__content { padding: 24px 22px; }

  .carousel__track .weburn-card { flex: 0 0 calc(100% - 8px); }

  .bridge-box { padding: 22px 24px; font-size: 15px; }

  .pain-grid { grid-template-columns: 1fr; }

  .sticky-bar { display: block; }
  body { padding-bottom: 58px; }

  .section__title { font-size: 28px; }

  .offer-grid { grid-template-columns: 1fr 1fr; }

  .mec-block { padding: 24px 20px; }

  .btn--xl { font-size: 14px; padding: 22px 32px; }
  .btn--lg  { font-size: 14px; padding: 20px 32px; }
}

@media (max-width: 540px) {
  .hero__headline { font-size: 30px; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .btn--outline { justify-content: center; }

  .offer-grid { grid-template-columns: 1fr; }
  .partners-grid { flex-direction: column; }
  .partner-card { min-width: unset; }
  .partner-card--wide { flex: 1; }

  .pain-intro { padding: 20px 20px; }
  .who-box { padding: 22px 20px; }

  .final__title { font-size: 28px; }
}

/* ─────────────────────────────────────────────
   FORMULÁRIO PROJETO ALIANÇA
───────────────────────────────────────────── */
.form-wrap {
  max-width: 760px;
  margin: 0 auto;
}

/* Notice */
.form-notice {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: rgba(201,168,76,0.07);
  border: 1px solid rgba(201,168,76,0.28);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  margin-bottom: 36px;
}
.form-notice__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}
.form-notice p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.65;
}
.form-notice strong { color: var(--text-dark); }

/* Form layout */
.alianca-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.form-field--full { grid-column: 1 / -1; }

.form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.01em;
}
.form-req { color: var(--red); margin-left: 2px; }

.form-input {
  width: 100%;
  padding: 13px 16px;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--text-dark);
  background: var(--white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius);
  outline: none;
  transition: border-color var(--trans), box-shadow var(--trans);
  appearance: none;
}
.form-input::placeholder { color: #aaa; }
.form-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.form-input--error {
  border-color: var(--red) !important;
  box-shadow: 0 0 0 3px rgba(232,0,61,0.1) !important;
}
.form-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.form-error {
  font-size: 12px;
  color: var(--red);
  min-height: 16px;
  display: block;
}

/* Divider */
.form-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 4px 0;
}
.form-divider::before,
.form-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-light);
}
.form-divider span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}

/* Radio group */
.radio-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}
.radio-opt {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 10px 20px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius);
  background: var(--white);
  transition: border-color var(--trans), background var(--trans);
  user-select: none;
}
.radio-opt input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
.radio-opt__box {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid #ccc;
  flex-shrink: 0;
  transition: border-color var(--trans), background var(--trans);
  position: relative;
}
.radio-opt__box::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  transition: opacity var(--trans);
}
.radio-opt input:checked ~ .radio-opt__box {
  border-color: var(--gold);
}
.radio-opt input:checked ~ .radio-opt__box::after { opacity: 1; }
.radio-opt:has(input:checked) {
  border-color: var(--gold);
  background: rgba(201,168,76,0.06);
}
.radio-opt__label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
}

/* Conditional field */
.form-conditional {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease, margin-top 0.3s ease;
  margin-top: 0;
}
.form-conditional--show {
  max-height: 80px;
  opacity: 1;
  margin-top: 12px;
}

/* Submit */
.form-submit {
  width: 100%;
  margin-top: 8px;
  justify-content: center;
}
.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-privacy {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Success state */
.form-success {
  text-align: center;
  padding: 60px 32px;
}
.form-success__icon svg { width: 64px; height: 64px; margin-bottom: 20px; }
.form-success__title {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.form-success__text {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.65;
}

/* Responsive form */
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .form-notice { flex-direction: column; gap: 10px; }
}

/* ─────────────────────────────────────────────
   COMO FUNCIONA — PROCESS TIMELINE
───────────────────────────────────────────── */
.process-timeline {
  display: flex;
  flex-direction: column;
  max-width: 820px;
  margin: 0 auto 60px;
}

.process-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 0 32px;
  padding-bottom: 52px;
}
.process-step:last-child { padding-bottom: 0; }

.process-step__left {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.process-step__bubble {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid rgba(201,168,76,0.5);
  background: rgba(201,168,76,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}
.process-step__bubble--gold {
  background: rgba(201,168,76,0.18);
  border-color: var(--gold);
}

.process-step__connector {
  width: 2px;
  flex: 1;
  min-height: 48px;
  background: linear-gradient(to bottom, rgba(201,168,76,0.4), rgba(201,168,76,0.08));
  margin-top: 10px;
}

.process-step__timing {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.35);
  background: rgba(201,168,76,0.07);
  border-radius: 4px;
  padding: 4px 10px;
  margin-bottom: 14px;
}
.process-step__timing--gold {
  background: rgba(201,168,76,0.15);
  border-color: var(--gold);
}

.process-step__title {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.2;
}

.process-step__desc {
  color: rgba(255,255,255,0.62);
  font-size: 15px;
  margin-bottom: 16px;
  line-height: 1.65;
}

.process-step__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 4px;
}
.process-step__list li {
  font-size: 14px;
  color: rgba(255,255,255,0.68);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.process-step__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.65;
}

.deliverables-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.dpill {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.78);
  border: 1px solid rgba(201,168,76,0.3);
  background: rgba(201,168,76,0.07);
  border-radius: 20px;
  padding: 6px 14px;
}
.dpill--gold {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(201,168,76,0.14);
}

/* ─────────────────────────────────────────────
   ENTREGÁVEIS — DELIVER GRID
───────────────────────────────────────────── */
.deliver-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.deliver-card {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  transition: transform var(--trans), box-shadow var(--trans);
}
.deliver-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 56px rgba(0,0,0,0.1);
}
.deliver-card--dark {
  background: var(--black-3);
  border-color: rgba(201,168,76,0.22);
}

.deliver-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 18px;
}
.deliver-card__num {
  font-family: var(--font-sans);
  font-size: 52px;
  font-weight: 900;
  line-height: 1;
  color: rgba(201,168,76,0.18);
}
.deliver-card__num--light { color: rgba(201,168,76,0.32); }

.deliver-card__icon { width: 48px; height: 48px; flex-shrink: 0; }

.deliver-card__title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
  line-height: 1.2;
}
.deliver-card__title--light { color: var(--white); }

.deliver-card__sub {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.deliver-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  flex: 1;
}
.deliver-card__list li {
  font-size: 14px;
  color: var(--text-mid);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.deliver-card__list--light li { color: rgba(255,255,255,0.68); }
.deliver-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.55;
}

.deliver-card__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 4px;
  padding: 4px 10px;
  background: rgba(201,168,76,0.07);
  margin-top: auto;
}
.deliver-card__tag--gold {
  border-color: var(--gold);
  background: rgba(201,168,76,0.14);
}

/* ─────────────────────────────────────────────
   TECNOLOGIA — TECH GRID
───────────────────────────────────────────── */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.tech-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: border-color var(--trans), background var(--trans);
}
.tech-card:hover { border-color: rgba(201,168,76,0.35); }
.tech-card--highlight {
  border-color: rgba(201,168,76,0.35);
  background: rgba(201,168,76,0.05);
}

.tech-card__badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  border-radius: 4px;
  padding: 3px 8px;
  margin-bottom: 14px;
  width: fit-content;
}

.tech-card__icon { width: 52px; height: 52px; margin-bottom: 20px; }

.tech-card__title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.tech-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tech-card__list li {
  font-size: 14px;
  color: rgba(255,255,255,0.62);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.tech-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.6;
}

/* Acompanhamento box */
.acomp-box {
  border: 1px solid rgba(201,168,76,0.22);
  border-radius: var(--radius-lg);
  padding: 44px 48px;
  background: rgba(201,168,76,0.04);
}
.acomp-box__title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 32px;
  text-align: center;
}
.acomp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.acomp-item { text-align: center; }
.acomp-item strong {
  display: block;
  color: var(--white);
  font-size: 15px;
  margin-bottom: 8px;
}
.acomp-item p {
  color: rgba(255,255,255,0.52);
  font-size: 14px;
  line-height: 1.6;
}

/* ─────────────────────────────────────────────
   PARA QUEM É — AUDIENCE GRID
───────────────────────────────────────────── */
.audience-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: 860px;
  margin: 0 auto 40px;
}
.audience-pill {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  background: var(--white);
  border: 1.5px solid rgba(201,168,76,0.4);
  border-radius: 40px;
  padding: 11px 22px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: background var(--trans), border-color var(--trans), transform var(--trans);
}
.audience-pill:hover {
  background: rgba(201,168,76,0.08);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.not-for-box {
  max-width: 660px;
  margin: 0 auto 44px;
  padding: 20px 28px;
  border-left: 3px solid var(--red);
  background: rgba(232,0,61,0.04);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.not-for-box p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ─────────────────────────────────────────────
   GARANTIA CONTRATUAL
───────────────────────────────────────────── */
.section--guarantee {
  background: var(--black-3);
  border-top: 1px solid rgba(201,168,76,0.14);
  border-bottom: 1px solid rgba(201,168,76,0.14);
}

.guarantee-wrap {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 52px;
  align-items: center;
  max-width: 880px;
  margin: 0 auto;
}

.guarantee-icon svg { width: 100px; height: 100px; }

.guarantee-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.guarantee-title {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3.2vw, 38px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 20px;
}
.guarantee-title em { color: var(--gold); font-style: italic; }

.guarantee-text {
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 26px;
}

.guarantee-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.gchip {
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.38);
  background: rgba(201,168,76,0.07);
  border-radius: 20px;
  padding: 5px 14px;
}

/* ─────────────────────────────────────────────
   RESPONSIVE — NOVAS SEÇÕES
───────────────────────────────────────────── */
@media (max-width: 960px) {
  .deliver-grid,
  .tech-grid { grid-template-columns: 1fr 1fr; }
  .deliver-card--dark { grid-column: 1 / -1; }

  .acomp-grid { grid-template-columns: 1fr; gap: 20px; }
  .acomp-box { padding: 32px 28px; }

  .guarantee-wrap {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }
  .guarantee-icon { display: flex; justify-content: center; }
  .guarantee-chips { justify-content: center; }
}

@media (max-width: 700px) {
  .deliver-grid,
  .tech-grid { grid-template-columns: 1fr; }
  .deliver-card--dark { grid-column: auto; }

  .process-step {
    grid-template-columns: 44px 1fr;
    gap: 0 18px;
  }
  .process-step__bubble { width: 40px; height: 40px; font-size: 14px; }

  .audience-pill { font-size: 13px; padding: 9px 16px; }
  .not-for-box { padding: 16px 20px; }

  .acomp-box { padding: 24px 20px; }
  .acomp-box__title { font-size: 18px; }
}
