/* ============================================================
   SGCOR — Seções
   ============================================================ */

/* ---------- 0. Header ---------- */

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding-block: 1.5rem;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* CONTENT_PENDING(logoAsset): substituir o wordmark textual pelo
   arquivo de logo oficial da SGCOR quando disponível. */
.brand {
  display: inline-flex;
  align-items: center;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--white);
  text-decoration: none;
}

.brand img {
  display: block;
  height: 34px;
  width: auto;
}

.brand--footer img {
  height: 30px;
}

.brand--footer {
  color: var(--white);
}

.header-link {
  font-size: var(--fs-small);
  font-weight: 500;
  color: rgba(245, 248, 252, 0.75);
  text-decoration: none;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-btn);
  transition: color 0.2s ease;
}

.header-link:hover {
  color: var(--white);
}

/* ---------- 1. Hero ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* Foto da equipe ao fundo + véu navy para garantir contraste do texto */
  background:
    linear-gradient(
      to bottom,
      rgba(10, 27, 51, 0.88) 0%,
      rgba(10, 27, 51, 0.78) 45%,
      rgba(10, 27, 51, 0.92) 100%
    ),
    url("../images/IMAGEM HERO.png") center 30% / cover no-repeat var(--navy);
  color: var(--paper);
  overflow: hidden;
  padding-block: clamp(5rem, 9vh, 6.5rem) clamp(3rem, 6vh, 4rem);
}

.hero__bars {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(4px, 1vw, 14px);
  padding-inline: clamp(0.5rem, 2vw, 2rem);
  pointer-events: none;
  /* Máscara para não prejudicar a leitura do conteúdo central */
  -webkit-mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.30) 45%,
    rgba(0, 0, 0, 0.85) 100%
  );
  mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.30) 45%,
    rgba(0, 0, 0, 0.85) 100%
  );
}

.hero__bar {
  flex: 1;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(to top, rgba(62, 141, 227, 0.42), transparent);
  opacity: 0.55;
  transform-origin: bottom center;
  will-change: transform, opacity;
}

.hero__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(880px, 90vw);
  height: min(520px, 60vh);
  transform: translate(-50%, -50%);
  background: radial-gradient(
    ellipse at center,
    rgba(62, 141, 227, 0.16),
    transparent 65%
  );
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1040px;
  margin-inline: auto;
  padding-inline: var(--pad-x);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.hero__brand {
  display: block;
  height: clamp(44px, 5.5vw, 64px);
  width: auto;
  margin-bottom: 0.5rem;
}

.hero__eyebrow {
  margin-bottom: 0;
}

.hero__title {
  font-size: var(--fs-hero);
  font-weight: var(--fw-title-strong);
  color: rgba(245, 248, 252, 0.92);
  letter-spacing: -0.025em;
  max-width: 980px;
}

.hero__title-highlight {
  color: var(--white);
  text-shadow: 0 0 32px var(--blue-glow);
}

.hero__sub {
  font-size: var(--fs-body-lg);
  color: rgba(245, 248, 252, 0.74);
  max-width: 820px;
}

/* Estado inicial da entrada do hero (revertido se JS falhar) */
.js-enabled .hero__anim {
  opacity: 0;
  transform: translateY(36px);
}

/* ---------- 2. Dor operacional (texto + VSL, metade a metade) ---------- */

.pain__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
}

.pain__vsl {
  position: sticky;
  top: 2rem;
}

.vsl-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-card-lg);
  overflow: hidden;
  background: var(--navy);
  border: 1px solid rgba(62, 141, 227, 0.25);
  box-shadow: var(--shadow-lg);
}

.vsl-frame iframe,
.vsl-frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.vsl-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: rgba(245, 248, 252, 0.75);
  background: radial-gradient(
    ellipse at center,
    rgba(62, 141, 227, 0.16),
    transparent 70%
  );
}

.vsl-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(62, 141, 227, 0.18);
  border: 2px solid rgba(62, 141, 227, 0.5);
  color: var(--paper);
}

.vsl-play svg {
  width: 30px;
  height: 30px;
  margin-left: 4px;
}

.pain-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.pain-list li {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  font-size: var(--fs-body-lg);
  color: var(--ink);
}

.pain-list .icon {
  margin-top: 0.25rem;
}

.pain__closing {
  margin-top: 2rem;
  padding: 1.5rem 1.75rem;
  border-left: 4px solid var(--amber);
  border-radius: 0 var(--radius-card-sm) var(--radius-card-sm) 0;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  font-size: var(--fs-body-lg);
  font-weight: 500;
}

.pain__physics {
  position: sticky;
  top: 2rem;
}

.physics-stage {
  position: relative;
  min-height: 480px;
  border-radius: var(--radius-card-lg);
  background: var(--navy);
  overflow: hidden;
  border: 1px solid rgba(62, 141, 227, 0.2);
}

.physics-stage__hint {
  position: absolute;
  bottom: 0.9rem;
  left: 0;
  right: 0;
  text-align: center;
  font-size: var(--fs-small);
  color: rgba(245, 248, 252, 0.4);
  pointer-events: none;
}

.physics-tag {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius-pill);
  background: var(--navy-2);
  border: 1px solid rgba(62, 141, 227, 0.4);
  color: var(--paper);
  font-size: var(--fs-small);
  font-weight: 500;
  white-space: nowrap;
  cursor: grab;
  user-select: none;
  touch-action: none;
  will-change: transform;
}

.physics-tag:active {
  cursor: grabbing;
}

/* Grade estática de chips (mobile / reduced-motion) */
.pain__chips {
  display: none;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding: 1.5rem;
  border-radius: var(--radius-card-lg);
  background: var(--navy);
}

/* ---------- 3. Ecossistema ---------- */

.ecosystem {
  background: var(--paper);
  position: relative;
  transition: background-color 1.4s var(--ease-dark);
}

.ecosystem.is-dark {
  background: var(--navy);
}

.ecosystem__head h2,
.ecosystem__head .lead,
.ecosystem__head .eco-sub {
  transition: color 1.2s var(--ease-dark);
}

.ecosystem h2 {
  color: var(--ink);
}

.ecosystem.is-dark h2 {
  color: var(--white);
}

.ecosystem .lead {
  color: var(--muted);
}

.ecosystem.is-dark .lead {
  color: rgba(245, 248, 252, 0.72);
}

.eco-sub {
  font-weight: 600;
  margin-top: 1.5rem;
  color: var(--ink);
}

.ecosystem.is-dark .eco-sub {
  color: rgba(245, 248, 252, 0.85);
}

/* Overlay que dissolve na transição clara → navy */
.ecosystem__overlay {
  position: absolute;
  inset: 0;
  background: var(--paper);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}

.bento {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.25rem;
}

.bento__card {
  grid-column: span 4;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 2.5vw, 2rem);
  border-radius: var(--radius-card);
  background: var(--navy-2);
  border: 1px solid rgba(62, 141, 227, 0.18);
  color: rgba(245, 248, 252, 0.78);
}

.bento__card h3 {
  color: var(--white);
  margin-bottom: 0.6rem;
  font-size: var(--fs-h3);
}

.bento__card--w7 {
  grid-column: span 7;
}

.bento__card--w5 {
  grid-column: span 5;
}

.bento__card--w6 {
  grid-column: span 6;
}

.bento__badge {
  margin-bottom: 1rem;
  align-self: flex-start;
}

/* Microvisualizações abstratas de produto (ilustrativas) */
.mini-viz {
  margin-top: auto;
  padding-top: 1.25rem;
}

.mini-viz svg {
  width: 100%;
  height: auto;
  max-height: 84px;
}

.viz-checklist {
  margin-top: auto;
  padding-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.viz-checklist__item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: var(--fs-small);
  color: rgba(245, 248, 252, 0.6);
}

.viz-checklist__item .icon {
  width: 18px;
  height: 18px;
  color: var(--green);
  opacity: 0.3;
  transition: opacity 0.4s ease;
}

.viz-checklist__item.is-checked .icon {
  opacity: 1;
}

/* ---------- 4. Comparativo ---------- */

.comparison-table-wrap {
  border-radius: var(--radius-card);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.comparison-table th,
.comparison-table td {
  padding: 1.1rem 1.4rem;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

.comparison-table thead th {
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.comparison-table thead th:nth-child(1) {
  color: var(--muted);
}

.comparison-table thead th:nth-child(2) {
  color: var(--muted);
}

.comparison-table thead th.th-sgcor {
  background: var(--navy);
  color: var(--white);
}

.comparison-table thead th.th-sgcor .th-check {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.comparison-table thead th.th-sgcor .icon {
  width: 18px;
  height: 18px;
  color: var(--green);
}

.comparison-table tbody tr:nth-child(even) {
  background: rgba(245, 248, 252, 0.6);
}

.comparison-table tbody tr:last-child th,
.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table tbody th {
  font-weight: 600;
  color: var(--ink);
  width: 22%;
}

.cmp-trad {
  color: var(--muted);
  width: 39%;
}

.cmp-sgcor {
  color: var(--ink);
  font-weight: 500;
  width: 39%;
  background: rgba(31, 164, 91, 0.035);
}

.cmp-cell {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
}

.cmp-cell .icon {
  width: 20px;
  height: 20px;
  margin-top: 0.2rem;
}

.comparison__cta {
  margin-top: 2.5rem;
  text-align: center;
}

/* Rótulos usados apenas na visão em cards (mobile) */
.cmp-label {
  display: none;
}

/* ---------- 5. Prova social ---------- */

.proof__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 2rem;
  border-radius: var(--radius-card);
  background: var(--navy-2);
  border: 1px solid rgba(62, 141, 227, 0.18);
}

.testimonial-card blockquote {
  font-size: var(--fs-body-lg);
  color: rgba(245, 248, 252, 0.88);
}

.testimonial-card figcaption {
  margin-top: auto;
  font-size: var(--fs-small);
  color: rgba(245, 248, 252, 0.6);
}

.testimonial-card figcaption strong {
  display: block;
  color: var(--white);
  font-size: var(--fs-body);
}

.metrics-strip {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 4vw, 4rem);
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(62, 141, 227, 0.2);
}

.metric {
  text-align: center;
}

.metric__value {
  display: block;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
}

.metric__label {
  font-size: var(--fs-small);
  color: rgba(245, 248, 252, 0.6);
}

/* ---------- 6. Planos ---------- */

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

.price-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.75rem, 3vw, 2.25rem);
  border-radius: var(--radius-card-lg);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.price-card--featured {
  border: 2px solid var(--green);
  box-shadow: 0 16px 48px rgba(31, 164, 91, 0.12);
  position: relative;
}

.price-card__flag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.3rem 1rem;
  border-radius: var(--radius-pill);
  background: var(--navy);
  color: var(--white);
  font-size: var(--fs-small);
  font-weight: 600;
  white-space: nowrap;
}

.price-card h3 {
  font-size: var(--fs-h3);
}

.price-card__was {
  font-size: var(--fs-small);
  color: var(--muted);
  text-decoration: line-through;
}

.price-card__price {
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.1;
}

.price-card__price small {
  font-size: var(--fs-body);
  font-weight: 500;
  color: var(--muted);
}

.price-card__desc {
  color: var(--muted);
  flex-grow: 1;
}

.price-card .btn {
  width: 100%;
}

/* ---------- 7. Objeções ---------- */

.objections {
  background: radial-gradient(
    ellipse at 50% 0%,
    var(--white) 0%,
    var(--paper) 70%
  );
}

.objections__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.objection-card {
  padding: clamp(1.75rem, 3vw, 2.25rem);
  border-radius: var(--radius-card);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.objection-card h3 {
  font-size: var(--fs-h3);
  margin-bottom: 0.75rem;
  color: var(--ink);
}

.objection-card p {
  color: var(--muted);
  font-size: var(--fs-body-lg);
}

/* ---------- 8. Processo de migração ---------- */

.process__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.process-card {
  padding: 2rem;
  border-radius: var(--radius-card);
  background: var(--navy-2);
  border: 1px solid rgba(62, 141, 227, 0.18);
  will-change: transform;
}

.process-card__step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(62, 141, 227, 0.15);
  color: var(--blue);
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.process-card h3 {
  font-size: var(--fs-h3);
  margin-bottom: 0.6rem;
}

.process-card p {
  color: rgba(245, 248, 252, 0.72);
}

/* ---------- 9. Urgência real ---------- */

.urgency-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-block: 3rem;
  position: relative;
}

.urgency-timeline::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--line);
}

.timeline-item {
  position: relative;
  text-align: center;
  padding: 0 1rem;
}

.timeline-item__dot {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--line);
  color: var(--muted);
  margin-bottom: 1rem;
}

.timeline-item__month {
  display: block;
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.timeline-item p {
  color: var(--ink);
  font-weight: 500;
}

.urgency__cta {
  text-align: center;
}

/* ---------- 11. Demonstração / Formulário ---------- */

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

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

.demo__particle {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(62, 141, 227, 0.45);
  will-change: transform, opacity;
}

.demo__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: start;
}

.demo__copy .lead {
  color: rgba(245, 248, 252, 0.74);
}

.demo__ps {
  margin-top: 2rem;
  padding: 1.5rem;
  border-radius: var(--radius-card-sm);
  background: rgba(18, 42, 78, 0.6);
  border: 1px solid rgba(62, 141, 227, 0.18);
  font-size: var(--fs-small);
  color: rgba(245, 248, 252, 0.72);
}

.demo__ps strong {
  color: var(--white);
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border-radius: var(--radius-card-lg);
  background: var(--navy-2);
  border: 1px solid rgba(62, 141, 227, 0.22);
  box-shadow: var(--shadow-lg);
}

.lead-form__title {
  font-size: var(--fs-h3);
  color: var(--white);
}

.lead-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}

/* ---------- 12. Footer ---------- */

.site-footer {
  background: #081527;
  color: rgba(245, 248, 252, 0.6);
  padding-block: 3rem;
}

.site-footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.site-footer a {
  color: rgba(245, 248, 252, 0.6);
  text-decoration: none;
  font-size: var(--fs-small);
}

.site-footer a:hover {
  color: var(--white);
}

.site-footer small {
  font-size: var(--fs-small);
}

/* ============================================================
   Novas dobras (revisão de copy 2026-07)
   ============================================================ */

/* ---------- Hero: CTA com especialista ---------- */

.hero__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.hero__specialist {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-align: left;
}

.specialist-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy-2);
  border: 2px solid rgba(62, 141, 227, 0.45);
  color: var(--paper);
  font-weight: 700;
  flex-shrink: 0;
}

.specialist-avatar--lg {
  width: 72px;
  height: 72px;
  font-size: 1.5rem;
}

/* ---------- Hero: cards flutuantes de produto ---------- */

/* Fileira estática de cards de produto na base do hero */
.hero__visual {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: clamp(1.5rem, 4vh, 2.5rem);
  padding-inline: var(--pad-x);
  pointer-events: none;
}

.hero__content {
  z-index: 2;
}

.float-card {
  position: static;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.2rem;
  border-radius: var(--radius-card-sm);
  background: var(--navy-2);
  border: 1px solid rgba(62, 141, 227, 0.3);
  box-shadow: 0 12px 32px rgba(10, 27, 51, 0.4);
  color: var(--paper);
  font-weight: 600;
  font-size: var(--fs-small);
  white-space: nowrap;
  will-change: transform;
}

.float-card__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  flex-shrink: 0;
}

.float-card__logo .icon {
  width: 18px;
  height: 18px;
}

.float-card__logo--blue {
  background: rgba(62, 141, 227, 0.16);
  color: var(--blue);
}

.float-card__logo--green {
  background: rgba(31, 164, 91, 0.16);
  color: var(--green);
}

.float-card__logo--amber {
  background: rgba(245, 166, 35, 0.16);
  color: var(--amber);
}

/* ---------- Produtos do ecossistema ---------- */

.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 2.5vw, 2rem);
  border-radius: var(--radius-card);
  background: var(--navy-2);
  border: 1px solid rgba(62, 141, 227, 0.18);
  color: rgba(245, 248, 252, 0.78);
}

.product-card__head {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.product-card__head h3 {
  color: var(--white);
  font-size: var(--fs-h3);
}

/* Variante com logo oficial do produto no lugar de ícone + título */
.product-card__head--logo {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
}

.product-card__logo {
  height: 34px;
  width: auto;
}

/* Ícone de app (Minha Corretora) em caixa branca, como no site oficial */
.product-card__appicon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--white);
}

.product-card__appicon img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.product-card__tag {
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
}

.product-card__price {
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(220, 229, 240, 0.12);
  color: rgba(245, 248, 252, 0.66);
  font-size: var(--fs-small);
}

.product-card__price strong {
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 700;
}

.product-card__price small {
  display: block;
  margin-top: 0.2rem;
}

/* ---------- Combo em destaque ---------- */

.combo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border-radius: var(--radius-card-lg);
  background: var(--white);
  border: 2px solid var(--green);
  box-shadow: 0 24px 64px rgba(10, 27, 51, 0.45);
}

.combo h3 {
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.combo__flag {
  font-size: var(--fs-small);
  font-weight: 600;
  padding: 0.25rem 0.8rem;
  border-radius: var(--radius-pill);
  background: rgba(31, 164, 91, 0.12);
  color: var(--green-d);
  white-space: nowrap;
}

.combo__price {
  margin-top: 0.5rem;
  color: var(--muted);
  font-size: var(--fs-body-lg);
}

.combo__price s {
  opacity: 0.75;
}

.combo__price strong {
  color: var(--ink);
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  font-weight: 750;
}

.combo__checks {
  margin-top: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.combo__checks li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  color: var(--ink);
  font-weight: 500;
}

.combo__checks .icon {
  width: 20px;
  height: 20px;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

/* ---------- O que isso vira na prática ---------- */

.practice {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.practice-card {
  padding: clamp(1.5rem, 2.5vw, 2rem);
  border-radius: var(--radius-card);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.practice-card h3 {
  margin-bottom: 0.5rem;
}

.practice-card p {
  color: var(--muted);
}

.practice-card--wide {
  grid-column: span 2;
}

/* ---------- Seguradoras homologadas ---------- */

.insurers {
  overflow: hidden;
}

.insurers__marquee {
  margin-top: 1rem;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

.insurers__track {
  display: flex;
  gap: 1rem;
  width: max-content;
  padding-block: 0.5rem;
}

.js-enabled .insurers__track {
  animation: marquee 48s linear infinite;
}

.insurers__marquee:hover .insurers__track {
  animation-play-state: paused;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.insurer-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  min-height: 64px;
  padding: 0.9rem 1.6rem;
  border-radius: var(--radius-card-sm);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  color: var(--ink);
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.insurer-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.insurer-card img {
  height: 36px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
}

/* Tabela comparativa de 5 colunas (Recurso + SGCOR + 3 empresas) */
.comparison-table tbody th {
  width: 22%;
}

.comparison-table .cmp-sgcor {
  width: 24%;
}

.comparison-table .cmp-trad {
  width: 18%;
}

.comparison-table td,
.comparison-table th {
  font-size: var(--fs-small);
}

.comparison-table tbody th {
  font-size: var(--fs-body);
}

/* ---------- Prova social em vídeo ---------- */

.video-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-card);
  background: var(--navy-2);
  border: 1px solid rgba(62, 141, 227, 0.18);
  overflow: hidden;
}

.video-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(62, 141, 227, 0.18), rgba(10, 27, 51, 0.6));
}

.video-card__media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-card__initials {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(62, 141, 227, 0.2);
  border: 2px solid rgba(62, 141, 227, 0.45);
  color: var(--paper);
  font-size: 1.4rem;
  font-weight: 700;
}

.video-card__pending {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-pill);
  background: rgba(245, 166, 35, 0.15);
  border: 1px solid rgba(245, 166, 35, 0.4);
  color: var(--amber);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.video-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
  flex-grow: 1;
}

.video-card__body blockquote {
  color: rgba(245, 248, 252, 0.88);
  font-size: var(--fs-body-lg);
}

.video-card__body figcaption {
  margin-top: auto;
  font-size: var(--fs-small);
  color: rgba(245, 248, 252, 0.6);
}

.video-card__body figcaption strong {
  display: block;
  color: var(--white);
  font-size: var(--fs-body);
}

/* ---------- CTA intermediário ---------- */

.midcta {
  background: radial-gradient(ellipse at 50% 0%, var(--white) 0%, var(--paper) 70%);
}

.midcta__inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  max-width: 760px;
}

.midcta__inner h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
}

.midcta .specialist-avatar--lg {
  background: var(--navy);
}

.midcta__btn {
  margin: 0;
}

/* ---------- Seus dados continuam seus ---------- */

.data-own {
  padding-block: clamp(2.5rem, 4vw, 4rem);
}

.data-own__card {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border-radius: var(--radius-card-lg);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.data-own__card h2 {
  font-size: var(--fs-h3);
  margin-bottom: 0.5rem;
}

.data-own__card p {
  color: var(--muted);
}

.data-own__card .icon-tile {
  margin-bottom: 0;
  flex-shrink: 0;
}

/* ---------- Comparativo com concorrentes ---------- */

.versus {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.versus-card {
  padding: clamp(1.5rem, 2.5vw, 2rem);
  border-radius: var(--radius-card);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.versus-card--wide {
  grid-column: span 2;
}

.versus-card h3 {
  margin-bottom: 1rem;
}

.versus-row {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.versus-row:last-child {
  border-bottom: none;
}

.versus-row .icon {
  width: 20px;
  height: 20px;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.versus-row--sgcor {
  color: var(--ink);
  font-weight: 500;
}

.versus-row--sgcor strong {
  color: var(--green-d);
}

.versus-note {
  margin-top: 1rem;
  font-size: var(--fs-small);
  color: var(--muted);
  font-style: italic;
}

/* ---------- "O que essa tabela não mostra" (destaque pós-comparativo) ---------- */

.table-gap {
  margin-top: clamp(1.5rem, 3vw, 2.25rem);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border-radius: var(--radius-card);
  background: rgba(62, 141, 227, 0.07);
  border: 1px solid rgba(62, 141, 227, 0.18);
  display: grid;
  gap: 0.75rem;
  max-width: 900px;
}

.table-gap h3 {
  font-size: var(--fs-h3);
  color: var(--ink);
}

.table-gap p {
  color: var(--muted);
}

.table-gap strong {
  color: var(--ink);
}

/* ============================================================
   Modo compacto: paddings e gaps mais justos em toda a página
   ============================================================ */

.card,
.product-card,
.practice-card,
.versus-card,
.objection-card,
.testimonial-card {
  padding: clamp(1.1rem, 1.8vw, 1.5rem);
}

.process-card {
  padding: clamp(1.1rem, 1.8vw, 1.5rem);
}

.lead-form {
  padding: clamp(1.25rem, 2vw, 1.75rem);
  gap: 0.85rem;
}

.combo {
  padding: clamp(1.25rem, 2.2vw, 1.75rem);
  margin-top: 1.5rem;
}

.data-own__card {
  padding: clamp(1.25rem, 2.2vw, 1.75rem);
}

.video-card__body {
  padding: 1.1rem 1.25rem;
}

.products,
.practice,
.versus,
.objections__grid,
.proof__grid,
.process__cards,
.bento {
  gap: 0.9rem;
}

.process__cards {
  margin-top: 1.75rem;
}

.pain__grid {
  gap: clamp(1.25rem, 2.5vw, 2rem);
}

.pain-list {
  gap: 0.8rem;
}

.pain-list li {
  font-size: var(--fs-body);
}

.pain__closing {
  margin-top: 1.25rem;
  padding: 1.1rem 1.25rem;
  font-size: var(--fs-body);
}

.physics-stage {
  min-height: 400px;
}

.metrics-strip {
  margin-top: 2rem;
  padding-top: 1.5rem;
  gap: clamp(1.25rem, 3vw, 2.5rem);
}

.urgency-timeline {
  margin-block: 1.75rem;
}

.process-card__step {
  width: 34px;
  height: 34px;
  margin-bottom: 0.75rem;
}

.icon-tile {
  width: 38px;
  height: 38px;
  margin-bottom: 0.75rem;
}

.faq-item__trigger {
  padding: 0.85rem 1.1rem;
  font-size: var(--fs-body);
}

.faq-item__content p {
  padding: 0 1.1rem 1rem;
}

.btn--lg {
  padding: 0.9rem 1.9rem;
  font-size: var(--fs-body);
}

.demo__ps {
  margin-top: 1.25rem;
  padding: 1.1rem 1.25rem;
}

.midcta__inner {
  gap: 0.9rem;
}

.insurer-card {
  min-width: 128px;
  min-height: 54px;
  padding: 0.7rem 1.25rem;
}
