/* Digitalprev — consultoria previdenciária */
:root {
  --navy: #03203a;
  --navy-mid: #0a3a5c;
  --navy-soft: #0e4a73;
  --cream: #ebe5de;
  --cream-light: #f7f4f0;
  --bg-page: #e8edf4;
  --surface: #ffffff;
  --text: #1a2332;
  --muted: #5a6573;
  --gold: #c9a227;
  --gold-hover: #b08d1f;
  --green-wa: #25d366;
  --green-dark: #1e9e4a;
  --teal-accent: #265c54;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 14px 44px rgba(3, 32, 58, 0.09);
  --shadow-soft: 0 6px 28px rgba(3, 32, 58, 0.07);
  --header-h: 76px;
  --max: 1200px;
  --font: "Roboto", system-ui, -apple-system, sans-serif;
  --font-display: "DM Sans", var(--font);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg-page);
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
.funil-h2,
.funil-title,
.section-title,
.contact-page-hero__title {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  color: var(--navy-soft);
}

a:hover {
  color: var(--navy);
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 9999;
  padding: 0.75rem 1rem;
  background: var(--navy);
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.container--narrow {
  max-width: 800px;
}

/* ——— Header ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(3, 32, 58, 0.08);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
  padding-block: 0.45rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--navy);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.logo img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(3, 32, 58, 0.12));
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.15rem;
}

@media (min-width: 960px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-desktop a {
  padding: 0.5rem 0.85rem;
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  font-size: 0.92rem;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}

.nav-desktop a:hover {
  background: rgba(3, 32, 58, 0.06);
  text-decoration: none;
  color: var(--navy);
}

.header-actions {
  display: none;
  align-items: center;
  gap: 0.45rem;
}

@media (min-width: 960px) {
  .header-actions {
    display: flex;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.62rem 1.2rem;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.btn:active {
  transform: scale(0.98);
}

.btn--ghost {
  background: transparent;
  color: var(--navy-soft);
  border: 2px solid rgba(3, 32, 58, 0.2);
}

.btn--ghost:hover {
  background: rgba(3, 32, 58, 0.05);
  border-color: var(--navy-soft);
  text-decoration: none;
  color: var(--navy);
}

.btn--primary {
  background: linear-gradient(180deg, #d4af37 0%, var(--gold) 100%);
  color: #1a1508;
  box-shadow: 0 4px 14px rgba(201, 162, 39, 0.35);
}

.btn--primary:hover {
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-hover) 100%);
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(201, 162, 39, 0.45);
}

.btn--phone {
  background: linear-gradient(180deg, var(--navy-mid) 0%, var(--navy) 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(3, 32, 58, 0.25);
}

.btn--phone:hover {
  background: var(--navy);
  text-decoration: none;
}

.btn--outline-light {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.65);
}

.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  text-decoration: none;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 0;
  border: none;
  background: rgba(3, 32, 58, 0.06);
  cursor: pointer;
  border-radius: 10px;
}

.menu-toggle span {
  display: block;
  height: 3px;
  width: 22px;
  margin: 0 auto;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (min-width: 960px) {
  .menu-toggle {
    display: none;
  }
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1rem 0 1.5rem;
  border-top: 1px solid rgba(3, 32, 58, 0.08);
}

.nav-mobile.is-open {
  display: flex;
}

@media (min-width: 960px) {
  .nav-mobile {
    display: none !important;
  }
}

.nav-mobile a {
  padding: 0.8rem 0.75rem;
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  border-radius: 10px;
}

.nav-mobile a:hover {
  background: rgba(3, 32, 58, 0.06);
}

.nav-mobile .btn {
  margin-top: 0.35rem;
  justify-content: center;
}

/* ——— Hero ——— */
.hero {
  position: relative;
  padding: 0;
  overflow: hidden;
  background: linear-gradient(168deg, #d8e4f2 0%, #eef3f9 38%, #fafbfc 100%);
}

.hero::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -15%;
  width: 55%;
  max-width: 620px;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.12) 0%, rgba(10, 58, 92, 0.06) 45%, transparent 72%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 2.5rem;
  align-items: center;
  padding: 3rem 0 2.5rem;
  z-index: 1;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    padding: 3.5rem 0 3rem;
    gap: 3rem;
  }
}

.hero-kicker {
  margin: 0 0 0.65rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(10, 58, 92, 0.52);
  line-height: 1.35;
}

@media (min-width: 640px) {
  .hero-kicker {
    font-size: 0.8125rem;
    letter-spacing: 0.1em;
  }
}

.hero-copy h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.85rem, 4.2vw, 2.65rem);
  line-height: 1.15;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.03em;
}

.hero-lead {
  margin: 0 0 1.75rem;
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 34rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.hero-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: linear-gradient(145deg, var(--navy-mid) 0%, var(--navy-soft) 100%);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

.hero-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  opacity: 0.98;
}

/* Stats com ícones (estilo faixas do site referência) */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .stats-bar {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}

.stat-pill {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: var(--surface);
  padding: 1rem 1rem 1rem 0.85rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(3, 32, 58, 0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}

.stat-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(3, 32, 58, 0.1);
}

.stat-pill--highlight {
  border: 1px solid rgba(201, 162, 39, 0.55);
  background: linear-gradient(145deg, rgba(255, 252, 245, 1) 0%, rgba(255, 255, 255, 1) 100%);
  box-shadow: 0 6px 24px rgba(201, 162, 39, 0.18);
}

.stat-pill--highlight .stat-pill__icon {
  background: linear-gradient(145deg, rgba(201, 162, 39, 0.45) 0%, rgba(201, 162, 39, 0.15) 100%);
  color: var(--navy);
}

.stat-pill--highlight .stat-pill__text strong {
  color: var(--navy);
  font-size: 0.98rem;
}

.stat-pill__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(201, 162, 39, 0.2) 0%, rgba(201, 162, 39, 0.08) 100%);
  border-radius: 10px;
  color: var(--navy);
}

.stat-pill__icon svg {
  width: 22px;
  height: 22px;
}

.stat-pill__text strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}

.stat-pill__text span {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.35;
}

.hero + .trust-strip {
  margin-top: 0;
}

/* Faixa “tranquilidade” */
.trust-strip {
  padding: 3.25rem 0;
  background: linear-gradient(180deg, var(--cream-light) 0%, var(--cream) 100%);
  border-top: 1px solid rgba(3, 32, 58, 0.06);
  border-bottom: 1px solid rgba(3, 32, 58, 0.06);
}

.trust-strip h2 {
  text-align: center;
  margin: 0 auto 0.5rem;
  font-size: clamp(1.45rem, 3vw, 1.85rem);
  font-weight: 700;
  color: var(--navy);
}

.trust-strip .lead-center {
  text-align: center;
  margin: 0 auto 2rem;
  color: var(--muted);
  max-width: 560px;
  font-size: 1rem;
}

.trust-bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 900px;
  margin-inline: auto;
}

.trust-bullets li {
  position: relative;
  padding: 0.85rem 0 0.85rem 1.5rem;
  border-bottom: 1px solid rgba(3, 32, 58, 0.08);
  font-size: 0.98rem;
  color: var(--text);
}

.trust-bullets li:last-child {
  border-bottom: none;
}

.trust-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.15rem;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.25);
}

.trust-bullets strong {
  color: var(--navy);
}

/* ——— Sections genéricas ——— */
section {
  padding: 3.75rem 0;
}

.section-head {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 3vw, 1.95rem);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.section-sub {
  margin: 0 auto;
  color: var(--muted);
  max-width: 640px;
  font-size: 1.02rem;
}

.bg-surface {
  background: var(--surface);
}

.section-muted {
  background: linear-gradient(180deg, #f8fafc 0%, var(--bg-page) 100%);
}

/* Momentos — linhas alternadas (desktop) */
.moment-stack {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.moment-row {
  display: grid;
  gap: 1.75rem;
  align-items: center;
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(3, 32, 58, 0.07);
}

@media (min-width: 900px) {
  .moment-row {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }

  .moment-row--reverse .moment-row__media {
    order: 2;
  }

  .moment-row--reverse .moment-row__content {
    order: 1;
  }
}

.moment-row__media {
  position: relative;
  min-height: 220px;
}

.moment-row__media img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  display: block;
}

@media (min-width: 900px) {
  .moment-row__media img {
    min-height: 100%;
  }
}

.moment-row__content {
  padding: 2rem 1.75rem;
}

@media (min-width: 900px) {
  .moment-row__content {
    padding: 2.5rem 2.25rem;
  }
}

.moment-row__content h3 {
  margin: 0 0 0.65rem;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
}

.moment-divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), rgba(201, 162, 39, 0.3));
  border-radius: 2px;
  margin-bottom: 1rem;
}

.moment-row__content p {
  margin: 0 0 1.35rem;
  color: var(--muted);
  font-size: 1rem;
}

/* Diferenciais */
.diff-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 600px) {
  .diff-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .diff-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.diff-card {
  background: var(--surface);
  padding: 1.65rem 1.35rem;
  border-radius: var(--radius);
  border: 1px solid rgba(3, 32, 58, 0.08);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}

.diff-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy-soft), var(--gold));
  opacity: 0.85;
}

.diff-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.diff-card h3 {
  margin: 0.35rem 0 0.6rem;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--navy);
}

.diff-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
}

/* Depoimentos — cabeçalho estilo “avaliações” */
.reviews-section {
  background: linear-gradient(180deg, #e8eef5 0%, var(--cream-light) 100%);
}

.reviews-intro {
  text-align: center;
  margin-bottom: 2rem;
}

.reviews-badge {
  display: inline-block;
  padding: 1.25rem 2rem;
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(3, 32, 58, 0.08);
}

.reviews-badge .label-rating {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.06em;
}

.reviews-badge .stars-row {
  font-size: 1.25rem;
  color: var(--gold);
  letter-spacing: 4px;
  margin: 0.35rem 0;
}

.reviews-badge .sub {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.reviews-grid {
  display: grid;
  gap: 1.15rem;
}

@media (min-width: 700px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review-card {
  background: var(--surface);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(3, 32, 58, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.review-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--navy-mid), var(--navy-soft));
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-card .stars {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 0.9rem;
}

.review-card blockquote {
  margin: 0;
  font-style: italic;
  color: var(--text);
  font-size: 0.95rem;
  flex: 1;
}

.review-card cite {
  font-style: normal;
  font-size: 0.82rem;
  color: var(--muted);
}

/* Compromisso / pilares de confiança */
.trust-pillars-section {
  padding: 3.5rem 0;
  background: linear-gradient(180deg, var(--cream-light) 0%, #eef2f7 100%);
}

.trust-pillars-grid {
  display: grid;
  gap: 1.25rem;
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 720px) {
  .trust-pillars-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.trust-pillar-card {
  background: var(--surface);
  padding: 1.65rem 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(3, 32, 58, 0.07);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.trust-pillar-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.trust-pillar-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(201, 162, 39, 0.18) 0%, rgba(10, 74, 115, 0.1) 100%);
  color: var(--navy-soft);
}

.trust-pillar-card__icon svg {
  width: 24px;
  height: 24px;
}

.trust-pillar-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--navy);
}

.trust-pillar-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.55;
}

.footer-muted {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
  max-width: 16rem;
}

/* FAQ */
.faq-section {
  background: var(--surface);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  background: var(--cream-light);
  border-radius: var(--radius-lg);
  padding: 0.5rem 1.25rem;
  border: 1px solid rgba(3, 32, 58, 0.08);
}

.faq-item {
  border-bottom: 1px solid rgba(3, 32, 58, 0.1);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 0.25rem;
  border: none;
  background: none;
  font-family: inherit;
  font-size: 1.02rem;
  font-weight: 600;
  text-align: left;
  color: var(--navy);
  cursor: pointer;
}

.faq-item button .icon {
  flex-shrink: 0;
  transition: transform 0.25s;
  color: var(--gold);
  font-size: 0.75rem;
}

.faq-item.is-open button .icon {
  transform: rotate(180deg);
}

.faq-panel {
  display: none;
  padding: 0 0 1.1rem 0.25rem;
  color: var(--muted);
  font-size: 0.98rem;
}

.faq-item.is-open .faq-panel {
  display: block;
}

.link-faq-extra {
  text-align: center;
  margin-top: 1.75rem;
}

.link-faq-extra a {
  font-weight: 600;
}

/* Contato */
.contact-section {
  background: linear-gradient(180deg, var(--bg-page) 0%, #e2e9f2 100%);
}

.contact-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr 1.05fr;
    align-items: start;
  }
}

.contact-card {
  background: var(--surface);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(3, 32, 58, 0.07);
}

.contact-form h3 {
  margin-top: 0;
  font-size: 1.2rem;
  color: var(--navy);
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.35rem;
  padding-bottom: 1.35rem;
  border-bottom: 1px solid rgba(3, 32, 58, 0.08);
}

.contact-list li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.contact-list .ci {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(3, 32, 58, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
}

.contact-list .ci svg {
  width: 22px;
  height: 22px;
}

.contact-list .ci-text strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin-bottom: 0.2rem;
}

.contact-list a {
  color: var(--navy-soft);
  font-weight: 600;
  text-decoration: none;
}

.contact-list a:hover {
  text-decoration: underline;
}

.contact-form label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--navy);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.72rem 0.95rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(3, 32, 58, 0.18);
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--navy-soft);
  box-shadow: 0 0 0 3px rgba(10, 74, 115, 0.15);
}

.contact-form textarea {
  min-height: 130px;
  resize: vertical;
}

.contact-form .btn {
  width: 100%;
  padding: 0.85rem;
  font-size: 1rem;
}

.form-note {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.85rem;
  line-height: 1.5;
}

/* Página de contato (layout tipo referência) */
.section-pad {
  padding-block: 2.5rem;
}

@media (min-width: 768px) {
  .section-pad {
    padding-block: 3rem;
  }
}

.contact-page-hero {
  background: linear-gradient(180deg, #ffffff 0%, var(--cream-light) 100%);
  border-bottom: 1px solid rgba(3, 32, 58, 0.07);
  padding: 2.75rem 0 2.25rem;
  position: relative;
}

.contact-page-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(200px, 40%);
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.65;
}

.contact-page-hero__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.contact-page-hero__lead {
  margin: 0;
  max-width: 52rem;
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.65;
}

.contact-page-intro {
  background: var(--bg-page);
}

.contact-page-intro__text {
  margin: 0 0 2rem;
  max-width: 52rem;
  font-size: 1.02rem;
  color: var(--text);
}

.contact-page-intro__text a {
  font-weight: 600;
}

.contact-channels {
  display: grid;
  gap: 0;
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(3, 32, 58, 0.07);
}

@media (min-width: 900px) {
  .contact-channels {
    grid-template-columns: repeat(4, 1fr);
  }
}

.contact-channel {
  position: relative;
  padding: 1.5rem 1.25rem;
  min-height: 100px;
  display: flex;
  align-items: stretch;
}

@media (max-width: 899px) {
  .contact-channel {
    border-bottom: 1px solid rgba(3, 32, 58, 0.08);
  }

  .contact-channel:last-child {
    border-bottom: none;
  }
}

.contact-channel__divider {
  display: none;
}

@media (min-width: 900px) {
  .contact-channel__divider--desktop {
    display: block;
    position: absolute;
    left: 0;
    top: 1.25rem;
    bottom: 1.25rem;
    width: 1px;
    background: rgba(3, 32, 58, 0.12);
  }

  .contact-channel:first-child .contact-channel__divider--desktop {
    display: none;
  }
}

.contact-channel__inner {
  flex: 1;
  padding-left: 0.25rem;
}

@media (min-width: 900px) {
  .contact-channel:not(:first-child) .contact-channel__inner {
    padding-left: 1rem;
  }
}

.contact-channel__title {
  margin: 0 0 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy);
}

.contact-channel__title a,
.contact-channel__link {
  color: inherit;
  text-decoration: none;
}

.contact-channel__title a:hover,
.contact-channel__link:hover {
  color: var(--navy-soft);
  text-decoration: underline;
}

.contact-channel__value {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
}

.contact-channel__value a {
  color: var(--navy-soft);
  text-decoration: none;
  font-weight: 600;
}

.contact-channel__value a:hover {
  text-decoration: underline;
}

.contact-page-form-section {
  background: var(--surface);
  border-top: 1px solid rgba(3, 32, 58, 0.06);
}

.container--form {
  max-width: 580px;
}

.contact-form-head {
  text-align: center;
  margin-bottom: 2rem;
}

.contact-form-head__title {
  margin: 0 0 0.5rem;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.contact-form-head__sub {
  margin: 0;
  font-size: 1.15rem;
  color: var(--muted);
  font-weight: 400;
}

.form-grid-2 {
  display: grid;
  gap: 0 1rem;
}

@media (min-width: 640px) {
  .form-grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.form-field {
  margin-bottom: 0.85rem;
}

.form-field--full {
  grid-column: 1 / -1;
}

.contact-form--full label {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  color: var(--text);
}

.contact-form--full input,
.contact-form--full select,
.contact-form--full textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  margin-bottom: 0;
  border: 1px solid #c8c8c8;
  border-radius: 3px;
  font-family: inherit;
  font-size: 1rem;
  color: #555;
  background: #fff;
  box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.06);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form--full input:focus,
.contact-form--full select:focus,
.contact-form--full textarea:focus {
  outline: none;
  border-color: var(--navy-soft);
  box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.06), 0 0 0 3px rgba(10, 74, 115, 0.12);
}

.contact-form--full textarea {
  min-height: 120px;
  resize: vertical;
}

.btn--send-lg {
  width: 100%;
  max-width: 100%;
  margin-top: 1.15rem;
  padding: 1rem 1.25rem;
  font-size: 1.15rem;
  font-weight: 700;
  border-radius: 3px;
  background: linear-gradient(180deg, #7aab8a 0%, #5a9270 100%);
  color: #fff;
  border: 1px solid #3d7a5e;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.08);
}

.btn--send-lg:hover {
  filter: brightness(1.05);
  color: #fff;
  text-decoration: none;
}

.form-note--center {
  text-align: center;
  margin-top: 1rem;
}

.contact-lgpd {
  margin: 1.75rem 0 0;
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--muted);
}

.nav-desktop a[aria-current="page"] {
  background: rgba(3, 32, 58, 0.08);
  color: var(--navy);
}

/* Footer */
.site-footer {
  background: linear-gradient(180deg, #021a2e 0%, var(--navy) 45%);
  color: #b8c9d9;
  padding: 0;
  margin-top: 0;
}

.footer-contact-bar {
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-contact-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .footer-contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .footer-contact-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
}

.footer-contact-item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.footer-contact-item svg {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  opacity: 0.9;
}

.footer-contact-item strong {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #8fa8bc;
  margin-bottom: 0.25rem;
}

.footer-contact-item a,
.footer-contact-item span {
  color: #e8f0f8;
  font-size: 0.95rem;
  text-decoration: none;
}

.footer-contact-item a:hover {
  text-decoration: underline;
}

.footer-main {
  padding: 2.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 800px) {
  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
    align-items: start;
  }
}

.footer-brand p {
  margin: 0.75rem 0 0;
  font-size: 0.92rem;
  line-height: 1.6;
  max-width: 320px;
}

.footer-brand .logo {
  color: #fff;
}

.footer-brand .logo img {
  width: 56px;
  height: 56px;
}

.site-footer h4 {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}

.site-footer .footer-links a {
  display: block;
  margin-bottom: 0.5rem;
  color: #b8c9d9;
  text-decoration: none;
  font-size: 0.92rem;
}

.site-footer .footer-links a:hover {
  color: #fff;
}

.social {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.social a {
  text-decoration: none;
  padding: 0.5rem 0.9rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  font-size: 0.88rem;
  color: #e8f0f8;
  transition: background 0.2s;
}

.social a:hover {
  background: rgba(255, 255, 255, 0.15);
  text-decoration: none;
}

.footer-bottom {
  padding: 1.5rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.82rem;
  text-align: center;
  line-height: 1.65;
  color: #8fa8bc;
}

.footer-bottom a {
  color: #c5d4e3;
}

.footer-photo-credit {
  margin: 0.75rem 0 0;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.78rem;
  opacity: 0.92;
}

/* WhatsApp flutuante */
.fab-wa {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 150;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(145deg, var(--green-wa) 0%, var(--green-dark) 100%);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.fab-wa:hover {
  transform: scale(1.06);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
}

.fab-wa svg {
  width: 30px;
  height: 30px;
}

/* Voltar ao topo */
.back-top {
  position: fixed;
  right: 1.1rem;
  bottom: 5.5rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.95);
  color: var(--navy);
  font-size: 1.15rem;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 4px 20px rgba(3, 32, 58, 0.2);
  z-index: 140;
  border: 1px solid rgba(3, 32, 58, 0.12);
}

.back-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.back-top:hover {
  transform: translateY(-3px);
}

/* Utilitários */
.text-center {
  text-align: center;
}

.mt-0 {
  margin-top: 0;
}

.compact-section {
  padding: 2.5rem 0;
}

.loas-bpc-section__inner {
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

.section-cta-duo {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
  margin-top: 1.25rem;
}

/* Hero — funil de análise */
.hero-funnel-lead {
  margin: 1.15rem 0 0;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--navy-soft);
  max-width: 36rem;
}

.hero-funnel-lead__fn {
  font-size: 0.65em;
  color: var(--gold);
  font-weight: 700;
}

.hero-funnel-lead__note {
  display: block;
  margin-top: 0.55rem;
  font-size: 0.84rem;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.5;
}

/* Página funil (analise.php) */
.funil-page {
  background: var(--bg-page);
}

.funil-main {
  padding-bottom: 3rem;
  min-height: 60vh;
}

.funil-progress-wrap {
  padding: 1.25rem 0 0.5rem;
}

.funil-progress {
  margin: 0 0 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
}

.funil-progress-bar {
  height: 6px;
  border-radius: 999px;
  background: rgba(3, 32, 58, 0.1);
  overflow: hidden;
}

.funil-progress-bar__fill {
  display: block;
  height: 100%;
  width: 25%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal-accent), var(--navy-soft));
  transition: width 0.35s ease;
}

.container--funil {
  max-width: 640px;
}

.funil-step {
  padding-bottom: 2rem;
}

.funil-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  box-shadow: 0 10px 40px rgba(3, 32, 58, 0.07);
  border: 1px solid rgba(3, 32, 58, 0.07);
}

@media (min-width: 640px) {
  .funil-card {
    padding: 2.25rem 2rem;
  }
}

.funil-card--hero {
  text-align: center;
}

.funil-title {
  margin: 0 0 1rem;
  font-size: clamp(1.65rem, 4.5vw, 2.15rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.funil-lead {
  margin: 0 0 1rem;
  font-size: 1.12rem;
  color: var(--text);
  line-height: 1.55;
}

.funil-lead-note {
  margin: 0 0 1.5rem;
  font-size: 0.92rem;
  color: var(--muted);
  text-align: left;
  line-height: 1.6;
  padding: 1rem 1.1rem;
  background: var(--cream-light);
  border-radius: var(--radius);
  border-left: 4px solid var(--gold);
}

.btn--funil-cta {
  padding: 0.85rem 1.75rem;
  font-size: 1.05rem;
}

.btn--funil-submit {
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.85rem;
  font-size: 1rem;
}

.funil-micro {
  margin: 1rem 0 0;
  font-size: 0.78rem;
  color: var(--muted);
}

.funil-h2 {
  margin: 0 0 0.65rem;
  font-size: 1.45rem;
  color: var(--navy);
}

.funil-step-sub {
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: 0.98rem;
}

.funil-back {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.35rem 0;
  border: none;
  background: none;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy-soft);
  cursor: pointer;
  text-decoration: underline;
}

.funil-back:hover {
  color: var(--navy);
}

.funil-label-block {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.funil-radio-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.funil-radio-row label {
  font-size: 0.95rem;
  font-weight: 400;
  cursor: pointer;
}

.funil-plano-wrap {
  margin: 1rem 0 1.25rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(10, 74, 115, 0.15);
  background: rgba(255, 255, 255, 0.6);
}

.funil-plano-wrap__title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 0.65rem;
}

.funil-radio-row input[type="radio"] {
  width: auto;
  margin-right: 0.4rem;
  vertical-align: middle;
}

.funil-form .form-field {
  margin-bottom: 1rem;
}

.funil-form label,
.funil-label-block {
  color: var(--text);
}

.funil-form input,
.funil-form select {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1px solid #c8c8c8;
  border-radius: 3px;
  font-family: inherit;
  font-size: 1rem;
  background: #fff;
  box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.05);
}

.funil-form input:focus,
.funil-form select:focus {
  outline: none;
  border-color: var(--navy-soft);
  box-shadow: 0 0 0 3px rgba(10, 74, 115, 0.12);
}

.funil-field-hint {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.35rem;
  line-height: 1.4;
}

.funil-checkbox-row {
  margin-top: 0.25rem;
}

.funil-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-weight: 400;
  cursor: pointer;
  line-height: 1.45;
}

.funil-checkbox-label input {
  width: auto;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.funil-form-error {
  font-size: 0.92rem;
  color: #8b1a1a;
  margin: 0 0 1rem;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius);
  background: rgba(180, 40, 40, 0.08);
  border: 1px solid rgba(180, 40, 40, 0.25);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.funil-callout {
  margin: 0 0 1rem;
  padding: 1.1rem 1.2rem;
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.12) 0%, rgba(38, 92, 84, 0.1) 100%);
  border-radius: var(--radius);
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--navy);
}

.funil-callout--solo {
  margin: 0 0 1rem;
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.6;
}

.funil-card--teaser-simple {
  text-align: left;
}

.funil-warning {
  font-size: 0.86rem;
  color: var(--muted);
  margin: 0 0 1.25rem;
  line-height: 1.5;
}

.funil-pay-lead {
  color: var(--muted);
  margin: 0 0 1rem;
  line-height: 1.6;
}

.funil-pay-list {
  margin: 0 0 1.5rem;
  padding-left: 1.25rem;
  color: var(--text);
  line-height: 1.6;
}

.funil-card--success {
  border-left: 4px solid var(--green-dark);
  background: linear-gradient(180deg, rgba(30, 158, 74, 0.06) 0%, var(--cream-light) 100%);
}

.funil-card--success .funil-h2 {
  color: var(--green-dark);
}

.funil-pdf-status {
  font-size: 0.92rem;
  line-height: 1.5;
  margin: 0 0 1rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  background: rgba(30, 158, 74, 0.1);
  color: var(--navy);
}

.funil-pdf-status--error {
  background: rgba(180, 40, 40, 0.1);
  color: #6b1c1c;
}

.funil-card--success .btn--ghost {
  margin-right: 0.5rem;
  margin-bottom: 0.75rem;
}

.funil-price {
  margin: 0 0 1rem;
  text-align: center;
}

.funil-price__label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.funil-price__value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
}

.funil-price-block {
  margin: 0 0 1.35rem;
  padding: 1.1rem 1.15rem;
  background: var(--cream-light);
  border-radius: var(--radius);
  border: 1px solid rgba(3, 32, 58, 0.08);
}

.funil-price-block .funil-price__label {
  text-align: left;
  margin-bottom: 0.75rem;
}

.funil-price-rows {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.funil-price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.45;
}

.funil-price-row__name {
  color: var(--text);
  flex: 1;
  min-width: 0;
}

.funil-price-row__val {
  color: var(--navy);
  white-space: nowrap;
}

.funil-price-row--total {
  margin-top: 0.35rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(3, 32, 58, 0.12);
  font-size: 1.05rem;
}

.funil-price-hint {
  margin: 0.85rem 0 0;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
}

.btn--pay-funil {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.25rem;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  border-radius: 8px;
  background: linear-gradient(180deg, #c9a227 0%, #a6851c 100%);
  color: #1a1508 !important;
  border: 1px solid #8a6f18;
  box-shadow: 0 4px 14px rgba(201, 162, 39, 0.35);
  transition: filter 0.2s, transform 0.15s;
}

.btn--pay-funil:hover {
  filter: brightness(1.06);
  color: #1a1508 !important;
  text-decoration: none;
}

@media (max-width: 520px) {
  .btn--pay-funil {
    font-size: 0.88rem;
    padding: 0.85rem 0.75rem;
    line-height: 1.35;
  }
}

.funil-pay-note {
  margin: 1rem 0 0;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
  padding: 0.85rem;
  background: var(--cream-light);
  border-radius: 8px;
}

.funil-pay-note code {
  font-size: 0.85em;
}

.funil-pay-note--error {
  color: #8a2b2b;
  background: #fdeeee;
  border: 1px solid #f0c4c4;
}

.funil-pay-note--pulse {
  animation: funilPayPulse 1.2s ease;
}

@keyframes funilPayPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(201, 162, 39, 0);
  }
  40% {
    box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.35);
  }
}

.funil-alt {
  margin: 1.25rem 0 0;
  font-size: 0.92rem;
  text-align: center;
  color: var(--muted);
}

.funil-alt a {
  font-weight: 600;
}

.funil-footer {
  margin-top: 2rem;
}

.funil-footer .footer-bottom {
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.funil-footer .footer-bottom p {
  margin: 0;
  font-size: 0.82rem;
}

/* Páginas legais e blog */
.container--narrow {
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.legal-prose h2 {
  font-size: 1.2rem;
  margin: 1.75rem 0 0.65rem;
  color: var(--text);
}

.legal-prose p {
  line-height: 1.65;
  margin: 0 0 0.9rem;
  color: var(--text);
}

.legal-updated {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.legal-disclaimer {
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.blog-cards {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .blog-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.blog-card {
  background: var(--surface);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.blog-card__title {
  font-size: 1.05rem;
  margin: 0 0 0.5rem;
  line-height: 1.35;
}

.blog-card__title a {
  color: inherit;
  text-decoration: none;
}

.blog-card__title a:hover {
  text-decoration: underline;
}

.blog-card__excerpt {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.5;
}

.blog-back {
  font-size: 0.9rem;
}
