:root{
  --green: #387d60;        /* botão (amostrado do print) */
  --green-2: #33805e;      /* destaque do título (amostrado do print) */
  --green-soft: #e7f2ec;   /* pill */
  --text: #1f1f1f;
  --muted: #6b6b6b;
  --bg: #ffffff;

  --radius-pill: 999px;
  --radius-btn: 14px;
  --shadow-btn: 0 10px 22px rgba(0,0,0,.08);
}

*{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; }
body{
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

a{ color: inherit; text-decoration: none; }

.container{
  width: min(1200px, 92%);
  margin: 0 auto;
}

/* =========================
   HEADER (igual print)
========================= */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.header-inner{
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand-logo{
  height: 54px;
  width: auto;
  display:block;
}

.nav{
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav a{
  font-size: 14px;
  font-weight: 500;
  color: #5f6661;
  transition: color .2s ease;
}

.nav a:hover{
  color: var(--green);
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  border-radius: var(--radius-btn);
  white-space: nowrap;
}

.btn-header{
  height: 44px;
  padding: 0 18px;
  background: var(--green);
  color: #fff;
  box-shadow: var(--shadow-btn);
}

.btn-header:hover{ filter: brightness(.95); }

/* Mobile toggle */
.nav-toggle{
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
}

.nav-toggle span{
  display:block;
  height: 2px;
  width: 18px;
  background: #2a2a2a;
  margin: 4px auto;
  border-radius: 2px;
}

/* Drawer */
.nav-drawer{
  display: none;
  border-top: 1px solid rgba(0,0,0,.06);
  padding: 12px 4%;
  gap: 8px;
  flex-direction: column;
  background: #fff;
}

.nav-drawer a{
  padding: 12px 12px;
  border-radius: 12px;
  color: #46504a;
  font-weight: 600;
  font-size: 14px;
}

.nav-drawer a:hover{
  background: rgba(56,125,96,.08);
}

.btn-drawer{
  margin-top: 6px;
}

/* =========================
   HERO (igual print)
========================= */
.hero{
  position: relative;
  min-height: 498px;     /* altura visual similar */
  overflow: hidden;
  background: #f3f4f4;
}

.hero-bg{
  position:absolute;
  inset:0;
  background:
    url("../img/hero-bg.jpg") center right / cover no-repeat; /* TROQUE PARA SUA IMAGEM */
  filter: saturate(1.05);
  transform: scale(1.01);
}

/* overlay que “lava” a esquerda e deixa a direita mais visível */
.hero-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg,
      rgba(255,255,255,.92) 0%,
      rgba(255,255,255,.88) 35%,
      rgba(255,255,255,.55) 55%,
      rgba(255,255,255,.20) 72%,
      rgba(255,255,255,.05) 100%
    );
}

.hero-inner{
  position: relative;
  padding: 54px 0 32px 0;
}

.hero-pill{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green-soft);
  color: var(--green);
  border: 1px solid rgba(56,125,96,.18);
  border-radius: var(--radius-pill);
  padding: 10px 14px;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 20px;
}

.pill-ico{
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  background: rgba(56,125,96,.10);
  color: var(--green);
}

.hero-title{
  font-size: 56px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 800;
  max-width: 680px;
  margin-bottom: 18px;
}

.hero-highlight{
  color: var(--green-2);
}

.hero-subtitle{
  color: #6b6b6b;
  font-size: 18px;
  line-height: 1.6;
  max-width: 640px;
  margin-bottom: 26px;
}

.hero-cta{
  margin-bottom: 44px;
}

.btn-cta{
  height: 56px;
  padding: 0 26px;
  background: #1cc561; /* CTA mais “vivo” como no print */
  color: #fff;
  border-radius: 14px;
  box-shadow: 0 12px 22px rgba(0,0,0,.10);
}

.btn-cta:hover{ filter: brightness(.97); }

.btn-ico{
  display:inline-grid;
  place-items:center;
  color: #fff;
}

/* badges no rodapé do hero */
.hero-badges{
  display:flex;
  align-items:center;
  gap: 22px;
  flex-wrap: wrap;
  color: #6a706b;
  font-size: 13px;
}

.badge-item{
  display:flex;
  align-items:center;
  gap: 10px;
}

.dot{
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 999px;
  opacity: .85;
}

/* =========================
   RESPONSIVO (fiel, sem quebrar)
========================= */
@media (max-width: 1024px){
  .nav{ gap: 22px; }
  .hero-title{ font-size: 48px; }
}

@media (max-width: 880px){
  .nav{ display:none; }
  .btn-header{ display:none; }
  .nav-toggle{ display:block; }
  .nav-drawer.is-open{ display:flex; }

  .hero-inner{ padding: 34px 0 26px; }
  .hero-title{ font-size: 40px; }
  .hero-subtitle{ font-size: 16px; }
}

@media (max-width: 520px){
  .brand-logo{ height: 46px; }
  .hero-title{ font-size: 34px; }
  .btn-cta{ width: 100%; }
}
/* =========================================================
   HOTFIX DEFINITIVO - QUEBRAS DO HERO (H1 + H2) NO MOBILE
   Cole NO FINAL do style.css
========================================================= */

/* Nunca separar "o tempo" */
.hero-nowrap { white-space: nowrap; }

/* Controla a quebra do "todo" (pode descer de linha no mobile) */
.hero-break { display: inline; }

/* Melhor wrap geral */
.hero-title, .hero-subtitle { text-wrap: balance; }

/* MOBILE / ANDROID: padroniza quebras em 2 linhas no H2 e evita "quebras feias" no H1 */
@media (max-width: 520px){
  .hero-title{
    /* controla o comprimento da linha (evita wrap aleatório) */
    max-width: 16ch !important;
  }

  /* força "todo" a ser a última linha (igual ao aprovado) */
  .hero-break{
    display: block !important;
  }

  .hero-subtitle{
    /* objetivo: ficar em 2 linhas, não 3 */
    max-width: 42ch !important;
    line-height: 1.65;
  }
}

/* Se seu Android for mais estreito (360px), este ajuste melhora ainda mais */
@media (max-width: 380px){
  .hero-title{ max-width: 15ch !important; }
  .hero-subtitle{ max-width: 40ch !important; }
}

/* =========================
   CATEGORIAS — De Bem com a Vida
   (FORA de qualquer @media)
========================= */

/* Usa as variáveis que você já tem no :root */
:root{
  --dbv-text: var(--text);
  --dbv-muted: var(--muted);
  --dbv-bg: var(--bg);

  --dbv-green: var(--green);
  --dbv-green-soft: var(--green-soft);

  --dbv-card-bg: #ffffff;
  --dbv-card-border: rgba(0,0,0,.06);
  --dbv-shadow: 0 10px 30px rgba(0,0,0,.06);
  --dbv-radius: 18px;

  --dbv-container: 1200px; /* bate com seu .container */
}

.dbv-categories{
  background: var(--dbv-bg);
  padding: 56px 0 76px;
}

.dbv-categories__container{
  width: min(var(--dbv-container), 92%);
  margin: 0 auto;
  text-align: center;
}

/* “CATEGORIAS” pequeno em verde e tracking */
.dbv-categories__kicker{
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: .18em;
  font-weight: 700;
  color: var(--dbv-green);
}

/* Título grande, bem parecido com o print */
.dbv-categories__title{
  margin: 0 auto;
  max-width: 900px;
  font-size: 34px;
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: var(--dbv-text);
}

.dbv-categories__subtitle{
  margin: 12px auto 0;
  max-width: 760px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--dbv-muted);
}

/* Grid 3 colunas como no print */
.dbv-categories__grid{
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  text-align: left;
}

/* Card com respiro + sombra suave */
.dbv-cat-card{
  display: block;
  background: var(--dbv-card-bg);
  border: 1px solid var(--dbv-card-border);
  border-radius: var(--dbv-radius);
  box-shadow: var(--dbv-shadow);
  padding: 28px 28px 26px;
  min-height: 176px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.dbv-cat-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 44px rgba(0,0,0,.10);
  border-color: rgba(56,125,96,.22); /* usando seu verde */
}

/* ✅ TAMANHO DOS ÍCONES (ajuste aqui) */
.dbv-cat-card__icon{
  width: 56px;           /* print tem “quadradinho” um pouco maior */
  height: 56px;
  border-radius: 14px;
  background: var(--dbv-green-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--dbv-green);
}

/* SVG (ícone) maior e mais “presente” */
.dbv-ico{
  width: 28px;           /* <- tamanho do desenho do ícone */
  height: 28px;
}

/* Deixa o traço do ícone mais parecido com o print */
.dbv-cat-card__icon .dbv-ico{
  stroke-width: 1.7;
}

.dbv-cat-card__title{
  margin: 0 0 6px;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 800;
  color: var(--dbv-text);
}

.dbv-cat-card__text{
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--dbv-muted);
  max-width: 38ch;
}

/* Responsivo fiel */
@media (max-width: 980px){
  .dbv-categories{ padding: 48px 0 64px; }
  .dbv-categories__title{ font-size: 38px; }
  .dbv-categories__grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
}

@media (max-width: 640px){
  .dbv-categories{ padding: 40px 0 54px; }
  .dbv-categories__title{ font-size: 32px; }
  .dbv-categories__subtitle{ font-size: 15px; }
  .dbv-categories__grid{
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 28px;
  }
  .dbv-cat-card{
    padding: 24px 22px;
    min-height: auto;
  }
  .dbv-cat-card__text{ max-width: none; }
}
  
/* ==========================================
   VITRINE DE PRODUTOS - VERSÃO FINAL
   ========================================== */

.dbv-products-section {
  padding: 72px 20px 88px;
  background: #f7f8f7;
}

.dbv-products-shell {
  width: min(1280px, 100%);
  margin: 0 auto;
}

.dbv-products-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 42px;
}

.dbv-products-kicker {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #3f8f67;
}

.dbv-products-head h2 {
  margin: 0 0 14px;
  font-size: 34px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #1f2f24;
}

.dbv-products-head p {
  margin: 0 auto;
  max-width: 640px;
  font-size: 15px;
  line-height: 1.6;
  color: #7b847d;
}

.dbv-product-group {
  margin-bottom: 28px;
}

.dbv-grid {
  display: grid;
  gap: 18px;
}

.dbv-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dbv-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.dbv-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 640px;
  margin: 0 auto;
}

.dbv-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: #ffffff;
  border: 1px solid #d9e4dc;
  border-radius: 20px;
  box-shadow: 0 4px 14px rgba(17, 41, 27, 0.04);
  overflow: hidden;
  padding: 16px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.dbv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(17, 41, 27, 0.09);
  border-color: #bfd6c7;
}

.dbv-card-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
}

.dbv-card-badge.is-green { background: #3b8d61; }
.dbv-card-badge.is-gold { background: #d8ab24; }
.dbv-card-badge.is-purple { background: #a35ad3; }

.dbv-card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  background: #f5f7f5;
  overflow: hidden;
  margin-bottom: 12px;
}

.dbv-card-viewport {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 16px;
  touch-action: pan-y;
}

.dbv-card-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}

.dbv-card-slide {
  min-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
}

.dbv-card-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transform: scale(1.015);
  transition: opacity 0.35s ease, transform 0.5s ease;
  background: #ffffff;
}

.dbv-card-slide img.is-loaded {
  opacity: 1;
  transform: scale(1);
}

.dbv-card-slide img.is-error {
  opacity: 0.18;
  object-fit: contain;
}

.dbv-card-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 18px rgba(18, 41, 27, 0.16);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, background 0.22s ease;
}

.dbv-card:hover .dbv-card-arrow,
.dbv-card:focus-within .dbv-card-arrow,
.dbv-card.is-touch-active .dbv-card-arrow {
  opacity: 1;
  pointer-events: auto;
}

.dbv-card-arrow:hover {
  background: #ffffff;
  transform: translateY(-50%) scale(1.04);
}

.dbv-card-arrow.prev { left: 10px; }
.dbv-card-arrow.next { right: 10px; }

.dbv-card-arrow svg {
  width: 18px;
  height: 18px;
  color: #2f8b5c;
}

.dbv-card-dots {
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 4;
}

.dbv-card-dot {
  position: relative;
  width: 18px;
  height: 8px;
  border-radius: 999px;
  background: rgba(45, 115, 78, 0.18);
  border: none;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  transition: width 0.25s ease, background 0.25s ease, transform 0.2s ease;
}

.dbv-card-dot:hover {
  transform: translateY(-1px);
}

.dbv-card-dot.is-active {
  width: 28px;
  background: rgba(63, 143, 103, 0.24);
}

.dbv-card-dot-progress {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0%;
  height: 100%;
  background: #3f8f67;
  border-radius: inherit;
}

.dbv-card-dot.is-active .dbv-card-dot-progress {
  animation: dbvDotProgress linear forwards;
  animation-duration: var(--dbv-progress-duration, 4.5s);
}

@keyframes dbvDotProgress {
  from { width: 0%; }
  to { width: 100%; }
}

.dbv-card-brand {
  display: inline-block;
  margin-bottom: 7px;
  font-size: 11px;
  font-weight: 700;
  color: #70b58d;
}

.dbv-card-title {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 700;
  color: #223126;
  letter-spacing: -0.01em;
}

.dbv-card-desc {
  margin: 0 0 10px;
  font-size: 11px;
  line-height: 1.55;
  color: #727b74;
}

.dbv-card-benefits-title {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 700;
  color: #243429;
}

.dbv-card-benefits {
  margin: 0 0 14px;
  padding-left: 16px;
  color: #6d756f;
}

.dbv-card-benefits li {
  margin-bottom: 4px;
  font-size: 11px;
  line-height: 1.5;
}

.dbv-card-footer {
  margin-top: auto;
}

.dbv-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  min-height: 40px;
  padding: 10px 14px;
  border: 0;
  border-radius: 10px;
  background: #2f8b5c;
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 6px 14px rgba(47, 139, 92, 0.14);
}

.dbv-card-btn:hover {
  background: #26754d;
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(47, 139, 92, 0.22);
}

.dbv-card-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.dbv-products-help {
  max-width: 620px;
  margin: 54px auto 0;
  padding: 34px 28px;
  text-align: center;
  background: #ffffff;
  border: 1px solid #e2ebe4;
  border-radius: 22px;
  box-shadow: 0 10px 30px rgba(18, 43, 29, 0.05);
}

.dbv-products-help p {
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.65;
  color: #5d655f;
}

.dbv-help-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 14px;
  background: #33c36c;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 10px 20px rgba(51, 195, 108, 0.22);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.dbv-help-btn:hover {
  transform: translateY(-1px);
  filter: brightness(0.97);
}

/* ===== RESPONSIVO ===== */

@media (max-width: 640px) {
  .dbv-products-section {
    padding: 46px 14px 62px;
  }

  .dbv-products-head {
    margin-bottom: 28px;
  }

  .dbv-products-head h2 {
    font-size: 28px;
    line-height: 1.18;
  }

  .dbv-products-head p {
    font-size: 14px;
    line-height: 1.55;
  }

  .dbv-grid--3,
  .dbv-grid--4,
  .dbv-grid--2 {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .dbv-card {
    border-radius: 18px;
    padding: 14px;
  }

  .dbv-card-media,
  .dbv-card-viewport {
    border-radius: 14px;
  }

  .dbv-card-title {
    font-size: 15px;
    line-height: 1.35;
  }

  .dbv-card-desc,
  .dbv-card-benefits li {
    font-size: 12px;
  }

  .dbv-card-btn,
  .dbv-help-btn {
    min-height: 44px;
    font-size: 14px;
  }

  .dbv-products-help {
    margin-top: 36px;
    padding: 24px 18px;
    border-radius: 18px;
  }

  .dbv-products-help p {
    font-size: 15px;
  }

  .dbv-card-arrow {
    opacity: 1;
    pointer-events: auto;
    width: 34px;
    height: 34px;
  }

  .dbv-card-arrow.prev { left: 8px; }
  .dbv-card-arrow.next { right: 8px; }
}

/* =========================================
POR QUE FUNCIONA / DEPOIMENTOS / CTA
Blocos isolados para não interferir no resto
========================================= */

.dbcv-why-section,
.dbcv-testimonials-section,
.dbcv-specialist-cta-section {
  position: relative;
  z-index: 1;
}

.dbcv-why-section {
  padding: 110px 0 96px;
  background: #f4f7f4;
}

.dbcv-testimonials-section {
  padding: 92px 0 92px;
  background: #ffffff;
}

.dbcv-specialist-cta-section {
  padding: 90px 0 110px;
  background: #f4f7f4;
}

/* Heading padrão */
.dbcv-section-heading {
  max-width: 860px;
  margin: 0 auto 56px;
  text-align: center;
}

.dbcv-section-heading--tight {
  margin-bottom: 42px;
}

.dbcv-section-kicker {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #4b9a72;
  text-transform: uppercase;
}

.dbcv-section-heading h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: #1e2d24;
}

.dbcv-section-heading p {
  margin: 18px auto 0;
  max-width: 760px;
  font-size: 22px;
  line-height: 1.55;
  color: #7e9085;
}

/* Grid principal */
.dbcv-why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 26px;
}

/* Card tecnologia */
.dbcv-why-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  min-height: 164px;
  padding: 28px 26px 24px;
  background: #ffffff;
  border: 1px solid #e5ece7;
  border-radius: 22px;
  box-shadow: 0 4px 14px rgba(19, 55, 33, 0.04);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.dbcv-why-card:hover {
  transform: translateY(-4px);
  border-color: #d7e7dc;
  box-shadow: 0 14px 34px rgba(19, 55, 33, 0.08);
}

.dbcv-why-card__icon {
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: #eef8f1;
  color: #4b9a72;
}

.dbcv-why-card__icon svg {
  width: 24px;
  height: 24px;
}

.dbcv-why-card__content {
  flex: 1;
  min-width: 0;
}

.dbcv-why-card__content h3 {
  margin: 2px 0 10px;
  font-size: 29px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: #26342c;
}

.dbcv-why-card__content p {
  margin: 0 0 14px;
  font-size: 19px;
  line-height: 1.55;
  color: #74867b;
}

.dbcv-why-card__benefit {
  display: inline-block;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 700;
  color: #5aa07a;
}

/* Depoimentos */
.dbcv-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 1360px;
  margin: 0 auto;
}

.dbcv-testimonial-card {
  min-height: 255px;
  padding: 26px 24px 22px;
  background: #ffffff;
  border: 1px solid #e8eeea;
  border-radius: 18px;
  box-shadow: 0 3px 12px rgba(22, 50, 34, 0.04);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.dbcv-testimonial-card:hover {
  transform: translateY(-4px);
  border-color: #dce8df;
  box-shadow: 0 14px 28px rgba(22, 50, 34, 0.08);
}

.dbcv-testimonial-card__stars {
  margin-bottom: 18px;
  font-size: 22px;
  line-height: 1;
  color: #f5c244;
}

.dbcv-testimonial-card__text {
  margin: 0 0 26px;
  font-size: 18px;
  line-height: 1.7;
  color: #44544a;
  min-height: 118px;
}

.dbcv-testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.dbcv-testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #eef6f0;
  color: #6f8e79;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.dbcv-testimonial-card__author strong {
  display: block;
  margin: 0 0 4px;
  font-size: 17px;
  line-height: 1.2;
  color: #243229;
  font-weight: 700;
}

.dbcv-testimonial-card__author small {
  display: block;
  font-size: 15px;
  line-height: 1.35;
  color: #87978d;
}

/* CTA especialista */
.dbcv-specialist-cta {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.dbcv-specialist-cta h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.14;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: #1f2d24;
}

.dbcv-specialist-cta p {
  max-width: 800px;
  margin: 18px auto 0;
  font-size: 22px;
  line-height: 1.6;
  color: #7d8f84;
}

.dbcv-specialist-cta__button {
  margin-top: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 238px;
  min-height: 64px;
  padding: 0 28px;
  background: linear-gradient(180deg, #34d266 0%, #28c85b 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 14px;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.01em;
  box-shadow: 0 12px 26px rgba(41, 191, 89, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.dbcv-specialist-cta__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(41, 191, 89, 0.28);
  filter: saturate(1.03);
}

.dbcv-specialist-cta__button svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Reveal suave */
.dbcv-reveal {
  opacity: 1;
  transform: none;
}

.js-reveal .dbcv-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.js-reveal .dbcv-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Ajustes de largura para ficar próximo do print */
@media (min-width: 1200px) {
  .dbcv-why-section .container,
  .dbcv-testimonials-section .container,
  .dbcv-specialist-cta-section .container {
    max-width: 1440px;
  }
}

/* Tablet */
@media (max-width: 1199px) {
  .dbcv-why-section {
    padding: 88px 0 78px;
  }

  .dbcv-testimonials-section {
    padding: 78px 0;
  }

  .dbcv-specialist-cta-section {
    padding: 76px 0 88px;
  }

  .dbcv-why-grid,
  .dbcv-testimonials-grid {
    grid-template-columns: 1fr;
  }

  .dbcv-why-card__content h3 {
    font-size: 24px;
  }

  .dbcv-why-card__content p,
  .dbcv-why-card__benefit,
  .dbcv-testimonial-card__text,
  .dbcv-specialist-cta p,
  .dbcv-section-heading p {
    font-size: 17px;
  }

  .dbcv-testimonial-card__text {
    min-height: auto;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .dbcv-why-section {
    padding: 68px 0 60px;
  }

  .dbcv-testimonials-section {
    padding: 64px 0;
  }

  .dbcv-specialist-cta-section {
    padding: 64px 0 76px;
  }

  .dbcv-section-heading {
    margin-bottom: 34px;
  }

  .dbcv-section-heading h2,
  .dbcv-specialist-cta h2 {
    font-size: 32px;
    line-height: 1.16;
  }

  .dbcv-section-heading p,
  .dbcv-specialist-cta p {
    margin-top: 14px;
    font-size: 16px;
    line-height: 1.6;
  }

  .dbcv-section-kicker {
    font-size: 12px;
    letter-spacing: 0.12em;
    margin-bottom: 12px;
  }

  .dbcv-why-grid {
    gap: 16px;
  }

  .dbcv-why-card {
    gap: 14px;
    padding: 20px 18px 18px;
    min-height: auto;
    border-radius: 18px;
  }

  .dbcv-why-card__icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    flex-basis: 46px;
  }

  .dbcv-why-card__content h3 {
    margin: 0 0 8px;
    font-size: 20px;
    line-height: 1.25;
  }

  .dbcv-why-card__content p {
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.55;
  }

  .dbcv-why-card__benefit {
    font-size: 14px;
    line-height: 1.5;
  }

  .dbcv-testimonials-grid {
    gap: 16px;
  }

  .dbcv-testimonial-card {
    min-height: auto;
    padding: 20px 18px 18px;
    border-radius: 16px;
  }

  .dbcv-testimonial-card__stars {
    margin-bottom: 14px;
    font-size: 18px;
  }

  .dbcv-testimonial-card__text {
    margin-bottom: 18px;
    font-size: 15px;
    line-height: 1.65;
  }

  .dbcv-testimonial-card__author strong {
    font-size: 15px;
  }

  .dbcv-testimonial-card__author small {
    font-size: 13px;
  }

  .dbcv-specialist-cta__button {
    width: 100%;
    max-width: 320px;
    min-height: 56px;
    padding: 0 22px;
    font-size: 17px;
    border-radius: 12px;
  }
}

/* Respeito a acessibilidade */
@media (prefers-reduced-motion: reduce) {
  .dbcv-reveal,
  .dbcv-why-card,
  .dbcv-testimonial-card,
  .dbcv-specialist-cta__button {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

/* TESTE TEMPORÁRIO - forçar exibição das novas seções */
.dbcv-reveal {
  opacity: 1 !important;
  transform: none !important;
}

.dbcv-why-section *,
.dbcv-testimonials-section *,
.dbcv-specialist-cta-section * {
  visibility: visible !important;
}

/* =========================================================
PADRONIZAÇÃO TIPOGRÁFICA
Replica o padrão visual da seção "Categorias"
========================================================= */

:root {
  --dbcv-section-kicker-size: 14px;
  --dbcv-section-kicker-weight: 700;
  --dbcv-section-kicker-spacing: 0.14em;
  --dbcv-section-kicker-color: #4b9a72;

  --dbcv-section-title-size: 34px;
  --dbcv-section-title-line: 1.15;
  --dbcv-section-title-weight: 800;
  --dbcv-section-title-spacing: -0.03em;
  --dbcv-section-title-color: #1f2d24;

  --dbcv-section-subtitle-size: 18px;
  --dbcv-section-subtitle-line: 1.6;
  --dbcv-section-subtitle-weight: 400;
  --dbcv-section-subtitle-color: #7d8f84;

  --dbcv-section-text-size: 16px;
  --dbcv-section-text-line: 1.65;
  --dbcv-section-text-color: #6c7d73;
}

/* Cabeçalhos das seções */
#categorias .dbcv-section-head,
#produtos .dbcv-section-head,
#por-que-funciona .dbcv-section-head {
  max-width: 860px;
  margin: 0 auto 42px;
  text-align: center;
}

/* Kicker / overline */
#categorias .dbcv-section-kicker,
#produtos .dbcv-section-kicker,
#por-que-funciona .dbcv-section-kicker {
  display: inline-block;
  margin-bottom: 14px;
  font-size: var(--dbcv-section-kicker-size);
  font-weight: var(--dbcv-section-kicker-weight);
  letter-spacing: var(--dbcv-section-kicker-spacing);
  text-transform: uppercase;
  color: var(--dbcv-section-kicker-color);
}

/* Título principal da seção */
#categorias .dbcv-section-title,
#produtos .dbcv-section-title,
#por-que-funciona .dbcv-section-title {
  margin: 0;
  font-size: var(--dbcv-section-title-size);
  line-height: var(--dbcv-section-title-line);
  font-weight: var(--dbcv-section-title-weight);
  letter-spacing: var(--dbcv-section-title-spacing);
  color: var(--dbcv-section-title-color);
}

/* Subtítulo / texto de apoio da seção */
#categorias .dbcv-section-subtitle,
#produtos .dbcv-section-subtitle,
#por-que-funciona .dbcv-section-subtitle {
  max-width: 760px;
  margin: 14px auto 0;
  font-size: var(--dbcv-section-subtitle-size);
  line-height: var(--dbcv-section-subtitle-line);
  font-weight: var(--dbcv-section-subtitle-weight);
  color: var(--dbcv-section-subtitle-color);
}

/* Textos internos padronizados */
#categorias .dbcv-section-text,
#produtos .dbcv-section-text,
#por-que-funciona .dbcv-section-text {
  font-size: var(--dbcv-section-text-size);
  line-height: var(--dbcv-section-text-line);
  color: var(--dbcv-section-text-color);
}

/* ===== Equalização específica de "Por que funciona" ===== */
#por-que-funciona .dbcv-section-heading {
  max-width: 860px;
  margin: 0 auto 42px;
  text-align: center;
}

#por-que-funciona .dbcv-section-heading .dbcv-section-kicker {
  display: inline-block;
  margin-bottom: 14px;
  font-size: var(--dbcv-section-kicker-size);
  font-weight: var(--dbcv-section-kicker-weight);
  letter-spacing: var(--dbcv-section-kicker-spacing);
  text-transform: uppercase;
  color: var(--dbcv-section-kicker-color);
}

#por-que-funciona .dbcv-section-heading h2 {
  margin: 0;
  font-size: var(--dbcv-section-title-size);
  line-height: var(--dbcv-section-title-line);
  font-weight: var(--dbcv-section-title-weight);
  letter-spacing: var(--dbcv-section-title-spacing);
  color: var(--dbcv-section-title-color);
}

#por-que-funciona .dbcv-section-heading p {
  max-width: 760px;
  margin: 14px auto 0;
  font-size: var(--dbcv-section-subtitle-size);
  line-height: var(--dbcv-section-subtitle-line);
  color: var(--dbcv-section-subtitle-color);
}

/* Textos dos cards da seção "Por que funciona" */
#por-que-funciona .dbcv-why-card__content h3 {
  margin: 0 0 8px;
  font-size: 22px;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #26342c;
}

#por-que-funciona .dbcv-why-card__content p {
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 1.6;
  color: #74867b;
}

#por-que-funciona .dbcv-why-card__benefit {
  display: inline-block;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 700;
  color: #5aa07a;
}

/* ===== Equalização específica de "Produtos" =====
   Use apenas se a seção de produtos já existir com estes elementos */
#produtos .section-title,
#produtos .products-title,
#produtos h2.section-title {
  font-size: var(--dbcv-section-title-size);
  line-height: var(--dbcv-section-title-line);
  font-weight: var(--dbcv-section-title-weight);
  letter-spacing: var(--dbcv-section-title-spacing);
  color: var(--dbcv-section-title-color);
}

#produtos .section-subtitle,
#produtos .products-subtitle,
#produtos .section-description {
  font-size: var(--dbcv-section-subtitle-size);
  line-height: var(--dbcv-section-subtitle-line);
  color: var(--dbcv-section-subtitle-color);
}

/* ===== Header: melhora navegação visual sem quebrar layout ===== */
.site-header .nav a {
  scroll-behavior: smooth;
}

.site-header .nav a.is-active {
  color: #2e8b57;
  font-weight: 700;
}

/* Âncora não ficar escondida atrás do header fixo/sticky */
#produtos,
#categorias,
#por-que-funciona,
#especialista,
#parapsicologia,
#contato {
  scroll-margin-top: 110px;
}

/* Responsivo */
@media (max-width: 767px) {
  :root {
    --dbcv-section-kicker-size: 12px;
    --dbcv-section-title-size: 28px;
    --dbcv-section-subtitle-size: 16px;
    --dbcv-section-text-size: 15px;
  }

  #categorias .dbcv-section-head,
  #produtos .dbcv-section-head,
  #por-que-funciona .dbcv-section-head,
  #por-que-funciona .dbcv-section-heading {
    margin-bottom: 28px;
  }

  #por-que-funciona .dbcv-why-card__content h3 {
    font-size: 19px;
  }

  #por-que-funciona .dbcv-why-card__content p {
    font-size: 15px;
  }

  #por-que-funciona .dbcv-why-card__benefit {
    font-size: 14px;
  }
}

/* =========================================
PATCH FINAL — POR QUE FUNCIONA + ESPECIALISTA + PARAPSICOLOGIA + ATENDIMENTOS
Cole no FINAL do style.css
========================================= */

/* -----------------------------------------
1) Equalização da seção "Por que funciona"
----------------------------------------- */
#por-que-funciona .dbcv-section-heading {
  max-width: 900px;
  margin: 0 auto 40px;
  text-align: center;
}

#por-que-funciona .dbcv-section-kicker {
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: .18em;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
}

#por-que-funciona .dbcv-section-heading h2 {
  margin: 0 auto;
  max-width: 900px;
  font-size: 34px;
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: var(--text);
}

#por-que-funciona .dbcv-section-heading p {
  margin: 12px auto 0;
  max-width: 760px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
}

#por-que-funciona .dbcv-why-grid {
  gap: 22px;
}

#por-que-funciona .dbcv-why-card {
  min-height: auto;
  padding: 26px 24px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
  border: 1px solid rgba(0,0,0,.06);
}

#por-que-funciona .dbcv-why-card__icon {
  width: 56px;
  height: 56px;
  flex-basis: 56px;
  border-radius: 14px;
  background: var(--green-soft);
  color: var(--green);
}

#por-que-funciona .dbcv-why-card__icon svg {
  width: 28px;
  height: 28px;
}

#por-que-funciona .dbcv-why-card__content h3 {
  margin: 0 0 6px;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.01em;
}

#por-que-funciona .dbcv-why-card__content p {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}

#por-que-funciona .dbcv-why-card__benefit {
  display: inline-block;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 700;
  color: var(--green);
}

/* -----------------------------------------
2) ESPECIALISTA
----------------------------------------- */
.dbv-specialist-section,
.dbv-service-section,
.dbv-bottom-cta-section {
  background: #fff;
}

.dbv-specialist-section {
  padding: 76px 0 84px;
}

.dbv-specialist-wrap {
  display: grid;
  grid-template-columns: 520px 1fr;
  gap: 56px;
  align-items: center;
}

.dbv-specialist-photo-stack {
  position: relative;
  width: 100%;
  max-width: 460px;
}

.dbv-specialist-photo-stack::before,
.dbv-specialist-photo-stack::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 28px;
  background: #dfeee6;
  transform: rotate(-2deg);
  z-index: 0;
}

.dbv-specialist-photo-stack::after {
  transform: rotate(2deg) translate(16px, 10px);
  opacity: .55;
}

.dbv-specialist-photo-frame {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 24px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
  border: 1px solid rgba(0,0,0,.05);
}

.dbv-specialist-photo {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 18px;
  background: #a9d8bc;
}

.dbv-specialist-kicker,
.dbv-service-kicker {
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: .18em;
  font-weight: 700;
  color: var(--green);
}

.dbv-specialist-title,
.dbv-service-title,
.dbv-bottom-cta h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: var(--text);
}

.dbv-specialist-text,
.dbv-service-subtitle,
.dbv-bottom-cta p {
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
}

.dbv-specialist-note {
  margin-top: 18px;
  font-size: 15px;
  line-height: 1.65;
  color: #7c857f;
  font-style: italic;
}

.dbv-specialist-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.dbv-specialist-card {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 16px;
  background: #f2f8f4;
  border: 1px solid #deebe2;
}

.dbv-specialist-card__icon {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #e3f1e8;
  color: var(--green);
  font-weight: 800;
}

.dbv-specialist-card h3,
.dbv-service-card h3,
.dbv-parapsi-card h3 {
  margin: 0 0 4px;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 800;
  color: var(--text);
}

.dbv-specialist-card p,
.dbv-service-card p,
.dbv-parapsi-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
}

/* -----------------------------------------
3) PARAPSICOLOGIA
----------------------------------------- */
.dbv-parapsi-section {
  padding: 82px 0;
  background: linear-gradient(135deg, #14211b 0%, #1d3127 45%, #10221b 100%);
}

.dbv-parapsi-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.dbv-parapsi-badge {
  display: inline-block;
  margin: 0 0 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(80, 160, 118, .18);
  color: #d9f5e3;
  font-size: 12px;
  font-weight: 700;
}

.dbv-parapsi-copy h2 {
  margin: 0 0 18px;
  font-size: 34px;
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: #fff;
}

.dbv-parapsi-copy p {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,.78);
}

.dbv-parapsi-list {
  display: grid;
  gap: 18px;
}

.dbv-parapsi-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  border-radius: 18px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(4px);
}

.dbv-parapsi-card__icon {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(92, 178, 129, .14);
  color: #b9ebcb;
  font-weight: 800;
}

.dbv-parapsi-card h3 {
  color: #fff;
}

.dbv-parapsi-card p {
  color: rgba(255,255,255,.72);
}

/* -----------------------------------------
4) ATENDIMENTOS
----------------------------------------- */
.dbv-service-section {
  padding: 86px 0 92px;
}

.dbv-service-container {
  text-align: center;
}

.dbv-service-subtitle {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.dbv-service-grid {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.dbv-service-card {
  padding: 34px 28px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 10px 30px rgba(0,0,0,.05);
}

.dbv-service-card__icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 18px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--green-soft);
  color: var(--green);
  font-weight: 800;
}

.dbv-service-card strong {
  display: block;
  margin-top: 16px;
  font-size: 13px;
  color: var(--green);
}

.dbv-service-alert {
  max-width: 920px;
  margin: 24px auto 0;
  padding: 14px 18px;
  border-radius: 12px;
  background: #f5f6f6;
  color: #7b807d;
  font-size: 13px;
  line-height: 1.5;
}

.dbv-service-btn,
.dbv-bottom-cta-btn {
  margin-top: 28px;
  min-height: 56px;
  padding: 0 28px;
  background: #1cc561;
  color: #fff;
  border-radius: 14px;
  box-shadow: 0 12px 22px rgba(0,0,0,.10);
}

.dbv-service-btn:hover,
.dbv-bottom-cta-btn:hover {
  filter: brightness(.97);
}

/* -----------------------------------------
5) CTA FINAL
----------------------------------------- */
.dbv-bottom-cta-section {
  padding: 78px 0 92px;
  background: #f2f6f4;
}

.dbv-bottom-cta {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

/* -----------------------------------------
6) Reveal suave para elementos existentes
----------------------------------------- */
.dbcv-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .45s ease, transform .45s ease;
}

.dbcv-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* -----------------------------------------
7) Responsivo
----------------------------------------- */
@media (max-width: 980px) {
  .dbv-specialist-wrap,
  .dbv-parapsi-wrap,
  .dbv-service-grid,
  .dbv-specialist-grid {
    grid-template-columns: 1fr;
  }

  .dbv-specialist-wrap,
  .dbv-parapsi-wrap {
    gap: 32px;
  }

  .dbv-specialist-media {
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  #por-que-funciona .dbcv-section-heading h2,
  .dbv-specialist-title,
  .dbv-service-title,
  .dbv-bottom-cta h2,
  .dbv-parapsi-copy h2 {
    font-size: 32px;
  }

  #por-que-funciona .dbcv-section-heading p,
  #por-que-funciona .dbcv-why-card__content p,
  #por-que-funciona .dbcv-why-card__benefit,
  .dbv-specialist-text,
  .dbv-service-subtitle,
  .dbv-bottom-cta p,
  .dbv-parapsi-copy p {
    font-size: 15px;
  }

  #por-que-funciona .dbcv-why-card__content h3 {
    font-size: 17px;
  }

  .dbv-specialist-section,
  .dbv-service-section,
  .dbv-bottom-cta-section,
  .dbv-parapsi-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .dbv-specialist-card,
  .dbv-parapsi-card,
  .dbv-service-card {
    padding: 20px 18px;
  }
}

/* =========================================================
AJUSTE FINO | CTA + ESPECIALISTA + PARAPSICOLOGIA
Adicionar no FINAL do style.css
========================================================= */

/* ----- CTA: Fale com o especialista e tire suas dúvidas ----- */
.dbv-contact-cta,
.dbv-specialist-cta,
.contact-specialist-cta,
.section-talk-specialist {
  padding-top: 72px;
  padding-bottom: 72px;
}

.dbv-contact-cta h2,
.dbv-specialist-cta h2,
.contact-specialist-cta h2,
.section-talk-specialist h2 {
  font-size: clamp(2rem, 1.8rem + 0.8vw, 2.875rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 800;
  text-align: center;
  max-width: 760px;
  margin: 0 auto 14px;
}

.dbv-contact-cta p,
.dbv-specialist-cta p,
.contact-specialist-cta p,
.section-talk-specialist p {
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.125rem);
  line-height: 1.65;
  color: #6f7d76;
  text-align: center;
  max-width: 720px;
  margin: 0 auto 26px;
}

.dbv-contact-cta .btn,
.dbv-contact-cta .button,
.dbv-specialist-cta .btn,
.dbv-specialist-cta .button,
.contact-specialist-cta .btn,
.contact-specialist-cta .button,
.section-talk-specialist .btn,
.section-talk-specialist .button {
  min-height: 54px;
  padding: 0 28px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(37, 174, 96, 0.16);
}

/* ----- ESPECIALISTA ----- */
.dbv-specialist-section {
  padding-top: 76px;
  padding-bottom: 76px;
}

.dbv-specialist-kicker {
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.08em;
  font-weight: 800;
}

.dbv-specialist-title {
  max-width: 620px;
  font-size: clamp(2rem, 1.75rem + 0.9vw, 3.25rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
  font-weight: 800;
  margin: 10px 0 18px;
}

.dbv-specialist-text {
  max-width: 610px;
  font-size: 1rem;
  line-height: 1.78;
  color: #708078;
  margin-bottom: 14px;
}

.dbv-specialist-note {
  max-width: 620px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #7f8c85;
  font-style: italic;
  margin-bottom: 26px;
}

.dbv-specialist-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.dbv-specialist-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 16px 15px;
  background: #edf7f1;
  border: 1px solid rgba(55, 125, 96, 0.08);
  border-radius: 14px;
  box-shadow: none;
}

.dbv-specialist-card__icon {
  width: 42px;
  min-width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #e0f1e8;
  color: #4e8f70;
}

.dbv-specialist-card__icon svg {
  width: 20px;
  height: 20px;
}

.dbv-specialist-card h3 {
  font-size: 0.94rem;
  line-height: 1.25;
  font-weight: 700;
  margin: 0 0 5px;
}

.dbv-specialist-card p {
  font-size: 0.8rem;
  line-height: 1.5;
  color: #7a8780;
  margin: 0;
}

/* ----- PARAPSICOLOGIA ----- */
.dbv-parapsi-section {
  padding-top: 78px;
  padding-bottom: 78px;
}

.dbv-parapsi-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
}

.dbv-parapsi-copy h2 {
  max-width: 520px;
  font-size: clamp(2rem, 1.75rem + 0.8vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 800;
  margin: 18px 0 18px;
}

.dbv-parapsi-copy p {
  max-width: 520px;
  font-size: 1rem;
  line-height: 1.82;
}

.dbv-parapsi-list {
  display: grid;
  gap: 18px;
}

.dbv-parapsi-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 22px 20px;
  border-radius: 18px;
}

.dbv-parapsi-card__icon {
  width: 52px;
  min-width: 52px;
  height: 52px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.dbv-parapsi-card__icon svg {
  width: 23px;
  height: 23px;
}

.dbv-parapsi-card h3 {
  font-size: 1.05rem;
  line-height: 1.25;
  font-weight: 700;
  margin: 0 0 6px;
}

.dbv-parapsi-card p {
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
}

/* ----- RESPONSIVO ----- */
@media (max-width: 991px) {
  .dbv-specialist-grid {
    grid-template-columns: 1fr;
  }

  .dbv-specialist-title,
  .dbv-parapsi-copy h2 {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .dbv-specialist-section,
  .dbv-parapsi-section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .dbv-specialist-title {
    font-size: 2rem;
    line-height: 1.12;
  }

  .dbv-specialist-text,
  .dbv-specialist-note,
  .dbv-parapsi-copy p {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .dbv-parapsi-copy h2 {
    font-size: 2rem;
    line-height: 1.12;
  }

  .dbv-parapsi-card {
    padding: 18px;
    border-radius: 16px;
  }

  .dbv-contact-cta h2,
  .dbv-specialist-cta h2,
  .contact-specialist-cta h2,
  .section-talk-specialist h2 {
    font-size: 2rem;
    line-height: 1.16;
  }

  .dbv-contact-cta p,
  .dbv-specialist-cta p,
  .contact-specialist-cta p,
  .section-talk-specialist p {
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .dbv-contact-cta .btn,
  .dbv-contact-cta .button,
  .dbv-specialist-cta .btn,
  .dbv-specialist-cta .button,
  .contact-specialist-cta .btn,
  .contact-specialist-cta .button,
  .section-talk-specialist .btn,
  .section-talk-specialist .button {
    min-height: 52px;
    padding: 0 24px;
  }
}
