/* Estilos complementares do tema filho. */
.single-service-suggestions-cards .sv-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--background-item);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2.25rem 2rem;
  text-decoration: none;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.single-service-suggestions-cards .sv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, .1);
  border-color: var(--color-theme);
  text-decoration: none;
}

.single-service-suggestions-cards .sv-card__icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  background: rgba(var(--color-theme-rgb), .1);
  color: var(--color-theme);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.85rem;
  margin-bottom: 1.4rem;
  transition: background .3s, color .3s, transform .3s;
}

.single-service-suggestions-cards .sv-card:hover .sv-card__icon-wrap {
  background: var(--color-theme);
  color: #fff;
  transform: scale(1.08) rotate(-4deg);
}

.single-service-suggestions-cards .sv-card__title {
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--color-headline);
  margin-bottom: .65rem;
  line-height: 1.3;
}

.single-service-suggestions-cards .sv-card__excerpt {
  font-size: .9rem;
  color: var(--color-text-contrast);
  line-height: 1.65;
  flex-grow: 1;
  margin-bottom: 1.4rem;
}

.single-service-suggestions-cards .sv-card__cta {
  font-size: .88rem;
  font-weight: 700;
  color: var(--color-theme);
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  transition: gap .2s;
}

.single-service-suggestions-cards .sv-card:hover .sv-card__cta {
  gap: .6rem;
}


.intro-front-site.v2 {
  --color-fill-deep: #000000;
}

/* ============================================================
   Child-theme home sections
   Tokens: var(--color-fill), --color-fill-secondary, --background-item,
           --color-text, --color-text-contrast, --color-headline,
           --border-color, --color-theme, --color-theme-rgb
   Cor fixa (#hex) é aceitável em fundos intencionalmente sempre escuros.
   ============================================================ */

/* ── Scroll-reveal (shared, loaded by reveal.js) ── */
[data-reveal] {
  opacity: 0;
  transition: opacity .7s cubic-bezier(.22,.68,0,1.2),
              transform .7s cubic-bezier(.22,.68,0,1.2);
}
[data-reveal="fade-up"]   { transform: translateY(40px); }
[data-reveal="fade-down"] { transform: translateY(-24px); }
[data-reveal="fade-in"]   { transform: scale(.96); }
[data-reveal].is-revealed { opacity: 1; transform: none; }

/* ══════════════════════════════════════════════════════════════
   STATS — cst-*
   ══════════════════════════════════════════════════════════════ */

.cst-section {
  background: var(--color-fill);
  padding: 5rem 0;
  overflow: hidden;
}

/* Section header */
.cst-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.cst-suptitle {
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: .5rem;
}

.cst-title {
  font-size: clamp(1.6rem, 3.5vw, 2.3rem);
  font-weight: 800;
  color: var(--color-headline);
  margin: 0;
  letter-spacing: -.02em;
}

/* Grid — 4 col desktop, 2 col mobile */
.cst-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

@media (max-width: 767px) {
  .cst-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Each stat item */
.cst-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.5rem 1.5rem;
  position: relative;
}

.cst-item + .cst-item::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; height: 60%; width: 1px;
  background: var(--border-color);
}

@media (max-width: 767px) {
  .cst-item:nth-child(2n+1)::before { display: none; }
  .cst-item:nth-child(n+3) { border-top: 1px solid var(--border-color); }
}

/* Icon circle */
.cst-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(var(--color-theme-rgb), .1);
  color: var(--color-theme);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
  transition: background .3s, transform .3s;
}

.cst-item:hover .cst-icon {
  background: var(--color-theme);
  color: #fff;
  transform: scale(1.1);
}

/* Number */
.cst-value {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 900;
  color: var(--color-theme);
  line-height: 1;
  margin-bottom: .5rem;
  letter-spacing: -.04em;
  display: block;
}

.cst-prefix, .cst-suffix, .cst-number { display: inline; }

/* Label */
.cst-label {
  font-size: .88rem;
  color: var(--color-text-contrast);
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
  max-width: 140px;
}

/* ══════════════════════════════════════════════════════════════
   COMPLIANCE CTA — ccc-*
   Fundo sempre escuro por design (cor fixa intencional)
   ══════════════════════════════════════════════════════════════ */

.ccc-section {
  position: relative;
  overflow: hidden;
}

.ccc-inner {
  background: var(--color-fill);
  padding: 5.5rem 0;
  position: relative;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

/* Decorative glow — verde suave no fundo claro */
.ccc-inner::before {
  content: '';
  position: absolute;
  top: -160px; left: -160px;
  width: 560px; height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--color-theme-rgb), .07) 0%, transparent 70%);
  pointer-events: none;
}

/* Suptitle */
.ccc-suptitle {
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--color-theme);
  margin-bottom: .65rem;
}

/* Title */
.ccc-title {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--color-headline);
  margin-bottom: 1.1rem;
  line-height: 1.12;
  letter-spacing: -.025em;
}

/* Description */
.ccc-desc {
  font-size: .97rem;
  color: var(--color-text-contrast);
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* Bullet list */
.ccc-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: .85rem;
}

.ccc-list__item {
  display: flex;
  align-items: center;
  gap: .85rem;
  font-size: .93rem;
  color: var(--color-text);
  line-height: 1.5;
}

.ccc-list__icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(var(--color-theme-rgb), .1);
  color: var(--color-theme);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  margin-top: .1rem;
}

/* CTA card (right column) */
.ccc-card {
  background: var(--background-item);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,.08);
}

.ccc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-theme), rgba(var(--color-theme-rgb), .25));
}

.ccc-card__badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(239,68,68,.1);
  color: #dc2626;
  border: 1px solid rgba(239,68,68,.25);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .3rem .85rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}

.ccc-card__title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--color-headline);
  margin-bottom: .75rem;
  line-height: 1.2;
}

.ccc-card__desc {
  font-size: .88rem;
  color: var(--color-text-contrast);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.ccc-card__checks {
  list-style: none;
  padding: 0; margin: 0 0 1.75rem;
  text-align: left;
  display: flex; flex-direction: column; gap: .55rem;
}

.ccc-card__checks li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .85rem;
  color: var(--color-text);
}

.ccc-card__checks li i {
  color: var(--color-theme);
  flex-shrink: 0;
}

.ccc-card__note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  font-size: .78rem;
  color: var(--color-text-contrast);
  margin-top: .85rem;
  margin-bottom: 0;
}

/* ══════════════════════════════════════════════════════════════
   BENEFITS CLUB — ccb-*
   Fundo sempre escuro por design (cor fixa intencional)
   ══════════════════════════════════════════════════════════════ */

.ccb-section {
  position: relative;
  background: #070d14;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.ccb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(7,13,20,.87) 0%, rgba(7,13,20,.75) 55%, rgba(7,13,20,.7) 100%);
}

.ccb-container {
  position: relative;
  z-index: 1;
  padding-top: 5.5rem;
  padding-bottom: 5.5rem;
}

/* Decorative accent */
.ccb-section::after {
  content: '';
  position: absolute;
  bottom: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--color-theme-rgb), .08) 0%, transparent 65%);
  pointer-events: none;
}

/* Left column */
.ccb-suptitle {
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--color-theme);
  margin-bottom: .65rem;
}

.ccb-title {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.12;
  letter-spacing: -.025em;
}

.ccb-desc {
  font-size: .97rem;
  color: rgba(255,255,255,.68);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.ccb-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-bottom: 2rem;
}

.ccb-note {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .83rem;
  color: rgba(255,255,255,.45);
  margin: 0;
}

.ccb-note i { color: var(--color-theme); }

/* Benefits grid — 3 columns */
.ccb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .7rem;
}

@media (max-width: 575px) { .ccb-grid { grid-template-columns: repeat(2, 1fr); } }

/* Each benefit pill */
.ccb-benefit {
  display: flex;
  align-items: center;
  gap: .65rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  padding: .75rem 1rem;
  transition: background .2s, border-color .2s, transform .2s;
  cursor: default;
}

.ccb-benefit:hover {
  background: rgba(var(--color-theme-rgb), .12);
  border-color: rgba(var(--color-theme-rgb), .4);
  transform: translateY(-2px);
}

.ccb-benefit__icon {
  flex-shrink: 0;
  width: 34px; height: 34px;
  border-radius: 8px;
  background: rgba(var(--color-theme-rgb), .18);
  color: var(--color-theme);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
}

.ccb-benefit__label {
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255,255,255,.82);
  line-height: 1.3;
}

/* ============================================================
   Canal de Denúncias — home section (child-whistleblower)
   ============================================================ */

.cwd-section {
  background: var(--color-fill);
}

/* ── Imagem ── */
.cwd-image-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  line-height: 0;
}

.cwd-image {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

.cwd-image-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  background: var(--color-theme);
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .55rem 1.1rem;
  border-radius: 100px;
}

.cwd-image-badge i {
  font-size: 1rem;
}

/* ── Conteúdo ── */
.cwd-suptitle {
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: .65rem;
}

.cwd-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--color-headline);
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: 1rem;
}

.cwd-desc {
  color: var(--color-text-contrast);
  font-size: .97rem;
  line-height: 1.75;
  margin-bottom: 1.75rem;
}

/* ── Lista ── */
.cwd-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: .85rem;
}

.cwd-list__item {
  display: flex;
  align-items: center;
  gap: .9rem;
}

.cwd-list__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(var(--color-theme-rgb), .1);
  color: var(--color-theme);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.cwd-list__text {
  font-size: .94rem;
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.45;
}

/* ============================================================
   Sobre a CESOC — home section (child-about / recepção)
   ============================================================ */

.cab-section {
  background: var(--color-fill);
  padding-block: clamp(4rem, 8vw, 7rem);
}

/* ── Imagem ── */
.cab-image-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  line-height: 0;
  box-shadow: 0 40px 80px -40px rgba(0, 0, 0, .4);
}

.cab-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .12);
  pointer-events: none;
}

.cab-image {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 24px;
  display: block;
  transition: transform .6s ease;
}

.cab-image-wrap:hover .cab-image {
  transform: scale(1.04);
}

/* ── Conteúdo ── */
.cab-header {
  margin-bottom: 2.75rem;
}

.cab-suptitle {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 1.35rem;
}

.cab-suptitle__line {
  width: 34px;
  height: 2px;
  background: var(--color-theme);
  display: inline-block;
}

.cab-title {
  font-size: clamp(1.9rem, 3.6vw, 2.65rem);
  font-weight: 800;
  color: var(--color-headline);
  line-height: 1.18;
  letter-spacing: -.02em;
  margin-bottom: 1.5rem;
}

.cab-desc {
  color: var(--color-text-contrast);
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 0;
  max-width: 48ch;
}

/* ── Lista de destaques (cartões) ── */
.cab-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cab-list__item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.35rem 1.5rem;
  background: var(--background-item, rgba(var(--color-theme-rgb), .03));
  border: 1px solid var(--border-color);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.cab-list__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--color-theme);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .3s ease;
}

.cab-list__item:hover {
  transform: translateX(4px);
  border-color: rgba(var(--color-theme-rgb), .35);
  box-shadow: 0 18px 40px -28px rgba(0, 0, 0, .45);
}

.cab-list__item:hover::before {
  transform: scaleY(1);
}

.cab-list__icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(var(--color-theme-rgb), .1);
  color: var(--color-theme);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: background .3s ease, color .3s ease;
}

.cab-list__item:hover .cab-list__icon {
  background: var(--color-theme);
  color: #fff;
}

.cab-list__body {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  padding-top: .15rem;
}

.cab-list__title {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--color-headline);
  line-height: 1.35;
}

.cab-list__text {
  font-size: .92rem;
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.65;
}

.cab-cta {
  margin-top: .5rem;
}

@media (max-width: 991.98px) {
  .cab-image {
    height: 440px;
  }

  .cab-header {
    margin-bottom: 2.25rem;
  }
}
