/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --bg-main: #ffffff;
  --bg-alt: #f5f6f8;
  --bg-dark: #101010;
  --bg-dark-card: #1a1a1a;
  --text-main: #0a0a0a;
  --text-muted: #626c7a;
  --text-light-muted: #a3a3a3;
  --accent-red: #FF2E2E;
  --accent-red-hover: #d61e1e;
  --accent-soft: rgba(255, 46, 46, .07);
  --accent-blue: #1B4DB1;
  --accent-blue-hover: #143A87;
  --border: rgba(0, 0, 0, .08);
  --border-dark: rgba(255, 255, 255, .1);

  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;

  --container: 1180px;
  --header-height: 76px;
  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 26px;
  --shadow: 0 2px 16px rgba(0, 0, 0, .04);
  --shadow-hover: 0 18px 40px rgba(0, 0, 0, .09);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  background: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.14;
}

a {
  text-decoration: none;
  color: inherit;
  transition: .22s ease;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* ============================================================
   BASE DE SEÇÃO
   ============================================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 88px 0;
  position: relative;
}

.band-light {
  background: var(--bg-main);
}

.band-alt {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.band-dark {
  background: var(--bg-dark);
  color: #fff;
}

.band-dark h2,
.band-dark h3,
.band-dark h4 {
  color: #fff;
}

.band-dark p,
.band-dark li {
  color: var(--text-light-muted);
}

.center {
  text-align: center;
}

.hl {
  color: var(--accent-red);
}

/* Rótulo numerado da seção */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.kicker b {
  color: var(--accent-red);
  font-weight: 700;
}

.kicker::after {
  content: "";
  width: 42px;
  height: 2px;
  background: var(--accent-red);
  opacity: .45;
}

.band-dark .kicker {
  color: var(--text-light-muted);
}

.section-header {
  max-width: 720px;
  margin-bottom: 44px;
}

.section-header.center {
  margin-left: auto;
  margin-right: auto;
}

.section-header.wide {
  max-width: 860px;
}

/* Quebras de linha controladas no desktop */
.br-lg {
  display: none;
}

@media (min-width: 861px) {
  .nowrap-lg {
    white-space: nowrap;
  }

  .section-header:has(.nowrap-lg) {
    max-width: none;
  }

  .br-lg {
    display: inline;
  }
}

.section-header h2 {
  font-size: clamp(1.9rem, 3.8vw, 2.6rem);
  margin-bottom: 16px;
}

.section-header h2 .h2-sub {
  display: block;
  font-size: .56em;
  font-weight: 500;
  margin-top: 8px;
  color: var(--text-muted);
}

.band-dark .section-header h2 .h2-sub {
  color: var(--text-light-muted);
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.08rem;
}

.band-dark .section-header p {
  color: var(--text-light-muted);
}

h2.block-title {
  font-size: clamp(1.75rem, 3.2vw, 2.3rem);
  margin-bottom: 16px;
}

.lead {
  color: var(--text-muted);
  font-size: 1.03rem;
}

.band-dark .lead {
  color: var(--text-light-muted);
}

/* Declaração em destaque, sem barra lateral */
.statement {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}

.statement span {
  display: block;
  width: 34px;
  height: 3px;
  background: var(--accent-red);
  border-radius: 3px;
  margin: 0 auto 22px;
}

.statement p {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  line-height: 1.35;
  letter-spacing: -.02em;
  color: var(--text-main);
}

.band-dark .statement p {
  color: #fff;
}

/* ============================================================
   BOTÕES
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: var(--r-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: .98rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: .22s ease;
  white-space: nowrap;
}

.btn svg {
  width: 18px;
  height: 18px;
}

.btn-primary {
  background: var(--accent-red);
  color: #fff;
  border-color: var(--accent-red);
}

.btn-primary:hover {
  background: var(--accent-red-hover);
  border-color: var(--accent-red-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 46, 46, .26);
}

.btn-secondary {
  border-color: rgba(0, 0, 0, .18);
  color: var(--text-main);
  background: transparent;
}

.btn-secondary:hover {
  border-color: var(--text-main);
  background: var(--text-main);
  color: #fff;
}

.band-dark .btn-secondary {
  border-color: rgba(255, 255, 255, .28);
  color: #fff;
}

.band-dark .btn-secondary:hover {
  background: #fff;
  color: var(--text-main);
  border-color: #fff;
}

.btn-compact {
  padding: 10px 20px;
  font-size: .89rem;
}

.btn-block {
  width: 100%;
}

.btn:disabled {
  opacity: .4;
  cursor: not-allowed;
  pointer-events: none;
}

.cta-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cta-group.center {
  justify-content: center;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-red);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: .93rem;
}

.link-arrow svg {
  width: 16px;
  height: 16px;
  transition: transform .22s;
}

.link-arrow:hover svg {
  transform: translateX(4px);
}

/* ============================================================
   PLACEHOLDER DE MÍDIA
   ============================================================ */
.media-slot {
  border: 2px dashed rgba(255, 46, 46, .32);
  background: repeating-linear-gradient(45deg, rgba(255, 46, 46, .02) 0 12px, transparent 12px 24px);
  border-radius: var(--r-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 28px 24px;
  gap: 10px;
  color: var(--text-muted);
  height: 100%;
  min-height: 300px;
}

.media-slot svg {
  width: 28px;
  height: 28px;
  color: var(--accent-red);
}

.media-slot strong {
  font-family: var(--font-heading);
  font-size: .95rem;
  color: var(--text-main);
}

.media-slot span {
  font-size: .82rem;
  max-width: 330px;
  line-height: 1.5;
}

.slot-tag {
  font-family: var(--font-heading);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-red);
  background: var(--accent-soft);
  padding: 4px 10px;
  border-radius: 50px;
}

.band-dark .media-slot {
  border-color: rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .02);
  color: var(--text-light-muted);
}

.band-dark .media-slot strong {
  color: #fff;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-height);
  z-index: 1000;
  background: rgba(255, 255, 255, .93);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo img {
  height: 23px;
  width: auto;
}

.logo .custom-logo-link {
  display: flex;
  align-items: center;
  max-width: 140px;
}

.logo .custom-logo {
  display: block;
  width: auto;
  height: 23px;
  max-width: 140px;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -.05em;
}

.logo-text span {
  color: var(--accent-red);
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex: 1;
}

.nav-menu > ul {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu > ul > li,
.mobile-panel > ul > li,
.nav-menu > li,
.mobile-panel > li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu > li::marker,
.mobile-panel > li::marker {
  content: '';
}

.nav-menu a {
  font-size: .92rem;
  font-weight: 500;
}

.nav-menu a:hover {
  color: var(--accent-red);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-actions .btn-secondary {
  border-width: 1px;
  padding: 12px 20px;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-main);
  padding: 8px;
}

.mobile-panel {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 16px 24px 24px;
  z-index: 999;
  flex-direction: column;
  gap: 2px;
}

.mobile-panel.open {
  display: flex;
}

.mobile-panel > ul {
  display: flex;
  flex-direction: column;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-panel a:not(.btn) {
  padding: 12px 4px;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}

.mobile-panel .btn {
  margin-top: 16px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: calc(var(--header-height) + 68px) 0 84px;
  background: var(--bg-main);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 56px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: .77rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--accent-red);
  background: var(--accent-soft);
  padding: 8px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.hero-badge svg {
  width: 14px;
  height: 14px;
}

.hero h1 {
  font-size: clamp(2.2rem, 4.7vw, 3.3rem);
  margin-bottom: 16px;
}

.hero .subtitle {
  font-size: 1.06rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  max-width: 540px;
}

.hero-media {
  width: 100%;
  max-width: 560px;
  margin-inline: auto;
}

.hero-video {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 0;
  border-radius: var(--r-md);
  background: transparent;
  box-shadow: none;
}

.hero-video iframe {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ============================================================
   ORGANOGRAMA DOS AGENTES DE IA
   ============================================================ */
.orgchart {
  --org-line: rgba(255, 255, 255, .22);
  padding: 34px 24px 30px;
  border-radius: var(--r-lg);
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .1);
}

.org-top {
  display: flex;
  justify-content: center;
}

.org-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
  max-width: 250px;
  padding: 18px 16px;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
  text-align: center;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .5s ease, transform .5s ease;
}

.org-node--lead {
  background: linear-gradient(160deg, rgba(255, 46, 46, .18), rgba(255, 46, 46, .06));
  border-color: rgba(255, 46, 46, .38);
  max-width: 280px;
}

.org-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
}

.org-node--lead .org-icon {
  background: var(--accent-red);
  border-color: transparent;
}

.org-icon svg {
  width: 20px;
  height: 20px;
  color: #fff;
}

.org-name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
}

.org-role {
  font-size: .8rem;
  line-height: 1.4;
  color: var(--text-light-muted);
}

/* conectores */
.org-split {
  position: relative;
  height: 56px;
}

.org-split span {
  position: absolute;
  background: var(--org-line);
}

.org-split__stem {
  left: 50%;
  top: 0;
  width: 2px;
  height: 26px;
  margin-left: -1px;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .3s ease;
}

.org-split__bar {
  left: 25%;
  top: 25px;
  width: 50%;
  height: 2px;
  transform: scaleX(0);
  transition: transform .4s ease;
}

.org-split__drop {
  top: 25px;
  width: 2px;
  height: 31px;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .3s ease;
}

.org-split__drop--left {
  left: 25%;
  margin-left: -1px;
}

.org-split__drop--right {
  left: 75%;
  margin-left: -1px;
}

.org-drop {
  display: block;
  width: 2px;
  height: 26px;
  margin: 0 auto;
  background: var(--org-line);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .3s ease;
}

.org-heads {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.org-branch {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.org-agents {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.org-agent {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .13);
  opacity: 0;
  transform: scale(.55);
  transition: opacity .38s ease, transform .38s cubic-bezier(.2, .9, .3, 1.3);
}

.org-agent svg {
  width: 17px;
  height: 17px;
  color: var(--accent-red);
}

.org-caption {
  margin-top: 12px;
  font-size: .76rem;
  letter-spacing: .3px;
  color: var(--text-light-muted);
  opacity: 0;
  transition: opacity .4s ease;
}

/* sequência da animação */
.orgchart.is-on .org-node,
.orgchart.is-on .org-caption {
  opacity: 1;
  transform: none;
}

.orgchart.is-on .org-split__stem,
.orgchart.is-on .org-split__bar,
.orgchart.is-on .org-split__drop,
.orgchart.is-on .org-drop {
  transform: scale(1);
}

.orgchart.is-on .org-agent {
  opacity: 1;
  transform: none;
}

.orgchart.is-on .org-split__stem {
  transition-delay: .38s;
}

.orgchart.is-on .org-split__bar {
  transition-delay: .62s;
}

.orgchart.is-on .org-split__drop {
  transition-delay: .96s;
}

.orgchart.is-on .org-heads .org-node {
  transition-delay: 1.18s;
}

.orgchart.is-on .org-drop {
  transition-delay: 1.5s;
}

.orgchart.is-on .org-agent:nth-child(1) {
  transition-delay: 1.72s;
}

.orgchart.is-on .org-agent:nth-child(2) {
  transition-delay: 1.82s;
}

.orgchart.is-on .org-agent:nth-child(3) {
  transition-delay: 1.92s;
}

.orgchart.is-on .org-agent:nth-child(4) {
  transition-delay: 2.02s;
}

.orgchart.is-on .org-caption {
  transition-delay: 2.2s;
}

@media (max-width: 520px) {
  .orgchart {
    padding: 26px 14px 22px;
  }

  .org-heads {
    gap: 10px;
  }

  .org-node {
    padding: 14px 10px;
  }

  .org-name {
    font-size: .88rem;
  }

  .org-agents {
    gap: 5px;
  }

  .org-agent {
    width: 32px;
    height: 32px;
  }
}

@media (prefers-reduced-motion: reduce) {

  .orgchart .org-node,
  .orgchart .org-agent,
  .orgchart .org-caption,
  .orgchart .org-drop,
  .orgchart .org-split span {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================================
   JANELA DE NAVEGADOR / CARROSSEL DE SITES
   ============================================================ */
.browser {
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 28px 64px -28px rgba(15, 23, 42, .38), 0 2px 8px rgba(15, 23, 42, .06);
}

.browser-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 46px;
  padding: 0 16px;
  background: linear-gradient(180deg, #FCFCFD 0%, #F1F3F6 100%);
  border-bottom: 1px solid var(--border);
}

.browser-lights {
  display: flex;
  gap: 8px;
}

.browser-lights i {
  display: block;
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.browser-lights i:nth-child(1) {
  background: #FF5F57;
}

.browser-lights i:nth-child(2) {
  background: #FEBC2E;
}

.browser-lights i:nth-child(3) {
  background: #28C840;
}

.browser-url {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 260px;
  max-width: 100%;
  height: 28px;
  padding: 0 14px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--border);
  font-size: .76rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
}

.browser-url i,
.browser-url svg {
  width: 12px;
  height: 12px;
  flex: none;
  opacity: .65;
}

.browser-url__lock {
  display: inline-flex;
  flex: none;
}

.browser-url__lock[hidden] {
  display: none;
}

.browser-viewport {
  position: relative;
  aspect-ratio: 16 / 11;
  background: #F4F6F9;
  overflow: hidden;
}

.browser-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.015);
  transition: opacity .55s ease, transform .55s ease;
  pointer-events: none;
}

.browser-slide.is-active {
  opacity: 1;
  transform: none;
}

.browser-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: object-position 18s cubic-bezier(.33, 0, .45, 1);
}

/* ao passar o mouse, a página "rola" devagar mostrando o site inteiro */
.browser:hover .browser-slide.is-active img,
.browser:focus-within .browser-slide.is-active img {
  object-position: bottom center;
}

.browser-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, .94);
  color: var(--text-main);
  cursor: pointer;
  opacity: 0;
  box-shadow: 0 6px 20px -6px rgba(15, 23, 42, .35);
  transition: opacity .25s ease, background .2s ease, transform .2s ease;
}

.browser-nav i,
.browser-nav svg {
  width: 20px;
  height: 20px;
}

.browser-nav--prev {
  left: 14px;
}

.browser-nav--next {
  right: 14px;
}

.browser:hover .browser-nav,
.browser:focus-within .browser-nav {
  opacity: 1;
}

.browser-nav:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.06);
}

.browser-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 16px;
  background: #fff;
  border-top: 1px solid var(--border);
}

.browser-tag {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: .86rem;
  color: var(--text-main);
}

.browser-pager {
  display: flex;
  align-items: center;
  gap: 7px;
}

.browser-pager button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 99px;
  background: #D5D9E0;
  cursor: pointer;
  transition: width .3s ease, background .3s ease;
}

.browser-pager button:hover {
  background: #A8AFBB;
}

.browser-pager button.is-active {
  width: 22px;
  background: var(--accent-red);
}

/* variante estática: print do painel, largura cheia */
.browser--wide {
  max-width: 1020px;
  margin-left: auto;
  margin-right: auto;
}

figure.browser--wide {
  margin-top: 0;
  margin-bottom: 0;
}

.browser-shot {
  background: #fff;
}

.browser-shot img {
  display: block;
  width: 100%;
  height: auto;
}

.browser-caption {
  padding: 15px 20px;
  background: #fff;
  border-top: 1px solid var(--border);
  font-size: .85rem;
  line-height: 1.5;
  color: var(--text-muted);
  text-align: left;
}

@media (max-width: 900px) {
  .browser-nav {
    opacity: 1;
  }

  .browser-caption {
    font-size: .8rem;
    padding: 13px 16px;
  }
}

@media (max-width: 520px) {
  .browser-bar {
    height: 40px;
    padding: 0 12px;
  }

  .browser-url {
    width: 180px;
    height: 25px;
    font-size: .7rem;
  }

  .browser-viewport {
    aspect-ratio: 16 / 12;
  }

  .browser-nav {
    width: 34px;
    height: 34px;
  }
}

@media (prefers-reduced-motion: reduce) {

  .browser-slide,
  .browser-slide img,
  .browser-pager button {
    transition: none;
  }

  .browser:hover .browser-slide.is-active img,
  .browser:focus-within .browser-slide.is-active img {
    object-position: top center;
  }
}

/* ============================================================
   FLUXO (COMO FUNCIONA)
   ============================================================ */
.flow {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.flow-step {
  flex: 1;
  min-width: 0;
  background: var(--bg-dark-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--r-md);
  padding: 28px 22px;
  transition: .22s;
}

.flow-step:hover {
  border-color: rgba(255, 46, 46, .5);
  transform: translateY(-4px);
}

.flow-arrow {
  flex: none;
  width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--border-dark);
}

.band-dark .flow-arrow {
  color: rgba(255, 255, 255, .45);
}

.flow-arrow svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.5;
}

.flow-num {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  display: block;
  margin-bottom: 16px;
}

.flow-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  background: rgba(255, 46, 46, .13);
  color: var(--accent-red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.flow-step .flow-lead {
  display: block;
  font-family: var(--font-heading);
  font-size: .88rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 6px;
}

.flow-step p {
  font-size: .84rem;
  line-height: 1.5;
  color: var(--text-light-muted);
}

/* ============================================================
   O QUE VOCÊ VAI RECEBER
   ============================================================ */
.receive {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 48px;
  align-items: center;
}

.receive-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.receive-tab {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: var(--r-sm);
  background: none;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: .96rem;
  font-weight: 600;
  color: var(--text-muted);
  text-align: left;
  width: 100%;
  transition: .2s;
}

.receive-tab svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.receive-tab:hover {
  background: #fff;
  border-color: var(--border);
  color: var(--text-main);
}

.receive-tab.active {
  background: var(--text-main);
  color: #fff;
  border-color: var(--text-main);
}

.receive-tab.active svg {
  color: var(--accent-red);
}

.receive-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px;
  box-shadow: var(--shadow);
  min-height: 380px;
  display: flex;
  flex-direction: column;
}

.receive-panel {
  display: none;
  animation: fade .3s ease;
  flex-grow: 1;
}

.receive-panel.active {
  display: block;
}

@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.receive-panel h3 {
  font-size: 1.55rem;
  margin-bottom: 12px;
}

.receive-panel>p {
  color: var(--text-muted);
  font-size: 1.02rem;
  margin-bottom: 24px;
  max-width: 620px;
}

.receive-bullets {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.receive-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .96rem;
}

.receive-bullets svg {
  width: 18px;
  height: 18px;
  color: var(--accent-red);
  flex-shrink: 0;
  margin-top: 3px;
}

.receive-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.receive-counter {
  font-family: var(--font-heading);
  font-size: .84rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: .06em;
}

.arrow-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: .22s;
}

.arrow-btn:hover {
  background: var(--text-main);
  color: #fff;
  border-color: var(--text-main);
}

.arrow-btn svg {
  width: 18px;
  height: 18px;
}

.arrow-pair {
  display: flex;
  gap: 8px;
}

/* ============================================================
   SPLIT TEXTO + MÍDIA
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.split-copy {
  max-width: 460px;
}

.checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .96rem;
}

.checklist svg {
  width: 17px;
  height: 17px;
  color: var(--accent-red);
  flex-shrink: 0;
}

/* lista com marcadores numéricos */
.numlist {
  counter-reset: numlist;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
  list-style: none;
  padding: 0;
}

.numlist li {
  counter-increment: numlist;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: .96rem;
}

.numlist li::before {
  content: counter(numlist);
  flex: none;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 46, 46, .1);
  border: 1px solid rgba(255, 46, 46, .28);
  color: var(--accent-red);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .8rem;
  line-height: 1;
}

.band-dark .numlist li::before {
  background: rgba(255, 46, 46, .16);
  border-color: rgba(255, 46, 46, .4);
}

/* ============================================================
   CARDS SIMPLES
   ============================================================ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.s-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 28px;
  transition: .22s;
}

.s-card:hover {
  border-color: var(--accent-red);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.s-card .icon-box {
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  background: var(--accent-soft);
  color: var(--accent-red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.s-card h3 {
  font-size: 1.08rem;
  margin-bottom: 8px;
}

.s-card p {
  font-size: .92rem;
  color: var(--text-muted);
}

.band-dark .s-card {
  background: var(--bg-dark-card);
  border-color: var(--border-dark);
}

.band-dark .s-card .icon-box {
  background: rgba(255, 46, 46, .13);
}

/* ============================================================
   COMPARATIVO
   ============================================================ */
.compare {
  max-width: 940px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}

.compare-head,
.compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.compare-head>div {
  padding: 20px 24px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.compare-head .c-old {
  color: var(--text-muted);
  background: var(--bg-alt);
}

.compare-head .c-zimo {
  background: var(--text-main);
  color: #fff;
}

.compare-head .c-zimo img {
  width: auto;
  filter: none;
}

.compare-head .c-zimo-mark {
  height: 22px;
  border-radius: 5px;
}

.compare-head .c-zimo-logo {
  height: 15px;
}

.compare-row>div {
  padding: 16px 24px;
  font-size: .95rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.5;
}

.compare-row .c-old {
  color: var(--text-muted);
  background: var(--bg-alt);
}

.compare-row .c-zimo {
  font-weight: 500;
  background: #fff;
}

.compare-row:hover .c-zimo {
  background: rgba(255, 46, 46, .035);
}

.compare-row svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  margin-top: 3px;
}

.compare-row .c-old svg {
  color: #b9c0c9;
}

.compare-row .c-zimo svg {
  color: var(--accent-red);
}

/* ============================================================
   CONTRATO
   ============================================================ */
.pill-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 12px;
  max-width: 940px;
  margin: 40px auto 0;
}

.pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  font-size: .93rem;
  font-weight: 500;
  color: var(--text-main);
}

.band-dark .pill {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .14);
  color: #fff;
}

.pill svg {
  width: 17px;
  height: 17px;
  color: var(--accent-red);
  flex-shrink: 0;
}

/* ============================================================
   PAINEL DE RESULTADOS
   ============================================================ */
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.kpi-card {
  background: var(--bg-dark-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--r-md);
  padding: 20px;
}

.kpi-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--text-light-muted);
  margin-bottom: 12px;
}

.kpi-label svg {
  width: 15px;
  height: 15px;
  color: var(--accent-red);
}

.kpi-bar {
  height: 6px;
  border-radius: 50px;
  background: rgba(255, 255, 255, .07);
  overflow: hidden;
}

.kpi-bar span {
  display: block;
  height: 100%;
  background: var(--accent-red);
  border-radius: 50px;
  opacity: .85;
}

/* ============================================================
   OFERTAS
   ============================================================ */
.offers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1160px;
  margin: 0 auto;
}

.offer-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
  position: relative;
  transition: .22s;
}

.offer-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.offer-card.featured {
  border-color: var(--accent-red);
}

.offer-badge {
  position: absolute;
  top: -12px;
  left: 34px;
  background: var(--accent-red);
  color: #fff;
  font-family: var(--font-heading);
  font-size: .69rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 50px;
}

.offer-card h3 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.offer-for {
  color: var(--text-muted);
  font-size: .95rem;
  min-height: 48px;
}

.price {
  margin: 24px 0;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.price-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent-red);
  background: var(--accent-soft);
  padding: 4px 10px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.price-value {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -.03em;
}

.price-value .cur {
  font-size: 1.15rem;
}

.price-value .num {
  font-size: 2.9rem;
  line-height: 1;
}

.price-value .per {
  font-size: .95rem;
  font-weight: 500;
  color: var(--text-muted);
  font-family: var(--font-body);
}

.price-note {
  font-size: .86rem;
  color: var(--text-muted);
  margin-top: 8px;
}

.price-custom {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: -.02em;
  line-height: 1.2;
}

.offer-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.offer-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .94rem;
}

.offer-list svg {
  width: 16px;
  height: 16px;
  color: var(--accent-red);
  flex-shrink: 0;
  margin-top: 4px;
}

.offer-list .inherit {
  font-family: var(--font-heading);
  font-weight: 600;
}

.offer-card .btn {
  margin-top: auto;
}

/* ============================================================
   NICHOS
   ============================================================ */
.niche-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.niche-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: .22s;
}

.niche-card:hover {
  border-color: var(--accent-red);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.niche-card--extra {
  display: none;
  animation: nicheCardIn .4s ease;
}

.niche-grid.show-extra .niche-card--extra {
  display: flex;
}

@keyframes nicheCardIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .niche-card--extra {
    animation: none;
  }
}

.niche-more {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.niche-more .btn svg {
  transition: transform .25s ease;
}

.niche-more .btn.is-open svg {
  transform: rotate(180deg);
}

.niche-card .icon-box {
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  background: var(--accent-soft);
  color: var(--accent-red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.niche-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.niche-card p {
  color: var(--text-muted);
  font-size: .91rem;
  margin-bottom: 16px;
  flex-grow: 1;
}

.niche-card .link-arrow {
  font-size: .87rem;
  align-items: flex-start;
  line-height: 1.35;
  color: var(--accent-blue);
}

.niche-card:hover .link-arrow {
  color: var(--accent-blue-hover);
}

.niche-card .link-arrow svg {
  margin-top: 3px;
  flex-shrink: 0;
}

/* ============================================================
   BLOG
   ============================================================ */
.header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.header-row .section-header {
  margin-bottom: 0;
}

.carousel-container {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 8px 4px 20px;
  scrollbar-width: none;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.post-card {
  flex: 0 0 calc(33.333% - 15px);
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
  transition: .22s;
}

.post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.post-thumb {
  height: 180px;
  border-bottom: 1px solid var(--border);
}

.post-thumb .media-slot {
  min-height: 180px;
  height: 100%;
  border: none;
  border-radius: 0;
  padding: 16px;
}

.post-thumb .media-slot svg {
  width: 22px;
  height: 22px;
}

.post-thumb .media-slot span {
  font-size: .74rem;
}

.post-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.post-cat {
  font-family: var(--font-heading);
  font-size: .71rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--accent-red);
  margin-bottom: 8px;
}

.post-body h3 {
  font-size: 1.06rem;
  line-height: 1.35;
  margin-bottom: 8px;
}

.post-body h3 a:hover {
  color: var(--accent-red);
}

.post-body p {
  font-size: .89rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  flex-grow: 1;
}

.post-date {
  font-size: .81rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.post-date svg {
  width: 14px;
  height: 14px;
}

/* ============================================================
   CTA FINAL
   ============================================================ */
.final-cta {
  background: #1a1a1a;
  color: #fff;
  padding: 88px 0;
  text-align: center;
}

.final-cta h2 {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  color: #fff;
  margin-bottom: 16px;
}

.final-cta p {
  color: var(--text-light-muted);
  font-size: 1.06rem;
  max-width: 600px;
  margin: 0 auto 34px;
}

/* ============================================================
   RODAPÉ
   ============================================================ */
.footer {
  background: #080808;
  color: var(--text-light-muted);
  padding: 64px 0 0;
  font-size: .91rem;
}

.footer h5 {
  font-family: var(--font-heading);
  font-size: .77rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
}

.footer a:hover {
  color: var(--accent-red);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.footer-brand img {
  height: 26px;
  width: auto;
  margin-bottom: 16px;
}

.footer-brand p {
  max-width: 300px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-list a,
.footer-list span {
  width: fit-content;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.footer-social a:hover {
  background: #fff;
  border-color: #fff;
  color: #0a0a0a;
}

.footer-social svg {
  width: 17px;
  height: 17px;
  stroke-width: 1.7;
}

.footer-niches {
  padding: 32px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.footer-niches h5 {
  margin-bottom: 12px;
}

.footer-niches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px 28px;
  font-size: .86rem;
}

.footer-niches-grid a {
  padding: 2px 0;
  line-height: 1.45;
  width: fit-content;
  justify-self: start;
}

.footer-bottom-links a,
.footer-meta a {
  width: fit-content;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 24px 0;
  font-size: .84rem;
}

.footer-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-area {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-area svg {
  width: 16px;
  height: 16px;
  color: var(--accent-red);
}

.flag-link {
  display: inline-flex;
  width: 30px;
  height: 21px;
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .2);
  flex-shrink: 0;
}

.flag-link:hover {
  border-color: var(--accent-red);
  transform: translateY(-1px);
}

.flag-link svg {
  width: 100%;
  height: 100%;
  display: block;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* WhatsApp */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .18);
  z-index: 900;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.04);
}

.whatsapp-float svg {
  width: 26px;
  height: 26px;
}

/* Animação de entrada */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .55s ease, transform .55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 1024px) {

  .hero-grid,
  .split,
  .receive,
  .offers {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .split-copy {
    max-width: none;
  }

  .receive-nav {
    flex-direction: row;
    overflow-x: auto;
    gap: 8px;
    padding-bottom: 8px;
    scrollbar-width: none;
  }

  .receive-nav::-webkit-scrollbar {
    display: none;
  }

  .receive-tab {
    width: auto;
    white-space: nowrap;
    background: #fff;
    border-color: var(--border);
  }

  .flow {
    flex-direction: column;
  }

  .flow-arrow {
    width: auto;
    height: 28px;
  }

  .flow-arrow svg {
    transform: rotate(90deg);
  }

  .post-card {
    flex: 0 0 calc(50% - 11px);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-niches-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 980px) {

  .nav-menu,
  .nav-actions {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }
}

@media (max-width: 860px) {
  .section {
    padding: 72px 0;
  }

  .hero {
    padding: calc(var(--header-height) + 48px) 0 64px;
  }

  .receive-box {
    padding: 28px;
    min-height: 0;
  }

  .compare-head>div,
  .compare-row>div {
    padding: 16px 20px;
    font-size: .87rem;
  }

  .post-card {
    flex: 0 0 86%;
  }
}

@media (max-width: 620px) {

  .kpi-grid,
  .footer-top,
  .footer-niches-grid {
    grid-template-columns: 1fr;
  }

  .receive-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ============================================================
   LANDING PAGES DE NICHO
   ============================================================ */
.lp-hero {
  padding: calc(var(--header-height) + 52px) 0 68px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}

.lp-hero-grid {
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  gap: 56px;
  align-items: start;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.breadcrumb a:hover {
  color: var(--accent-red);
}

.breadcrumb svg {
  width: 13px;
  height: 13px;
  opacity: .6;
}

.lp-hero h1 {
  font-size: clamp(2rem, 4.1vw, 2.95rem);
  margin-bottom: 20px;
}

.lp-hero .subtitle {
  font-size: 1.08rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  max-width: 560px;
}

.lp-benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.lp-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .98rem;
  font-weight: 500;
}

.lp-benefits svg {
  width: 19px;
  height: 19px;
  color: var(--accent-red);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Formulário */
.form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .07);
  position: sticky;
  top: calc(var(--header-height) + 20px);
}

.form-card h2 {
  font-size: 1.32rem;
  margin-bottom: 8px;
}

.form-card .form-sub {
  font-size: .9rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.field {
  margin-bottom: 16px;
}

.field label {
  display: block;
  font-family: var(--font-heading);
  font-size: .8rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-size: .94rem;
  color: var(--text-main);
  background: #fff;
  transition: .2s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent-red);
  box-shadow: 0 0 0 3px rgba(255, 46, 46, .1);
}

.field textarea {
  resize: vertical;
  min-height: 84px;
}

.form-note {
  font-size: .78rem;
  color: var(--text-muted);
  margin-top: 12px;
  text-align: center;
  line-height: 1.5;
}

.form-submit-error {
  color: var(--accent-red);
}

.form-success {
  text-align: center;
  padding: 12px 4px 4px;
}

.form-success .icon-box {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: rgba(27, 77, 177, .1);
  color: var(--accent-blue);
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-success h3 {
  font-size: 1.15rem;
  margin: 0 0 8px;
}

.form-success p {
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

/* Conteúdo editorial */
.prose {
  max-width: 780px;
}

.prose.center {
  margin: 0 auto;
}

.prose h2 {
  font-size: clamp(1.6rem, 3vw, 2.05rem);
  margin-bottom: 16px;
}

.prose h3 {
  font-size: 1.2rem;
  margin: 40px 0 12px;
}

.prose p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 1.02rem;
}

.prose p strong {
  color: var(--text-main);
  font-weight: 600;
}

.prose ul {
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.prose ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-muted);
  font-size: 1rem;
}

.prose ul li svg {
  width: 17px;
  height: 17px;
  color: var(--accent-red);
  flex-shrink: 0;
  margin-top: 4px;
}

/* Serviços do nicho */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 20px;
}

.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 28px;
  transition: .22s;
}

.service-card:hover {
  border-color: var(--accent-red);
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.service-card .icon-box {
  width: 42px;
  height: 42px;
  border-radius: var(--r-sm);
  background: var(--accent-soft);
  color: var(--accent-red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.service-card p {
  font-size: .91rem;
  color: var(--text-muted);
}

.band-dark .service-card {
  background: var(--bg-dark-card);
  border-color: var(--border-dark);
}

.band-dark .service-card .icon-box {
  background: rgba(255, 46, 46, .13);
}

/* Para quem é */
.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 940px;
  margin: 0 auto;
}

.fit-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
}

.fit-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.15rem;
  margin-bottom: 16px;
}

.fit-card h3 svg {
  width: 21px;
  height: 21px;
}

.fit-yes h3 svg {
  color: var(--accent-red);
}

.fit-no h3 svg {
  color: #9aa3ae;
}

.fit-card ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fit-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .95rem;
  color: var(--text-muted);
}

.fit-card li svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 4px;
}

.fit-yes li svg {
  color: var(--accent-red);
}

.fit-no li svg {
  color: #b9c0c9;
}

/* FAQ */
.faq {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.04rem;
  font-weight: 600;
  color: var(--text-main);
}

.faq-q:hover {
  color: var(--accent-red);
}

.faq-q svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--accent-red);
  transition: transform .25s;
}

.faq-item.open .faq-q svg {
  transform: rotate(45deg);
}

.faq-a {
  display: none;
  padding: 0 0 24px;
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 700px;
}

.faq-item.open .faq-a {
  display: block;
}

/* Faixa de reforço */
.strip {
  background: var(--text-main);
  color: #fff;
  border-radius: var(--r-lg);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}

.strip h2 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.strip p {
  color: var(--text-light-muted);
  font-size: .98rem;
  max-width: 560px;
}

@media (max-width: 1024px) {

  .lp-hero-grid,
  .fit-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-card {
    position: static;
  }
}

@media (max-width: 620px) {
  .form-card {
    padding: 24px 20px;
  }

  .strip {
    padding: 32px 24px;
  }
}

/* ============================================================
   BLOCO DE PRODUTO (máquina de IA + equipe humana)
   ============================================================ */
.machine {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.machine-card {
  background: var(--bg-dark-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--r-md);
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.machine-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent-red);
  opacity: .3;
}

.machine-card .icon-box {
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  background: rgba(255, 46, 46, .13);
  color: var(--accent-red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.machine-card h3 {
  font-size: 1.06rem;
  color: #fff;
  margin-bottom: 8px;
}

.machine-card p {
  font-size: .9rem;
  color: var(--text-light-muted);
  line-height: 1.55;
}

.machine-lead {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.machine-lead p {
  font-size: 1.1rem;
  color: var(--text-light-muted);
}

.machine-lead p strong {
  color: #fff;
  font-weight: 600;
}

/* Etapas explicadas */
.stepline {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 880px;
  margin: 0 auto;
}

.stepline-item {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.stepline-item:last-child {
  border-bottom: none;
}

.band-dark .stepline-item {
  border-color: var(--border-dark);
}

.stepline-tag {
  font-family: var(--font-heading);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent-red);
  padding-top: 4px;
}

.stepline-item h3 {
  font-size: 1.18rem;
  margin-bottom: 8px;
}

.stepline-item p {
  color: var(--text-muted);
  font-size: 1rem;
}

.band-dark .stepline-item p {
  color: var(--text-light-muted);
}

.stepline-example {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 12px;
  padding: 12px 16px;
  background: var(--bg-alt);
  border-radius: var(--r-sm);
  font-size: .91rem;
  color: var(--text-main);
}

.band-dark .stepline-example {
  background: rgba(255, 255, 255, .05);
  color: #fff;
}

.stepline-example svg {
  width: 16px;
  height: 16px;
  color: var(--accent-red);
  flex-shrink: 0;
  margin-top: 3px;
}

/* Imagem dentro do conteúdo */
.prose .media-slot {
  min-height: 280px;
  margin: 32px 0;
}

.prose figure {
  margin: 32px 0;
}

.prose figcaption {
  font-size: .84rem;
  color: var(--text-muted);
  margin-top: 10px;
  text-align: center;
}

@media (max-width: 1024px) {
  .machine {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .machine {
    grid-template-columns: 1fr;
  }

  .stepline-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

/* Alinha o formulário do topo com o início do conteúdo */
@media (min-width: 1025px) {
  .lp-form-col {
    padding-top: 48px;
  }
}

/* ============================================================
   UTILITÁRIOS DE ESPAÇAMENTO
   Escala do site: 4 / 8 / 12 / 16 / 20 / 24 / 32 / 40 / 48 / 56 / 104
   ============================================================ */
.mt-block {
  margin-top: 48px;
}

.mt-sm {
  margin-top: 24px;
}

.note-muted {
  font-size: .84rem;
  margin-top: 16px;
  color: var(--text-light-muted);
}

/* Ajustes finos de ritmo */
.section-header .kicker {
  margin-bottom: 20px;
}

.receive-footer {
  margin-top: 32px;
  padding-top: 24px;
}

.price {
  margin: 24px 0;
  padding: 24px 0;
}

.lp-benefits {
  margin-bottom: 32px;
}

.lp-hero .subtitle {
  margin-bottom: 32px;
}

.form-card .form-sub {
  margin-bottom: 24px;
}

.stepline-item {
  padding: 26px 0;
}

.machine {
  margin-top: 40px;
}

.final-cta p {
  margin: 0 auto 32px;
}

.header-row {
  margin-bottom: 40px;
}

.footer-brand p {
  margin-bottom: 24px;
}

.breadcrumb {
  margin-bottom: 24px;
}

/* ============================================================
   DESTAQUE NUMÉRICO DENTRO DO TEXTO
   ============================================================ */
.prose-stat {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 34px 0;
  padding: 26px 28px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, rgba(255, 46, 46, .07), rgba(255, 46, 46, .02));
  border: 1px solid rgba(255, 46, 46, .22);
  border-left: 4px solid var(--accent-red);
}

.prose-stat__num {
  flex: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1;
  color: var(--accent-red);
  letter-spacing: -.02em;
}

.prose-stat p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.5;
  color: var(--text-main);
}

@media (max-width: 620px) {
  .prose-stat {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 22px 20px;
  }

  .prose-stat__num {
    font-size: 2.1rem;
  }

  .prose-stat p {
    font-size: .95rem;
  }
}

/* ============================================================
   VITRINE DE CLIENTES ATENDIDOS
   ============================================================ */
.showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 920px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--bg-dark-card);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .35);
}

.showcase-item {
  position: relative;
  min-height: 560px;
  max-height: 620px;
  overflow: hidden;
  background: #fff;
}

.showcase-item+.showcase-item {
  border-left: 1px solid rgba(255, 255, 255, .14);
}

/* variante com um único trabalho: print + painel de destaques */
.showcase--single {
  grid-template-columns: 1.05fr .95fr;
}

.showcase-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 44px 40px;
  border-left: 1px solid rgba(255, 255, 255, .14);
}

.showcase-side h3 {
  font-size: 1.32rem;
  line-height: 1.25;
  margin-bottom: 14px;
  color: #fff;
}

.showcase-side p {
  font-size: .96rem;
  line-height: 1.6;
  color: var(--text-light-muted);
  margin-bottom: 26px;
}

.showcase-side__list {
  display: flex;
  flex-direction: column;
  gap: 13px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.showcase-side__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .95rem;
  line-height: 1.45;
  color: #fff;
}

.showcase-side__list svg {
  width: 17px;
  height: 17px;
  margin-top: 3px;
  flex: none;
  color: var(--accent-red);
}

@media (max-width: 860px) {
  .showcase--single {
    grid-template-columns: 1fr;
  }

  .showcase-side {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, .14);
    padding: 32px 24px;
  }
}

.showcase-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* leve escurecimento no topo, para o botão ter contraste */
.showcase-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 96px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, .3), transparent);
  pointer-events: none;
  opacity: 0;
  transition: opacity .25s;
}

.showcase-item:hover::before {
  opacity: 1;
}

.showcase-link {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 50px;
  background: var(--accent-red);
  color: #fff;
  font-family: var(--font-heading);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .25);
  z-index: 2;
}

.showcase-link:hover {
  background: var(--accent-red-hover);
  transform: translateY(-2px);
}

.showcase-link svg {
  width: 14px;
  height: 14px;
}

.showcase-tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  padding: 8px 14px;
  border-radius: 50px;
  background: rgba(10, 10, 10, .85);
  backdrop-filter: blur(6px);
  color: #fff;
  font-family: var(--font-heading);
  font-size: .74rem;
  font-weight: 600;
  z-index: 2;
}

.showcase-caption {
  text-align: center;
  color: var(--text-light-muted);
  font-size: .9rem;
  max-width: 620px;
  margin: 24px auto 0;
}

@media (max-width: 860px) {
  .showcase {
    grid-template-columns: 1fr;
  }

  .showcase-item+.showcase-item {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, .14);
  }

  .showcase-item {
    min-height: 420px;
    max-height: 460px;
  }
}

/* ============================================================
   REVISÃO DE LAYOUT E MOBILE
   ============================================================ */

/* Evita que blocos escuros seguidos se fundam */
.band-dark + .band-dark {
  border-top: 1px solid var(--border-dark);
}

/* Imagens dentro de seções escuras */
.band-dark .prose p,
.band-dark .prose ul li {
  color: var(--text-light-muted);
}

/* Tablet */
@media (max-width: 1024px) {
  .section {
    padding: 72px 0;
  }

  .machine-lead p {
    font-size: 1.04rem;
  }

  .receive-box {
    min-height: 0;
  }
}

/* Celular grande */
@media (max-width: 860px) {

  .lp-hero {
    padding: calc(var(--header-height) + 40px) 0 56px;
  }

  .final-cta {
    padding: 76px 0;
  }

  .footer {
    padding-top: 56px;
  }

  .offer-card {
    padding: 28px 24px;
  }

  .fit-card {
    padding: 26px 24px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .faq-q {
    font-size: .98rem;
    padding: 20px 0;
    gap: 14px;
  }

  .stepline-item {
    padding: 26px 0;
  }

  .prose h3 {
    margin: 32px 0 12px;
  }

  .prose .media-slot,
  .showcase-item .media-slot {
    min-height: 220px;
  }

  .price-value .num {
    font-size: 2.5rem;
  }

  .offer-badge {
    left: 24px;
  }

  .machine-card,
  .s-card,
  .service-card,
  .niche-card {
    padding: 24px 22px;
  }
}

/* Celular pequeno */
@media (max-width: 620px) {
  :root {
    --header-height: 68px;
  }

  .container {
    padding: 0 20px;
  }

  .section {
    padding: 60px 0;
  }

  .section-header h2,
  h2.block-title {
    font-size: 1.65rem;
  }

  .section-header p,
  .lead {
    font-size: 1rem;
  }

  .lp-hero h1 {
    font-size: 1.95rem;
  }

  .hero h1 {
    font-size: 2.05rem;
  }

  .hero .subtitle,
  .lp-hero .subtitle {
    font-size: 1.02rem;
  }

  .cta-group .btn {
    width: 100%;
  }

  .statement p {
    font-size: 1.12rem;
  }

  .compare-head>div {
    font-size: .82rem;
    padding: 14px 12px;
  }

  .compare-row>div {
    font-size: .81rem;
    padding: 14px 12px;
    gap: 8px;
  }

  .compare-row svg,
  .compare-head svg {
    width: 14px;
    height: 14px;
  }

  .compare-head .c-zimo-mark {
    height: 18px;
  }

  .compare-head .c-zimo-logo {
    height: 12px;
  }

  .receive-box {
    padding: 24px 20px;
  }

  .receive-panel h3 {
    font-size: 1.3rem;
  }

  .form-card {
    padding: 24px 20px;
  }

  .final-cta {
    padding: 64px 0;
  }

  .showcase-link {
    top: 12px;
    right: 12px;
    padding: 8px 13px;
    font-size: .66rem;
  }

  .showcase-tag {
    bottom: 12px;
    left: 12px;
    font-size: .7rem;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    right: 16px;
    bottom: 16px;
  }

  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }
}

/* Telas muito estreitas */
@media (max-width: 400px) {
  .lp-hero h1 {
    font-size: 1.78rem;
  }

  .hero h1 {
    font-size: 1.85rem;
  }

  .section-header h2,
  h2.block-title {
    font-size: 1.5rem;
  }

  .price-value .num {
    font-size: 2.2rem;
  }
}

/* ============================================================
   CTA ÚNICO NO TOPO DAS LANDINGS
   ============================================================ */
.btn-lg {
  padding: 17px 32px;
  font-size: 1.02rem;
}

.hero-hint {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: .89rem;
  color: var(--text-muted);
  font-weight: 500;
}

.hero-hint svg {
  width: 16px;
  height: 16px;
  color: var(--accent-red);
}

@media (max-width: 1024px) {

  /* no celular o formulário fica logo abaixo, a dica perde o sentido */
  .hero-hint {
    display: none;
  }

  .lp-hero .cta-group .btn {
    width: 100%;
  }
}

/* ============================================================
   PÁGINAS DE APOIO: página padrão, blog, categoria, busca, 404
   ============================================================ */
.page-hero {
  padding: calc(var(--header-height) + 56px) 0 48px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  margin-bottom: 16px;
  max-width: 800px;
}

.page-hero .page-sub {
  color: var(--text-muted);
  font-size: 1.06rem;
  max-width: 640px;
}

.page-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .86rem;
  color: var(--text-muted);
  margin-top: 16px;
}

.page-meta svg {
  width: 15px;
  height: 15px;
  color: var(--accent-red);
}

/* Conteúdo de página padrão */
.doc {
  max-width: 780px;
  margin: 0 auto;
}

.doc h2 {
  font-size: 1.45rem;
  margin: 40px 0 14px;
}

.doc h2:first-child {
  margin-top: 0;
}

.doc h3 {
  font-size: 1.1rem;
  margin: 28px 0 10px;
}

.doc p {
  color: var(--text-muted);
  margin-bottom: 16px;
}

.doc ul {
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.doc ul li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: var(--text-muted);
}

.doc ul li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-red);
  flex-shrink: 0;
  margin-top: 10px;
}

.doc a:not(.btn) {
  color: var(--accent-blue);
  font-weight: 500;
  border-bottom: 1px solid rgba(27, 77, 177, .3);
}

.doc a:not(.btn):hover {
  border-bottom-color: var(--accent-blue);
}

.doc-box {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 24px 28px;
  margin: 28px 0;
}

.doc-box p:last-child {
  margin-bottom: 0;
}

/* Chips de categoria */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 50px;
  border: 1px solid var(--border);
  background: #fff;
  font-family: var(--font-heading);
  font-size: .88rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: .2s;
}

.chip:hover {
  border-color: var(--text-main);
  color: var(--text-main);
}

.chip.active {
  background: var(--text-main);
  border-color: var(--text-main);
  color: #fff;
}

.chip.active svg {
  color: var(--accent-red);
}

.chip svg {
  width: 15px;
  height: 15px;
}

/* Grade de artigos */
.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.post-grid .post-card {
  flex: none;
}

/* Artigo em destaque */
.post-featured {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
  margin-bottom: 40px;
}

.post-featured .media-slot {
  border: none;
  border-radius: 0;
  min-height: 320px;
}

.post-featured-body {
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.post-featured-body h2 {
  font-size: 1.55rem;
  line-height: 1.25;
  margin: 10px 0 12px;
}

.post-featured-body h2 a:hover {
  color: var(--accent-red);
}

.post-featured-body p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* Busca */
.searchbar {
  display: flex;
  gap: 10px;
  max-width: 560px;
  margin-top: 24px;
}

.searchbar input {
  flex: 1;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-size: .96rem;
  background: #fff;
}

.searchbar input:focus {
  outline: none;
  border-color: var(--accent-red);
  box-shadow: 0 0 0 3px rgba(255, 46, 46, .1);
}

/* Paginação */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 48px;
}

.pagination a,
.pagination span {
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: .92rem;
  font-weight: 600;
  color: var(--text-muted);
}

.pagination a:hover {
  border-color: var(--text-main);
  color: var(--text-main);
}

.pagination .current {
  background: var(--text-main);
  border-color: var(--text-main);
  color: #fff;
}

.pagination .dots {
  border: none;
  background: none;
  min-width: 20px;
}

/* Estado vazio */
.empty-state {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
  padding: 40px 0;
}

.empty-state .icon-box {
  width: 64px;
  height: 64px;
  border-radius: var(--r-md);
  background: var(--accent-soft);
  color: var(--accent-red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.empty-state .icon-box svg {
  width: 28px;
  height: 28px;
}

.empty-state h2 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.empty-state p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* 404 */
.error-page {
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  padding: calc(var(--header-height) + 40px) 0 64px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 46, 46, .07), transparent 42%),
    radial-gradient(circle at 85% 70%, rgba(27, 77, 177, .06), transparent 40%);
}

.error-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}

.error-code {
  font-family: var(--font-heading);
  font-size: clamp(5rem, 14vw, 9rem);
  font-weight: 700;
  line-height: .9;
  letter-spacing: -.06em;
  margin-bottom: 20px;
}

.error-code span {
  color: var(--accent-red);
}

.error-page h1 {
  font-size: clamp(1.6rem, 3.4vw, 2.2rem);
  margin-bottom: 16px;
}

.error-page .lead {
  font-size: 1.06rem;
  margin-bottom: 28px;
  max-width: 480px;
}

.error-links {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.error-links h2 {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.error-links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
}

.error-links-grid a {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .93rem;
  color: var(--text-muted);
  padding: 4px 0;
  width: fit-content;
}

.error-links-grid a:hover {
  color: var(--accent-red);
}

.error-links-grid svg {
  width: 14px;
  height: 14px;
  color: var(--accent-red);
  flex-shrink: 0;
}

/* Terminal do 404 */
.terminal {
  background: var(--bg-dark);
  border: 1px solid var(--border-dark);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .28);
}

.terminal-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border-dark);
  background: #161616;
}

.terminal-bar i {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #3a3a3a;
  display: block;
}

.terminal-bar i:first-child {
  background: var(--accent-red);
}

.terminal-bar span {
  margin-left: 8px;
  font-family: var(--font-heading);
  font-size: .76rem;
  color: var(--text-light-muted);
  letter-spacing: .06em;
}

.terminal-body {
  padding: 26px 24px 30px;
  font-family: 'Space Grotesk', monospace;
  font-size: .9rem;
  line-height: 2;
  color: var(--text-light-muted);
}

.terminal-body b {
  color: var(--accent-red);
  font-weight: 600;
}

.terminal-body em {
  color: #fff;
  font-style: normal;
}

.terminal-cursor {
  display: inline-block;
  width: 9px;
  height: 16px;
  background: var(--accent-red);
  vertical-align: -3px;
  animation: blink 1.05s steps(2, start) infinite;
}

@keyframes blink {
  to {
    visibility: hidden;
  }
}

@media (max-width: 1024px) {

  .post-featured,
  .error-grid {
    grid-template-columns: 1fr;
  }

  .post-featured .media-slot {
    min-height: 240px;
  }
}

@media (max-width: 620px) {
  .error-links-grid {
    grid-template-columns: 1fr;
  }

  .post-featured-body {
    padding: 26px 22px;
  }

  .searchbar {
    flex-direction: column;
  }

  .searchbar .btn {
    width: 100%;
  }
}

/* ============================================================
   ARTIGO: leitura confortável e blocos do WordPress
   ============================================================ */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: var(--accent-red);
  z-index: 1200;
  transition: width .1s linear;
}

.article-hero {
  padding: calc(var(--header-height) + 48px) 0 40px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}

.article-hero h1 {
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  line-height: 1.18;
  margin: 16px 0 18px;
  max-width: 840px;
}

.article-excerpt {
  font-size: 1.14rem;
  color: var(--text-muted);
  max-width: 720px;
  line-height: 1.6;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: .89rem;
  color: var(--text-muted);
}

.article-meta .author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .92rem;
  flex-shrink: 0;
  overflow: hidden;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-meta .author strong {
  display: block;
  font-family: var(--font-heading);
  font-size: .93rem;
  color: var(--text-main);
}

.article-meta .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--border);
}

.article-meta span.item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.article-meta svg {
  width: 15px;
  height: 15px;
  color: var(--accent-red);
}

.article-featured {
  margin: 0 auto;
  max-width: var(--container);
  padding: 0 24px;
}

.article-featured figure {
  max-width: 900px;
  margin: -32px auto 0;
  aspect-ratio: 3 / 2;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-hover);
  background: #fff;
}

.article-featured figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.article-featured .media-slot {
  border: none;
  border-radius: 0;
  min-height: 0;
  height: 100%;
}

/* Layout do artigo */
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 56px;
  align-items: start;
}

.article-aside {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.aside-box {
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 22px;
  background: #fff;
}

.aside-box h2 {
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.toc {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.toc a {
  font-size: .9rem;
  color: var(--text-muted);
  padding: 7px 0 7px 14px;
  border-left: 2px solid var(--border);
  line-height: 1.45;
}

.toc a:hover,
.toc a.active {
  color: var(--text-main);
  border-left-color: var(--accent-red);
}

.toc a.sub {
  padding-left: 26px;
  font-size: .86rem;
}

.aside-cta {
  background: var(--bg-dark);
  border-color: var(--border-dark);
}

.aside-cta h2 {
  color: var(--text-light-muted);
}

.aside-cta p {
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.35;
  margin-bottom: 16px;
}

.share {
  display: flex;
  gap: 8px;
}

.share a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}

.share a:hover {
  background: var(--text-main);
  border-color: var(--text-main);
  color: #fff;
}

.share svg {
  width: 16px;
  height: 16px;
}

/* ============================================================
   CONTEÚDO DO ARTIGO (classes do editor do WordPress)
   ============================================================ */
.entry-content {
  max-width: 720px;
  font-size: 1.08rem;
  line-height: 1.8;
  color: #262d38;
}

.entry-content>*+* {
  margin-top: 24px;
}

.entry-content p {
  margin: 0;
}

.entry-content .lead,
.entry-content>p:first-of-type {
  font-size: 1.16rem;
  line-height: 1.65;
  color: #1a212b;
}

/* Títulos */
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
  color: var(--text-main);
  scroll-margin-top: calc(var(--header-height) + 20px);
}

.entry-content h2 {
  font-size: 1.62rem;
  line-height: 1.25;
  margin-top: 56px;
}

.entry-content h3 {
  font-size: 1.26rem;
  margin-top: 40px;
}

.entry-content h4 {
  font-size: 1.08rem;
  margin-top: 32px;
}

.entry-content h5,
.entry-content h6 {
  font-size: .96rem;
  margin-top: 28px;
  letter-spacing: .02em;
}

.entry-content h6 {
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .82rem;
  color: var(--text-muted);
}

.entry-content h2+*,
.entry-content h3+*,
.entry-content h4+* {
  margin-top: 14px;
}

/* Texto em linha */
.entry-content a {
  color: var(--accent-blue);
  font-weight: 500;
  border-bottom: 1px solid rgba(27, 77, 177, .28);
}

.entry-content a:hover {
  border-bottom-color: var(--accent-blue);
  color: var(--accent-blue-hover);
}

.entry-content strong,
.entry-content b {
  font-weight: 600;
  color: var(--text-main);
}

.entry-content em {
  font-style: italic;
}

.entry-content mark {
  background: rgba(255, 46, 46, .14);
  color: inherit;
  padding: 2px 4px;
  border-radius: 3px;
}

.entry-content small {
  font-size: .88rem;
  color: var(--text-muted);
}

.entry-content abbr[title] {
  border-bottom: 1px dotted var(--text-muted);
  cursor: help;
  text-decoration: none;
}

.entry-content kbd {
  font-family: 'Space Grotesk', monospace;
  font-size: .84rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-bottom-width: 2px;
  border-radius: 5px;
  padding: 2px 7px;
}

.entry-content sup,
.entry-content sub {
  font-size: .74em;
}

/* Listas */
.entry-content ul,
.entry-content ol {
  padding-left: 4px;
  list-style: none;
}

.entry-content li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
}

.entry-content li:last-child {
  margin-bottom: 0;
}

.entry-content ul>li::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 13px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-red);
}

.entry-content ol {
  counter-reset: item;
}

.entry-content ol>li {
  counter-increment: item;
}

.entry-content ol>li::before {
  content: counter(item);
  position: absolute;
  left: 0;
  top: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-red);
  font-family: var(--font-heading);
  font-size: .78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.entry-content li>ul,
.entry-content li>ol {
  margin-top: 12px;
}

.entry-content li>ul>li::before {
  background: none;
  border: 2px solid var(--accent-red);
  width: 8px;
  height: 8px;
  top: 12px;
}

/* Lista de definição */
.entry-content dl {
  border-left: 2px solid var(--border);
  padding-left: 20px;
}

.entry-content dt {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-main);
  margin-top: 16px;
}

.entry-content dt:first-child {
  margin-top: 0;
}

.entry-content dd {
  margin: 4px 0 0;
  color: var(--text-muted);
}

/* Citação */
.entry-content blockquote {
  border-left: 3px solid var(--accent-red);
  padding: 4px 0 4px 26px;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -.01em;
  color: var(--text-main);
}

.entry-content blockquote p {
  margin: 0;
}

.entry-content blockquote p+p {
  margin-top: 12px;
}

.entry-content blockquote cite,
.entry-content blockquote footer {
  display: block;
  margin-top: 14px;
  font-family: var(--font-body);
  font-size: .89rem;
  font-style: normal;
  font-weight: 400;
  color: var(--text-muted);
}

.entry-content .wp-block-pullquote {
  border: none;
  border-top: 2px solid var(--border);
  border-bottom: 2px solid var(--border);
  padding: 32px 0;
  text-align: center;
}

.entry-content .wp-block-pullquote blockquote {
  border: none;
  padding: 0;
  font-size: 1.4rem;
}

/* Tabelas */
.entry-content .table-wrap,
.entry-content .wp-block-table {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: #fff;
  -webkit-overflow-scrolling: touch;
}

.entry-content table {
  width: 100%;
  border-collapse: collapse;
  font-size: .96rem;
  min-width: 480px;
}

.entry-content thead th {
  background: var(--text-main);
  color: #fff;
  font-family: var(--font-heading);
  font-size: .84rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-align: left;
  padding: 14px 18px;
  white-space: nowrap;
}

.entry-content tbody td,
.entry-content tbody th {
  padding: 14px 18px;
  border-top: 1px solid var(--border);
  vertical-align: top;
  text-align: left;
}

.entry-content tbody th {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-main);
}

.entry-content tbody tr:nth-child(even) {
  background: #fafbfc;
}

.entry-content tbody tr:hover {
  background: rgba(255, 46, 46, .03);
}

.entry-content table caption,
.entry-content .wp-block-table figcaption {
  caption-side: bottom;
  padding: 12px 18px;
  font-size: .86rem;
  color: var(--text-muted);
  text-align: left;
}

/* Imagens e legendas */
.entry-content figure,
.entry-content .wp-block-image {
  margin: 0;
}

.entry-content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--r-md);
}

.entry-content figcaption,
.entry-content .wp-caption-text {
  margin-top: 10px;
  font-size: .87rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.entry-content .alignleft {
  float: left;
  margin: 6px 28px 20px 0;
  max-width: 46%;
}

.entry-content .alignright {
  float: right;
  margin: 6px 0 20px 28px;
  max-width: 46%;
}

.entry-content .aligncenter {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.entry-content .alignwide {
  width: calc(100% + 96px);
  max-width: none;
  margin-left: -48px;
}

.entry-content .alignfull {
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  border-radius: 0;
}

.entry-content .alignfull img {
  border-radius: 0;
  width: 100%;
}

/* Galeria */
.entry-content .wp-block-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  list-style: none;
  padding: 0;
}

.entry-content .wp-block-gallery li {
  padding: 0;
  margin: 0;
}

.entry-content .wp-block-gallery li::before {
  display: none;
}

/* Código */
.entry-content code {
  font-family: 'Space Grotesk', monospace;
  font-size: .9em;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 2px 6px;
  color: #b3261e;
}

.entry-content pre {
  background: var(--bg-dark);
  color: #e6e6e6;
  border-radius: var(--r-md);
  padding: 22px 24px;
  overflow-x: auto;
  font-family: 'Space Grotesk', monospace;
  font-size: .9rem;
  line-height: 1.7;
}

.entry-content pre code {
  background: none;
  border: none;
  padding: 0;
  color: inherit;
  font-size: inherit;
}

/* Separador */
.entry-content hr,
.entry-content .wp-block-separator {
  border: none;
  height: 1px;
  background: var(--border);
  margin: 48px 0;
}

.entry-content .wp-block-separator.is-style-dots {
  background: none;
  text-align: center;
  height: auto;
}

.entry-content .wp-block-separator.is-style-dots::before {
  content: "• • •";
  color: var(--text-muted);
  letter-spacing: .6em;
}

/* Caixas de aviso */
.entry-content .callout {
  display: flex;
  gap: 16px;
  padding: 22px 24px;
  border-radius: var(--r-md);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  font-size: 1rem;
}

.entry-content .callout svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--accent-red);
  margin-top: 3px;
}

.entry-content .callout p {
  margin: 0;
}

.entry-content .callout p+p {
  margin-top: 10px;
}

.entry-content .callout strong {
  display: block;
  font-family: var(--font-heading);
  margin-bottom: 4px;
}

.entry-content .callout.info svg {
  color: var(--accent-blue);
}

.entry-content .callout.info {
  background: rgba(27, 77, 177, .05);
  border-color: rgba(27, 77, 177, .18);
}

/* Botão dentro do texto */
.entry-content .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 28px;
  border-radius: var(--r-sm);
  background: var(--accent-red);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 600;
  border: none;
}

.entry-content .wp-block-button__link:hover {
  background: var(--accent-red-hover);
  color: #fff;
}

/* Vídeo e incorporações */
.entry-content .wp-block-embed__wrapper,
.entry-content .video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--r-md);
  background: var(--bg-alt);
}

.entry-content .wp-block-embed__wrapper iframe,
.entry-content .video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Notas de rodapé */
.entry-content .footnotes {
  font-size: .9rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

/* Tags do artigo */
.entry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.entry-tags a {
  padding: 7px 14px;
  border-radius: 50px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  font-size: .84rem;
  color: var(--text-muted);
}

.entry-tags a:hover {
  border-color: var(--text-main);
  color: var(--text-main);
}

/* Caixa do autor */
.author-box {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--bg-alt);
  margin-top: 40px;
}

.author-box .avatar {
  width: 60px;
  height: 60px;
  font-size: 1.1rem;
}

.author-box h2 {
  font-size: 1.08rem;
  margin-bottom: 6px;
}

/* Componentes dentro do artigo não herdam o respiro dos títulos de seção */
.entry-content .author-box h2,
.entry-content .callout h2,
.entry-content .aside-box h2,
.entry-content figure h2,
.entry-content .post-nav strong {
  margin-top: 0;
}

.author-box p {
  color: var(--text-muted);
  font-size: .94rem;
  margin: 0;
}

/* Navegação entre artigos */
.post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.post-nav a {
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 22px 24px;
  background: #fff;
  transition: .22s;
}

.post-nav a:hover {
  border-color: var(--accent-red);
  transform: translateY(-3px);
}

.post-nav span {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-heading);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent-red);
  margin-bottom: 10px;
}

.post-nav svg {
  width: 14px;
  height: 14px;
}

.post-nav strong {
  font-family: var(--font-heading);
  font-size: 1rem;
  line-height: 1.35;
  color: var(--text-main);
}

.post-nav .next {
  text-align: right;
}

.post-nav .next span {
  justify-content: flex-end;
}

@media (max-width: 1024px) {
  .article-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .article-aside {
    position: static;
    order: 2;
  }

  .entry-content {
    max-width: none;
  }

  .entry-content .alignwide {
    width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 620px) {
  .entry-content {
    font-size: 1.04rem;
  }

  .entry-content h2 {
    font-size: 1.4rem;
    margin-top: 44px;
  }

  .entry-content h3 {
    font-size: 1.15rem;
  }

  .entry-content .alignleft,
  .entry-content .alignright {
    float: none;
    max-width: 100%;
    margin: 0;
  }

  .entry-content blockquote {
    font-size: 1.08rem;
    padding-left: 20px;
  }

  .article-featured figure {
    margin-top: -20px;
  }

  .post-nav {
    grid-template-columns: 1fr;
  }

  .post-nav .next {
    text-align: left;
  }

  .post-nav .next span {
    justify-content: flex-start;
  }

  .author-box {
    flex-direction: column;
    padding: 24px 22px;
  }
}

/* ============================================================
   FOTOS REAIS NO CONTEÚDO
   ============================================================ */
.prose-figure,
.foto-bloco {
  margin: 32px 0;
  border-radius: var(--r-md);
  overflow: hidden;
}

.foto-bloco {
  margin: 0;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.prose-figure picture,
.foto-bloco picture {
  display: block;
}

.prose-figure img,
.foto-bloco img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--r-md);
  background: var(--bg-alt);
}

.foto-bloco img {
  border-radius: 0;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.prose-figure figcaption {
  font-size: .86rem;
  color: var(--text-muted);
  margin-top: 12px;
  text-align: center;
  line-height: 1.5;
  padding: 0 8px;
}

.band-dark .prose-figure figcaption {
  color: var(--text-light-muted);
}

.band-dark .prose-figure img,
.band-dark .foto-bloco img {
  background: var(--bg-dark-card);
}

/* ============================================================
   MODAL "QUERO CONTRATAR"
   ============================================================ */
body.no-scroll {
  overflow: hidden;
}

.hire-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 32px 16px;
  overflow-y: auto;
}

.hire-modal.is-open {
  display: flex;
}

.hire-modal__overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, .65);
  backdrop-filter: blur(3px);
  opacity: 0;
  animation: hireFadeIn .18s ease forwards;
}

.hire-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(500px, 100%);
  margin: auto;
  background: #fff;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-hover);
  padding: 32px 30px 30px;
  opacity: 0;
  transform: translateY(16px) scale(.98);
  animation: hireSlideIn .22s ease forwards;
}

@keyframes hireFadeIn {
  to { opacity: 1; }
}

@keyframes hireSlideIn {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .hire-modal__overlay,
  .hire-modal__dialog,
  .hire-msg {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

.hire-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-muted);
  z-index: 2;
}

.hire-modal__close:hover {
  background: #eceef1;
  color: var(--text-main);
}

.hire-modal__close svg {
  width: 18px;
  height: 18px;
}

.hire-modal__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: .87rem;
  padding: 0;
  margin-bottom: 18px;
}

.hire-modal__back:hover {
  color: var(--text-main);
}

.hire-modal__back svg {
  width: 15px;
  height: 15px;
}

/* Cabeçalho estilo contato de chat */
.hire-modal__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 30px 18px 0;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}

.hire-avatar {
  flex: none;
  width: 44px;
  height: 44px;
}

.hire-modal__header strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.02rem;
  color: var(--text-main);
}

.hire-modal__header .hire-status {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .78rem;
  color: var(--text-muted);
}

.hire-modal__header .hire-status .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  flex: none;
}

/* Fio de conversa */
.hire-chat {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hire-msg {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .35s ease, transform .35s ease;
}

.hire-msg.is-visible {
  opacity: 1;
  transform: none;
}

.hire-msg__bubble {
  background: var(--bg-alt);
  border-radius: 16px 16px 16px 4px;
  padding: 12px 16px;
  font-size: .92rem;
  line-height: 1.55;
  color: var(--text-main);
  max-width: 92%;
}

.hire-msg__bubble strong {
  color: var(--text-main);
}

.hire-msg__bubble--offer {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  max-width: 92%;
  background: linear-gradient(135deg, rgba(27, 77, 177, .1), rgba(255, 46, 46, .06));
  border: 1.5px solid var(--accent-blue);
  border-radius: 16px 16px 16px 4px;
}

.hire-msg__bubble--offer svg {
  flex: none;
  width: 19px;
  height: 19px;
  color: var(--accent-blue);
  margin-top: 2px;
}

.hire-msg--actions {
  margin-top: 8px;
}

.hire-modal__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.hire-modal__actions .btn {
  min-height: 56px;
  padding: 13px 20px;
  box-sizing: border-box;
  width: 100%;
  line-height: 1.3;
  text-align: center;
}

.hire-modal__actions .btn .btn-sub {
  display: block;
  font-weight: 500;
  font-size: .72rem;
  opacity: .82;
}

.hire-modal__view[data-view="reuniao"] .hire-chat {
  margin-bottom: 20px;
}

.hire-modal__view[data-view="confirmacao"] .hire-chat {
  padding-top: 4px;
}

@media (max-width: 560px) {
  .hire-modal__dialog {
    padding: 26px 20px 24px;
    border-radius: var(--r-md);
  }

  .hire-modal__header {
    margin-right: 26px;
  }
}

/* ============================================================
   ONBOARDING (formulário em etapas)
   ============================================================ */
.onb-body {
  background: var(--bg-alt);
  min-height: 100vh;
}

.onb-topbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: #fff;
}

.onb-topbar__row {
  height: calc(var(--header-height) - 3px);
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 24px;
}

.onb-logo {
  flex: none;
}

.onb-logo img {
  height: 26px;
  width: auto;
}

.onb-title {
  flex: 1;
  text-align: center;
  font-family: var(--font-heading);
  font-size: .92rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: .01em;
}

/* Barra de progresso discreta: ocupa a linha separadora do topo em vez de
   uma barra grossa e chamativa. Anda rápido no início e desacelera perto
   do fim (ver easing no JS), para não dar a sensação de "faltam muitos
   passos". */
.onb-progress {
  height: 3px;
  background: var(--border);
  overflow: hidden;
}

.onb-progress__fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent-red), var(--accent-blue));
  transition: width .4s ease;
}

.onb-exit {
  flex: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-alt);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.onb-exit:hover {
  background: #eceef1;
  color: var(--text-main);
}

.onb-exit svg {
  width: 17px;
  height: 17px;
}

.onb-main {
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding: calc(var(--header-height) + 40px) 20px calc(88px + 40px);
}

.onb-stage {
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
  position: relative;
}

.onb-step {
  display: none;
}

.onb-step.is-active {
  display: block;
  animation: onbStepIn .4s ease;
}

@keyframes onbStepIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .onb-step.is-active {
    animation: none;
  }
}

.onb-kicker {
  display: block;
  font-family: var(--font-heading);
  font-size: .8rem;
  font-weight: 600;
  color: var(--accent-blue);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 14px;
}

.onb-step h1 {
  font-size: clamp(1.5rem, 4vw, 2.05rem);
  line-height: 1.25;
  margin: 0 0 10px;
}

.onb-hint {
  color: var(--text-muted);
  font-size: .96rem;
  line-height: 1.55;
  margin: 0 0 28px;
}

.onb-input {
  width: 100%;
  padding: 16px 18px;
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-main);
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--r-sm);
  transition: border-color .18s ease;
  box-sizing: border-box;
}

.onb-input:focus {
  outline: none;
  border-color: var(--accent-red);
}

.onb-input--invalid {
  border-color: var(--accent-red) !important;
  background: rgba(255, 46, 46, .04);
}

.onb-input--sm {
  padding: 12px 16px;
  font-size: .94rem;
}

.onb-input--reveal {
  margin-top: 14px;
}

.onb-textarea {
  min-height: 150px;
  resize: vertical;
  line-height: 1.5;
}

.onb-error {
  display: none;
  color: var(--accent-red);
  font-size: .85rem;
  margin-top: 12px;
}

.onb-submit-error.is-visible {
  display: block;
  margin: 16px 0 0;
  padding: 12px 14px;
  border: 1px solid rgba(255, 46, 46, .25);
  border-radius: var(--r-sm);
  background: rgba(255, 46, 46, .06);
}

/* Linhas de campo reutilizáveis (usadas em cadastro e endereço) */
.onb-field-row {
  margin-bottom: 16px;
}

.onb-field-row:last-child {
  margin-bottom: 0;
}

.onb-field-row label {
  display: block;
  font-family: var(--font-heading);
  font-size: .8rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.onb-field-row--sm {
  max-width: 220px;
}

.onb-grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 16px;
}

.onb-grid2 .onb-field-row {
  margin-bottom: 0;
}

.onb-cond[hidden] {
  display: none;
}

/* Campo com prefixo (redes sociais) */
.onb-input-prefix {
  display: flex;
  align-items: stretch;
  border: 2px solid var(--border);
  border-radius: var(--r-sm);
  overflow: hidden;
  transition: border-color .18s ease;
}

.onb-input-prefix:focus-within {
  border-color: var(--accent-red);
}

.onb-input-prefix span {
  flex: none;
  display: flex;
  align-items: center;
  padding: 0 12px;
  background: var(--bg-alt);
  color: var(--text-muted);
  font-size: .84rem;
  border-right: 1px solid var(--border);
  white-space: nowrap;
}

.onb-input-prefix input {
  flex: 1;
  min-width: 0;
  border: none;
  padding: 14px 14px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-main);
  background: #fff;
}

.onb-input-prefix input:focus {
  outline: none;
}

/* Editor de tags (serviços principais) */
.onb-tageditor {
  display: flex;
  gap: 10px;
}

.onb-tageditor .onb-input {
  flex: 1;
}

.onb-tageditor__add {
  flex: none;
  width: 52px;
  border: 2px solid var(--accent-red);
  border-radius: var(--r-sm);
  background: var(--accent-red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: .15s ease;
}

.onb-tageditor__add:hover {
  background: var(--accent-red-hover);
  border-color: var(--accent-red-hover);
}

.onb-tageditor__add svg {
  width: 20px;
  height: 20px;
}

.onb-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.onb-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 8px 8px 14px;
  border-radius: 999px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  font-size: .86rem;
  color: var(--text-main);
}

.onb-tag button {
  flex: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, .06);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.onb-tag button:hover {
  background: var(--accent-red);
  color: #fff;
}

.onb-tag button svg {
  width: 12px;
  height: 12px;
}

.onb-step.has-error .onb-input,
.onb-step.has-error .onb-chips {
  border-color: var(--accent-red);
}

.onb-step.has-error .onb-chips {
  border: 2px solid var(--accent-red);
  border-radius: var(--r-md);
  padding: 6px;
}

.onb-step.has-error .onb-error {
  display: block;
}

.onb-chips {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px;
}

.onb-chip {
  text-align: left;
  padding: 14px 16px;
  border: 2px solid var(--border);
  border-radius: var(--r-sm);
  background: #fff;
  font-family: var(--font-body);
  font-size: .92rem;
  color: var(--text-main);
  cursor: pointer;
  transition: .15s ease;
}

.onb-chip:hover {
  border-color: var(--accent-blue);
}

.onb-chip.is-selected {
  border-color: var(--accent-red);
  background: rgba(255, 46, 46, .06);
  font-weight: 600;
}

.onb-chips--2col {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.onb-chips--2col .onb-chip {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 18px;
  font-family: var(--font-heading);
  font-size: .98rem;
  font-weight: 600;
}

.onb-chips--payment {
  grid-template-columns: repeat(3, 1fr);
}

.onb-chips--payment .onb-chip {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 88px;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: .98rem;
  font-weight: 600;
}

.onb-chip__sub {
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 400;
  color: var(--text-muted);
}

.onb-chip.is-selected .onb-chip__sub {
  color: var(--text-main);
}

.onb-drop {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 2px dashed var(--border);
  border-radius: var(--r-md);
  padding: 36px 20px;
  text-align: center;
  color: var(--text-muted);
  cursor: pointer;
  transition: .15s ease;
}

.onb-drop:hover,
.onb-drop:focus-visible {
  border-color: var(--accent-blue);
  color: var(--text-main);
}

.onb-drop i {
  width: 26px;
  height: 26px;
  color: var(--accent-blue);
}

.onb-drop strong {
  font-family: var(--font-heading);
  font-size: .95rem;
  color: var(--text-main);
}

.onb-drop span {
  font-size: .8rem;
}

.onb-files {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 14px;
}

.onb-file {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  background: #fff;
  font-size: .85rem;
}

.onb-file svg {
  width: 16px;
  height: 16px;
  color: var(--accent-blue);
  flex: none;
}

.onb-file__name {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.onb-file__size {
  color: var(--text-muted);
  font-size: .78rem;
  flex: none;
}

.onb-file__remove {
  flex: none;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  padding: 2px;
}

.onb-file__remove:hover {
  color: var(--accent-red);
}

.onb-file__remove svg {
  width: 15px;
  height: 15px;
  color: inherit;
}

.onb-subfield {
  margin-top: 26px;
}

.onb-subfield label {
  display: block;
  font-family: var(--font-heading);
  font-size: .82rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.onb-summary {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 6px;
}

.onb-summary__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  background: #fff;
}

.onb-summary__label {
  display: block;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--text-muted);
  margin-bottom: 3px;
}

.onb-summary__value {
  display: block;
  font-size: .93rem;
  color: var(--text-main);
  word-break: break-word;
}

.onb-summary__edit {
  flex: none;
  background: none;
  border: none;
  color: var(--accent-blue);
  font-family: var(--font-heading);
  font-size: .82rem;
  font-weight: 600;
  cursor: pointer;
}

.onb-summary__edit:hover {
  text-decoration: underline;
}

.onb-next-steps {
  margin-top: 22px;
  padding: 18px 20px;
  border: 1px solid rgba(27, 77, 177, .22);
  border-radius: var(--r-md);
  background: rgba(27, 77, 177, .05);
}

.onb-next-steps strong {
  display: block;
  font-family: var(--font-heading);
  font-size: .92rem;
  color: var(--text-main);
  margin-bottom: 8px;
}

.onb-next-steps p {
  margin: 0;
  font-size: .88rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.onb-selected-plan {
  margin-top: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(27, 77, 177, .08);
  color: var(--accent-blue);
  font-family: var(--font-heading);
  font-size: .82rem;
  font-weight: 600;
  text-align: center;
}

.onb-payment-methods {
  margin-top: 22px;
}

.onb-payment-methods > .onb-hint {
  margin-bottom: 12px;
  font-family: var(--font-heading);
  font-size: .95rem;
  color: var(--text-main);
}

.onb-payment-methods .onb-error {
  margin-bottom: 0;
}

.onb-actionbar {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 90;
  padding: 16px 24px;
  background: #fff;
  border-top: 1px solid var(--border);
}

.onb-actionbar__inner {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  gap: 12px;
}

.onb-actionbar .onb-back,
.onb-actionbar .onb-next {
  flex: 0 0 220px;
}

.onb-next--pay {
  flex-direction: column;
  line-height: 1.3;
  min-height: 52px;
}

.onb-next__label {
  display: block;
}

.onb-next--pay .btn-sub {
  display: block;
  font-weight: 500;
  font-size: .74rem;
  opacity: .85;
}

.confirmation-hero {
  padding-bottom: 48px;
}

.confirmation-hero .container {
  max-width: 840px;
}

.confirmation-card {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: #fff;
  box-shadow: var(--shadow);
  text-align: center;
}

.confirmation-card__icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(27, 77, 177, .1);
  color: var(--accent-blue);
}

.confirmation-card__icon svg {
  width: 28px;
  height: 28px;
}

.confirmation-card h2 {
  margin: 0 0 22px;
}

.confirmation-card .checklist {
  max-width: 620px;
  margin: 0 auto;
  text-align: left;
}

.confirmation-card__note {
  margin: 26px auto 0;
  max-width: 620px;
  color: var(--text-muted);
  font-size: .92rem;
  line-height: 1.6;
}

.confirmation-card .cta-group {
  margin-top: 30px;
}

@media (max-width: 620px) {
  .confirmation-card {
    padding: 28px 20px;
  }
}

@media (max-width: 620px) {
  .onb-topbar__row {
    padding: 0 16px;
    gap: 10px;
  }

  .onb-title {
    font-size: .82rem;
  }

  .onb-main {
    padding: calc(var(--header-height) + 28px) 18px calc(96px + 24px);
  }

  .onb-chips {
    grid-template-columns: 1fr;
  }

  .onb-chips--payment {
    grid-template-columns: 1fr;
  }

  .onb-actionbar {
    padding: 14px 16px;
  }

  .onb-actionbar__inner {
    justify-content: stretch;
  }

  .onb-actionbar .onb-back,
  .onb-actionbar .onb-next {
    flex: 1 1 0;
    min-width: 0;
  }
}

/* ============================================================
   WORDPRESS: paginação, acessibilidade, comentários e alinhamentos
   ============================================================ */
.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 2000;
  width: auto;
  height: auto;
  clip: auto;
  margin: 0;
  padding: 12px 20px;
  border-radius: var(--r-sm);
  background: var(--accent-red);
  color: #fff;
  font-weight: 600;
}

.zimo-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}

.zimo-pagination .page-numbers {
  display: grid;
  place-items: center;
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  background: #fff;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: .92rem;
  color: var(--text-main);
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.zimo-pagination .page-numbers:hover {
  border-color: var(--accent-red);
  color: var(--accent-red);
}

.zimo-pagination .page-numbers.current {
  background: var(--accent-red);
  border-color: var(--accent-red);
  color: #fff;
}

.zimo-pagination .page-numbers.dots {
  border-color: transparent;
  background: transparent;
}

.zimo-pagination svg {
  width: 17px;
  height: 17px;
}

/* Comentários */
.zimo-comments {
  margin-top: 8px;
}

.zimo-comments .comments-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 24px;
}

.zimo-comments .comment-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.zimo-comments .comment-list ol.children {
  list-style: none;
  margin: 20px 0 0 26px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.zimo-comments .comment-body {
  padding: 22px 24px;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: #fff;
}

.zimo-comments .comment-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: .88rem;
}

.zimo-comments .comment-author img {
  border-radius: 50%;
}

.zimo-comments .comment-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.zimo-comments .comment-form input[type="text"],
.zimo-comments .comment-form input[type="email"],
.zimo-comments .comment-form input[type="url"],
.zimo-comments .comment-form textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-size: .95rem;
  background: #fff;
}

.zimo-comments .comment-form textarea {
  min-height: 140px;
  resize: vertical;
}

/* Alinhamentos do editor do WordPress */
.entry-content .alignleft {
  float: left;
  margin: 6px 24px 18px 0;
}

.entry-content .alignright {
  float: right;
  margin: 6px 0 18px 24px;
}

.entry-content .aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.entry-content .wp-caption {
  max-width: 100%;
}

.entry-content .wp-caption-text,
.entry-content figcaption {
  font-size: .86rem;
  color: var(--text-muted);
  margin-top: 8px;
}

.entry-content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--r-md);
}

.entry-content .wp-block-embed iframe {
  max-width: 100%;
}

.article-featured img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--r-lg);
}

.post-featured img,
.post-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
