/* =============================================
   POWER MEI — components.css
   Header, footer, botões, hero, cards, FAQ, formulário e seções
   Agência PHN · v1.0.0
============================================= */

/* =============================================
   BOTÕES
============================================= */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal);
  color: var(--dark);
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-primary:hover {
  background: var(--teal-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(99,220,226,0.35);
}
.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 14px;
  padding: 13px 26px;
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: var(--radius-sm);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-2px);
}

.btn-wpp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 14px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-wpp:hover {
  background: #1ebb59;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.35);
}

/* =============================================
   HEADER / NAV
============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13,21,46,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo img {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: block;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo-name {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--white);
  letter-spacing: -0.01em;
}
.nav-logo-power { color: var(--teal); }
.nav-logo-sub {
  font-family: var(--ff-display);
  font-size: 8px;
  font-weight: 400;
  color: var(--gray-mid);
  letter-spacing: 3px;
  margin-top: 3px;
  text-transform: uppercase;
}
/* Footer: aceita variante para tema dark */
.nav-logo-footer .nav-logo-sub { color: rgba(255,255,255,0.4); }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-menu a {
  font-family: var(--ff-display);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.nav-menu a:hover,
.nav-menu a[aria-current="page"] {
  color: var(--white);
  background: rgba(255,255,255,0.07);
}
.nav-cta {
  font-family: var(--ff-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--dark) !important;
  background: var(--teal) !important;
  padding: 9px 20px !important;
  border-radius: var(--radius-sm) !important;
}
.nav-cta:hover {
  background: var(--teal-light) !important;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =============================================
   NAV SUBMENU — dropdown (desktop) + acordeão (mobile)
============================================= */
.nav-menu > li.has-submenu {
  position: relative;
}
.nav-menu > li.has-submenu > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-chevron {
  transition: transform var(--transition);
  flex-shrink: 0;
  opacity: 0.7;
}
.has-submenu.open > a .nav-chevron {
  transform: rotate(180deg);
  opacity: 1;
}

/* Dropdown padrão (Serviços) */
.nav-submenu {
  list-style: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 260px;
  background: var(--dark-card);
  border: 1px solid rgba(99,220,226,0.18);
  border-radius: var(--radius-md);
  padding: 8px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  z-index: 200;
  margin: 0;
}
.has-submenu.open > .nav-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-submenu li { margin: 0; }
.nav-submenu a {
  display: block !important;
  padding: 10px 14px !important;
  border-radius: var(--radius-sm) !important;
  font-family: var(--ff-display);
  font-size: 13px !important;
  font-weight: 500;
  color: rgba(255,255,255,0.78) !important;
  background: transparent !important;
  white-space: nowrap;
}
.nav-submenu a:hover,
.nav-submenu a:focus {
  background: rgba(99,220,226,0.08) !important;
  color: var(--teal) !important;
}
.nav-submenu .submenu-hub {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 4px;
  padding-bottom: 4px;
}
.nav-submenu .submenu-hub a {
  font-weight: 700 !important;
  color: var(--teal) !important;
  font-size: 12px !important;
  letter-spacing: 0.04em;
}
.nav-submenu .submenu-hub a:hover {
  background: rgba(99,220,226,0.12) !important;
}

/* MOBILE: nav abre como acordeão */
@media (max-width: 768px) {
  .nav-menu.open .has-submenu {
    display: block;
    width: 100%;
  }
  .nav-menu.open .has-submenu > a {
    width: 100%;
    justify-content: space-between;
  }
  .nav-menu.open .nav-submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    min-width: 0;
    width: 100%;
    box-shadow: none;
    border: none;
    background: rgba(0,0,0,0.18);
    border-radius: var(--radius-sm);
    margin: 4px 0 6px 12px;
    padding: 6px;
    display: none;
  }
  .nav-menu.open .has-submenu.open > .nav-submenu {
    display: block;
  }
  .nav-menu.open .nav-submenu a {
    white-space: normal;
  }
}

/* =============================================
   HERO (HOME)
============================================= */
.hero {
  background-color: var(--dark);
  background-image:
    linear-gradient(110deg,
      rgba(13, 21, 46, 0.96) 0%,
      rgba(13, 21, 46, 0.92) 35%,
      rgba(22, 32, 64, 0.78) 60%,
      rgba(26, 40, 71, 0.55) 85%,
      rgba(84, 171, 225, 0.18) 100%
    ),
    url('/assets/images/powermei-parceria.png');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  padding: 90px 0 80px;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 560px;
  height: 560px;
  border: 1.5px solid rgba(99,220,226,0.12);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  top: -40px;
  right: 60px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(84,171,225,0.1);
  border-radius: 50%;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(99,220,226,0.1);
  border: 1px solid rgba(99,220,226,0.3);
  color: var(--teal);
  font-family: var(--ff-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero-badge svg { flex-shrink: 0; }
.hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(34px, 4.5vw, 54px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.hero h1 span { color: var(--teal); }
.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 44px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-trust-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-trust-num {
  font-family: var(--ff-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
}
.hero-trust-label {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  font-weight: 400;
}
.hero-trust-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.12);
}

/* Hero card lateral */
.hero-card {
  background: var(--dark-card);
  border: 1px solid rgba(84,171,225,0.2);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  z-index: 1;
}
.hero-card-title {
  font-family: var(--ff-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.hero-card-sub {
  font-size: 13px;
  color: var(--gray-mid2);
  margin-bottom: 28px;
}
.hero-card-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}
.hero-card-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.hero-card-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: rgba(99,220,226,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.hero-card-icon svg { color: var(--teal); }
.hero-card-text {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}
.hero-card-text strong {
  color: var(--white);
  font-weight: 600;
}
.hero-card .btn-wpp {
  width: 100%;
  justify-content: center;
}
.hero-card-footer {
  margin-top: 14px;
  text-align: center;
  font-size: 12px;
  color: var(--gray-mid2);
}

/* =============================================
   HERO INTERNO (páginas internas — compacto)
============================================= */
.hero-inner {
  padding: 60px 0 52px;
}
.hero-inner::before,
.hero-inner::after {
  width: 360px;
  height: 360px;
}
.hero-inner-content {
  max-width: 960px;
  position: relative;
  z-index: 1;
}
.hero-inner h1 {
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.18;
}
.hero-inner .hero-sub {
  max-width: 760px;
}

/* Seção "De onde veio" da Sobre — 2 colunas: texto + imagem redonda com logo backdrop */
.s-historia {
  background: var(--gray-light);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.historia-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
}
.historia-text h2 {
  font-family: var(--ff-display);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 12px 0 20px;
}
.historia-text p {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 16px;
}
.historia-text p:last-child { margin-bottom: 0; }
.historia-text strong { color: var(--dark); font-weight: 700; }
.historia-text a {
  color: var(--teal-dark);
  font-weight: 600;
  border-bottom: 1px solid rgba(61,188,194,0.3);
  transition: border-color var(--transition);
}
.historia-text a:hover { border-color: var(--teal-dark); }

.historia-image {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.historia-image-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.4);
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.07;
  filter: blur(1px);
  z-index: 0;
  pointer-events: none;
}
.historia-image-circle {
  position: relative;
  width: 86%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 0 8px rgba(99, 220, 226, 0.08), 0 0 0 16px rgba(99, 220, 226, 0.04);
  z-index: 1;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-card) 100%);
}
.historia-image-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
@media (max-width: 1024px) {
  .historia-grid { grid-template-columns: 1fr; gap: 40px; }
  .historia-image { max-width: 320px; }
}

/* Seção "O que você encontra" da Sobre — 2 colunas: imagem redonda (esquerda) + texto dark (direita) */
.s-encontra {
  background: var(--dark);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.s-encontra-deco {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(99,220,226,0.08);
  border-radius: 50%;
  pointer-events: none;
}
.encontra-grid {
  display: grid;
  grid-template-columns: 500px 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Coluna esquerda: imagem redonda + logo bem clarinha ao fundo */
.encontra-image {
  position: relative;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.encontra-image-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.5);
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.05;             /* bem clarinha */
  filter: blur(1px) brightness(1.4);
  z-index: 0;
  pointer-events: none;
}
.encontra-image-circle {
  position: relative;
  width: 92%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 0 10px rgba(99, 220, 226, 0.10), 0 0 0 20px rgba(99, 220, 226, 0.05);
  z-index: 1;
  background: linear-gradient(135deg, var(--dark-card) 0%, var(--dark-mid) 100%);
}
.encontra-image-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Coluna direita: conteúdo em tema dark */
.encontra-content h2 {
  font-family: var(--ff-display);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 12px 0 20px;
}
.encontra-content p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.75;
  margin-bottom: 16px;
}
.encontra-content p:last-child { margin-bottom: 0; }
.encontra-content a {
  color: var(--teal);
  border-bottom: 1px solid rgba(99, 220, 226, 0.4);
  transition: border-color var(--transition);
}
.encontra-content a:hover { border-bottom-color: var(--teal); }

@media (max-width: 1024px) {
  .encontra-grid { grid-template-columns: 1fr; gap: 40px; }
  .encontra-image { max-width: 320px; order: 2; }
  .encontra-content { order: 1; }
}

/* ============================================================
   LAYOUTS DE PÁGINAS DE ESPECIALIDADE (geo + profissão)
   4 blocos com visual distinto, ritmo white→gray→dark→gray
============================================================ */
.s-geo-block {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.s-geo-block.bg-white { background: var(--white); }
.s-geo-block.bg-gray  { background: var(--gray-light); }
.s-geo-block.bg-dark  { background: var(--dark); }

.s-geo-grid {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.s-geo-grid.reverse {
  grid-template-columns: 460px 1fr;
}

.s-geo-image {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.s-geo-image-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.5);
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.07;
  filter: blur(1px);
  z-index: 0;
  pointer-events: none;
}
.s-geo-block.bg-dark .s-geo-image-bg {
  opacity: 0.06;
  filter: blur(1px) brightness(1.5);
}
.s-geo-image-circle {
  position: relative;
  width: 88%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 0 8px rgba(99,220,226,0.08), 0 0 0 16px rgba(99,220,226,0.04);
  z-index: 1;
  background: linear-gradient(135deg, var(--dark-card) 0%, var(--dark-mid) 100%);
}
.s-geo-image-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.s-geo-text > .section-label {
  display: inline-flex;
}
.s-geo-text h2 {
  font-family: var(--ff-display);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 12px 0 20px;
}
.s-geo-block.bg-dark .s-geo-text h2 { color: var(--white); }
.s-geo-block.bg-dark .s-geo-text .section-label { color: var(--teal); }
.s-geo-text p {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 16px;
}
.s-geo-text p:last-child { margin-bottom: 0; }
.s-geo-block.bg-dark .s-geo-text p { color: rgba(255,255,255,0.75); }
.s-geo-text strong { color: var(--dark); font-weight: 700; }
.s-geo-block.bg-dark .s-geo-text strong { color: var(--white); }
.s-geo-text a {
  color: var(--teal-dark);
  font-weight: 600;
  border-bottom: 1px solid rgba(61,188,194,0.3);
  transition: border-color var(--transition);
}
.s-geo-text a:hover { border-color: var(--teal-dark); }
.s-geo-block.bg-dark .s-geo-text a {
  color: var(--teal);
  border-bottom-color: rgba(99,220,226,0.4);
}

/* Bloco 4 — narrative com logo gigante decorativa no canto */
.s-geo-narrative-feat {
  background: var(--gray-light);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.s-geo-narrative-feat::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -180px;
  transform: translateY(-50%);
  width: 540px;
  height: 540px;
  background-image: url('/assets/images/logo-power-mei.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.07;
  filter: blur(1px);
  pointer-events: none;
  z-index: 0;
  animation: geo-logo-spin 80s linear infinite;
}
@keyframes geo-logo-spin {
  from { transform: translateY(-50%) rotate(0deg); }
  to   { transform: translateY(-50%) rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .s-geo-narrative-feat::before { animation: none; }
}
.s-geo-narrative-feat .container {
  position: relative;
  z-index: 1;
}
.s-geo-narrative-feat .s-geo-text {
  max-width: 720px;
}

@media (max-width: 1024px) {
  .s-geo-grid,
  .s-geo-grid.reverse { grid-template-columns: 1fr; gap: 40px; }
  .s-geo-image { max-width: 340px; }
  .s-geo-narrative-feat::before {
    width: 360px;
    height: 360px;
    right: -140px;
    opacity: 0.05;
  }
}

/* ============================================================
   Bloco 2 — cards horizontais editoriais (left lead + right cards)
============================================================ */
.s-geo-cards {
  background: var(--gray-light);
  padding: 88px 0;
  position: relative;
}
.s-geo-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
  align-items: start;
}
.s-geo-cards-lead {
  position: sticky;
  top: 96px;
}
.s-geo-cards-lead .section-label { display: inline-flex; }
.s-geo-cards-lead h2 {
  font-family: var(--ff-display);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 12px 0 18px;
}
.s-geo-cards-lead p {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--text-body);
  margin: 0;
}
.s-geo-cards-subhead {
  font-family: var(--ff-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--teal-dark);
  margin: 0 0 14px;
  line-height: 1.4;
  letter-spacing: 0;
  padding-top: 14px;
  border-top: 2px solid var(--teal);
  display: inline-block;
}
.s-geo-cards-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.s-geo-card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: 12px;
  padding: 26px 28px 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(15,23,42,0.03);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.s-geo-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 3px;
  background: var(--teal);
  opacity: 0.7;
}
.s-geo-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(15,23,42,0.07);
  border-color: rgba(99,220,226,0.6);
}
.s-geo-card:hover::before { opacity: 1; }
.s-geo-card-num {
  font-family: var(--ff-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-dark);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.s-geo-card-num::after {
  content: '';
  width: 22px;
  height: 1.5px;
  background: var(--teal);
}
.s-geo-card-body h3 {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 8px;
  line-height: 1.35;
  letter-spacing: -0.01em;
}
.s-geo-card-body p {
  font-size: 0.93rem;
  line-height: 1.7;
  color: var(--text-body);
  margin: 0;
}
.s-geo-card-body p + p { margin-top: 10px; }
.s-geo-card-body a {
  color: var(--teal-dark);
  font-weight: 600;
  border-bottom: 1px solid rgba(61,188,194,0.3);
}
.s-geo-card-body strong { color: var(--dark); font-weight: 700; }

/* Bloco 2 — callout (chamada teal abaixo dos cards) */
.s-geo-callout {
  background: linear-gradient(135deg, rgba(99,220,226,0.14), rgba(99,220,226,0.04));
  border: 1px solid rgba(99,220,226,0.32);
  border-radius: 12px;
  padding: 22px 26px;
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 18px;
  align-items: start;
  margin-top: 6px;
  position: relative;
  overflow: hidden;
}
.s-geo-callout-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  box-shadow: 0 0 0 4px rgba(99,220,226,0.18);
}
.s-geo-callout p {
  font-family: var(--ff-display);
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1.55;
  color: var(--dark);
  margin: 0;
  letter-spacing: -0.005em;
}
.s-geo-callout a {
  color: var(--teal-dark);
  font-weight: 700;
  border-bottom: 1px solid rgba(61,188,194,0.4);
}

/* Bloco 2 — referência discreta abaixo do callout (citações de fonte) */
.s-geo-cards-ref {
  font-size: 0.78rem;
  line-height: 1.6;
  color: var(--text-muted);
  font-style: italic;
  margin: 4px 0 0;
  padding: 0 8px;
}
.s-geo-cards-ref a {
  color: var(--teal-dark);
  font-weight: 600;
  border-bottom: 1px solid rgba(61,188,194,0.25);
  font-style: normal;
}

/* ============================================================
   Bloco 3 — point list (dark) com check icons
============================================================ */
.s-geo-points {
  background: var(--dark);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
  color: var(--white);
}
.s-geo-points::before {
  content: '';
  position: absolute;
  top: -160px;
  right: -200px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(99,220,226,0.08);
  border-radius: 50%;
  pointer-events: none;
}
.s-geo-points::after {
  content: '';
  position: absolute;
  bottom: -120px;
  left: -160px;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(99,220,226,0.06);
  border-radius: 50%;
  pointer-events: none;
}
.s-geo-points .container { position: relative; z-index: 1; }
.s-geo-points .section-header {
  max-width: 740px;
  margin: 0 auto 48px;
  text-align: center;
}
.s-geo-points .section-header .section-label {
  color: var(--teal);
  justify-content: center;
}
.s-geo-points .section-header h2 {
  font-family: var(--ff-display);
  font-size: clamp(26px, 2.8vw, 36px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.18;
  margin: 12px 0 0;
}
.s-geo-points-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px 40px;
}
.s-geo-point {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 18px;
  align-items: start;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.s-geo-point:nth-child(-n+2) { border-top: 0; padding-top: 4px; }
.s-geo-point-check {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(99,220,226,0.10);
}
.s-geo-point-text {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
}
.s-geo-point-text strong {
  color: var(--white);
  font-weight: 700;
}
.s-geo-point-text a {
  color: var(--teal);
  border-bottom: 1px solid rgba(99,220,226,0.4);
}

@media (max-width: 960px) {
  .s-geo-cards-grid { grid-template-columns: 1fr; gap: 32px; }
  .s-geo-cards-lead { position: static; }
  .s-geo-points-list { grid-template-columns: 1fr; gap: 0; }
  .s-geo-point:nth-child(2) { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px; }
}

/* ============================================================
   .s-ganha — Bloco "O que você ganha" (serviços): 2 col + gradient + logo blur
============================================================ */
.s-ganha {
  background: var(--dark);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
/* Gradiente de luz central */
.s-ganha::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1100px;
  height: 620px;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center, rgba(99,220,226,0.16) 0%, rgba(99,220,226,0.05) 35%, transparent 72%);
  pointer-events: none;
  z-index: 0;
}
/* Logo gigante transparente no canto, com blur */
.s-ganha::after {
  content: '';
  position: absolute;
  bottom: -160px;
  right: -160px;
  width: 580px;
  height: 580px;
  background-image: url('/assets/images/logo-power-mei.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.06;
  filter: blur(2.5px);
  pointer-events: none;
  z-index: 0;
}
.s-ganha .container {
  position: relative;
  z-index: 1;
}
.s-ganha-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 64px;
  align-items: center;
}
.s-ganha-image {
  width: 380px;
  height: 380px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 0 8px rgba(99,220,226,0.10), 0 0 0 16px rgba(99,220,226,0.04);
  position: relative;
  background: linear-gradient(135deg, var(--dark-card) 0%, var(--dark-mid) 100%);
}
.s-ganha-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.s-ganha-text .section-label {
  color: var(--teal);
  display: inline-flex;
}
.s-ganha-text h2 {
  font-family: var(--ff-display);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 12px 0 20px;
}
.s-ganha-text p {
  font-size: 16px;
  color: rgba(255,255,255,0.74);
  line-height: 1.75;
  margin-bottom: 16px;
}
.s-ganha-text p:last-child { margin-bottom: 0; }
.s-ganha-text strong { color: var(--white); font-weight: 700; }
.s-ganha-text a {
  color: var(--teal);
  font-weight: 600;
  border-bottom: 1px solid rgba(99,220,226,0.4);
  transition: border-color var(--transition);
}
.s-ganha-text a:hover { border-color: var(--teal); }

@media (max-width: 960px) {
  .s-ganha-grid { grid-template-columns: 1fr; gap: 36px; }
  .s-ganha-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    aspect-ratio: 1;
    margin: 0 auto;
  }
  .s-ganha::after {
    width: 380px;
    height: 380px;
    right: -120px;
    bottom: -120px;
    opacity: 0.04;
  }
}

/* Hero com logo lateral (usado em /sobre/ e outras páginas que precisem) */
.hero-with-logo .hero-inner-content {
  max-width: 100%;
}
.hero-with-logo-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-logo-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-logo-wrap::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110%;
  height: 110%;
  border: 1.5px solid rgba(99, 220, 226, 0.16);
  border-radius: 50%;
  pointer-events: none;
}
.hero-logo-wrap::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85%;
  height: 85%;
  border: 1px solid rgba(84, 171, 225, 0.12);
  border-radius: 50%;
  pointer-events: none;
}
.hero-logo-symbol {
  position: relative;
  z-index: 1;
  width: 72%;
  height: 72%;
  object-fit: contain;
  filter: drop-shadow(0 8px 32px rgba(99, 220, 226, 0.25));
  animation: hero-logo-float 6s ease-in-out infinite;
}
@keyframes hero-logo-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@media (max-width: 1024px) {
  .hero-with-logo-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-logo-wrap { max-width: 240px; margin: 0 auto; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-logo-symbol { animation: none; }
}
.hero-breadcrumb {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.hero-breadcrumb a {
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}
.hero-breadcrumb a:hover { color: var(--teal); }
.hero-breadcrumb [aria-current="page"] {
  color: rgba(255,255,255,0.75);
}

/* =============================================
   TLDR STRIP — Home (linha teal)
============================================= */
.s-tldr-strip {
  background: var(--teal);
  padding: 20px 0;
}
.tldr-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.tldr-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
}
.tldr-item svg { flex-shrink: 0; }
.tldr-divider {
  width: 4px;
  height: 4px;
  background: rgba(13,21,46,0.25);
  border-radius: 50%;
}

/* =============================================
   TLDR BOX — páginas de serviço (resumo abaixo do hero)
============================================= */
.s-tldr {
  background: var(--white);
  border-left: 4px solid var(--teal);
  border-radius: var(--radius-md);
  padding: 32px 36px;
  max-width: 880px;
  margin: 48px auto;
  box-shadow: var(--shadow-sm);
}
.s-tldr-label {
  font-family: var(--ff-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 10px;
}
.s-tldr-title {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.s-tldr-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.s-tldr-list li {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.65;
  padding-left: 24px;
  position: relative;
}
.s-tldr-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: var(--teal);
  border-radius: 50%;
}
.s-tldr-list strong { color: var(--dark); font-weight: 700; }

/* =============================================
   SERVICES SECTION (Home)
============================================= */
.s-services {
  background: var(--white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--gray-light);
  border: 1px solid rgba(84,171,225,0.12);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(99,220,226,0.3);
}
.service-card:hover::after { transform: scaleX(1); }
.service-card.featured {
  background: var(--dark);
  border-color: rgba(99,220,226,0.3);
}
.service-card.featured .service-title { color: var(--white); }
.service-card.featured .service-desc { color: rgba(255,255,255,0.6); }
.service-card.featured .service-tag {
  background: rgba(99,220,226,0.15);
  color: var(--teal);
}
.service-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(99,220,226,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--teal-dark);
}
.service-card.featured .service-icon {
  background: rgba(99,220,226,0.15);
  color: var(--teal);
}
.service-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(84,171,225,0.12);
  color: var(--gray-mid);
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 12px;
}
.service-title {
  font-family: var(--ff-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.3;
}
.service-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--ff-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--teal-dark);
  transition: gap var(--transition), color var(--transition);
}
.service-card.featured .service-link { color: var(--teal); }
.service-card:hover .service-link { gap: 10px; }

/* =============================================
   WHY SECTION
============================================= */
.s-why { background: var(--gray-light); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.why-text h2 {
  font-family: var(--ff-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 12px 0 20px;
}
.why-text p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.why-pillars {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 36px;
}
.pillar {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.pillar-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--teal);
  font-family: var(--ff-display);
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.pillar-body h4 {
  font-family: var(--ff-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.pillar-body p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
}
.why-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.why-card {
  background: var(--white);
  border: 1px solid rgba(84,171,225,0.12);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.why-card:hover {
  box-shadow: var(--shadow-sm);
  border-color: rgba(99,220,226,0.3);
}
.why-card-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(99,220,226,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-dark);
}
.why-card-body h4 {
  font-family: var(--ff-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.why-card-body p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}
.why-card-body a {
  color: var(--teal-dark);
  font-weight: 600;
}

/* =============================================
   PERSONAS SECTION
============================================= */
.s-personas {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.s-personas::before {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  border: 1px solid rgba(99,220,226,0.08);
  border-radius: 50%;
}
.s-personas .section-header h2 { color: var(--white); }
.s-personas .section-header p { color: rgba(255,255,255,0.55); }
.personas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.persona-card {
  background: var(--dark-card);
  border: 1px solid rgba(84,171,225,0.15);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: border-color var(--transition), transform var(--transition);
}
.persona-card:hover {
  border-color: rgba(99,220,226,0.4);
  transform: translateY(-3px);
}
.persona-num {
  font-family: var(--ff-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}
.persona-title {
  font-family: var(--ff-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.25;
}
.persona-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  margin-bottom: 24px;
}
.persona-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.persona-tag {
  font-size: 12px;
  font-weight: 500;
  background: rgba(99,220,226,0.1);
  color: var(--teal-light);
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid rgba(99,220,226,0.2);
}
.persona-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--ff-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  transition: gap var(--transition);
}
.persona-link:hover { gap: 10px; }

/* =============================================
   AUTHOR — Home section
============================================= */
.s-author-section { background: var(--white); }
.author-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 64px;
  align-items: center;
}
.author-photo-wrap { position: relative; }
.author-photo {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-card) 100%);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.author-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.author-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
}
.author-initials {
  font-family: var(--ff-display);
  font-size: 72px;
  font-weight: 800;
  color: rgba(99,220,226,0.25);
  line-height: 1;
}
.author-photo-label {
  font-family: var(--ff-display);
  font-size: 13px;
  font-weight: 600;
  color: rgba(99,220,226,0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.author-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--teal);
  color: var(--dark);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  box-shadow: var(--shadow-md);
}
.author-badge-num {
  font-family: var(--ff-display);
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}
.author-badge-label {
  font-size: 11px;
  font-weight: 600;
  margin-top: 2px;
}
.author-content h2 {
  font-family: var(--ff-display);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 12px 0 16px;
}
.author-content p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 14px;
}
.author-stats {
  display: flex;
  gap: 32px;
  margin: 32px 0;
  padding: 24px 0;
  border-top: 1px solid var(--gray-light);
  border-bottom: 1px solid var(--gray-light);
}
.author-stat-num {
  font-family: var(--ff-display);
  font-size: 26px;
  font-weight: 800;
  color: var(--dark);
}
.author-stat-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* =============================================
   BYLINE E-E-A-T — compact (pós-CTA, presença SEO discreta)
============================================= */
.s-author {
  background: var(--gray-light);
  padding: 24px 0;
  border: 0;
  margin: 0;
}
.s-author-inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: center;
}
.s-author-photo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--dark), var(--dark-card));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--teal);
  flex-shrink: 0;
  overflow: hidden;
}
.s-author-photo img { width: 100%; height: 100%; object-fit: cover; }
.s-author-role {
  font-family: var(--ff-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2px;
}
.s-author-name {
  font-family: var(--ff-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.4;
  margin-bottom: 4px;
  letter-spacing: 0;
}
.s-author-bio {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 4px;
}
.s-author-bio a {
  color: var(--teal-dark);
  font-weight: 600;
  border-bottom: 1px solid rgba(61,188,194,0.25);
  transition: border-color var(--transition);
}
.s-author-bio a:hover { border-color: var(--teal-dark); }
.s-author-meta {
  font-size: 11px;
  color: var(--text-muted);
}
.s-author-meta time { font-weight: 600; color: var(--text-body); }

/* Quando a byline é grid de 1 coluna (sem foto) */
.s-author-inner-text-only {
  grid-template-columns: 1fr;
}

/* =============================================
   FAQ (padrão PHN — <details>)
============================================= */
.s-faq-section { background: var(--gray-light); }
.s-faq {
  padding: 80px 0;
  background: var(--gray-light);
}
/* Logo gigante rodando ATRÁS da seção inteira, posicionada à esquerda */
.s-faq,
.s-faq-section {
  position: relative;
  overflow: hidden;
}
.s-faq::before,
.s-faq-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 22%;
  width: 720px;
  height: 720px;
  background-image: url('/assets/images/logo-power-mei.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.06;
  filter: blur(1.5px);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  animation: faq-bg-spin 60s linear infinite;
}
@keyframes faq-bg-spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .s-faq::before,
  .s-faq-section::before { animation: none; }
}
/* Grid 2-col: logo nítida à esquerda, label+accordion à direita */
.s-faq .container,
.s-faq-section .container {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.s-faq h2,
.s-faq-section h2 {
  font-family: var(--ff-display);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 12px 0 28px;
  max-width: none;
  text-align: left;
}
.faq-visual > .section-label {
  display: inline-flex;
  margin-bottom: 0;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.s-faq > .container > .faq-item,
.s-faq .faq-item,
.s-faq-section .faq-item {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 12px;
}
/* Coluna esquerda — label + h2 acima da logo, sobre o backdrop rotativo da seção */
.faq-visual {
  position: sticky;
  top: 96px;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.faq-visual-bg { display: none; }  /* backdrop agora é da seção inteira */
.faq-visual-fg {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 360px;
  height: auto;
  display: block;
  margin: 16px auto 0;
  align-self: center;
}

@media (max-width: 960px) {
  .s-faq .container,
  .s-faq-section .container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .faq-visual {
    position: static;
    max-width: 280px;
  }
  .s-faq::before,
  .s-faq-section::before {
    width: 460px;
    height: 460px;
    left: 50%;
    top: 30%;
    opacity: 0.04;
  }
}
.faq-item {
  background: var(--white);
  border: 1px solid rgba(84,171,225,0.12);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.faq-item:hover {
  box-shadow: var(--shadow-sm);
  border-color: rgba(99,220,226,0.25);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  -webkit-user-select: none;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-q-title {
  font-family: var(--ff-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.4;
  margin: 0;
}
.faq-arrow {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-mid);
  transition: transform var(--transition), background var(--transition);
}
.faq-item[open] .faq-arrow {
  transform: rotate(180deg);
  background: rgba(99,220,226,0.15);
  color: var(--teal-dark);
}
.faq-body {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  border-top: 1px solid var(--gray-light);
}
.faq-body p { margin-bottom: 12px; }
.faq-body p:last-child { margin-bottom: 0; }

/* =============================================
   PARA APROFUNDAR — bloco de 3 links internos
============================================= */
/* ============================================================
   Faixa pós-CTA — Para aprofundar (esq) + Byline (dir) em 2 col
============================================================ */
.post-meta-strip {
  background: var(--gray-light);
  padding: 36px 0 32px;
}
.post-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px 56px;
  align-items: start;
}
/* Quando há apenas 1 child (só byline ou só related), ocupa toda a largura centralizado */
.post-meta-grid:has(> :only-child) {
  grid-template-columns: 1fr;
  max-width: 880px;
  margin: 0 auto;
}
/* Dentro do grid, anular padding/bg/centralização das seções aninhadas */
.post-meta-grid > .post-related,
.post-meta-grid > .s-author {
  padding: 0;
  margin: 0;
  background: transparent;
  border: 0;
}
.post-meta-grid > .post-related > *,
.post-meta-grid > .s-author .s-author-inner {
  max-width: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 760px) {
  .post-meta-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* Para aprofundar — compact (pós-CTA, presença SEO discreta) */
.post-related {
  background: var(--gray-light);
  padding: 28px 0 16px;
  border: 0;
}
.post-related > * {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
.post-related h2 {
  font-family: var(--ff-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.post-related ul {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 22px;
}
.post-related li {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.55;
  padding-left: 14px;
  position: relative;
}
.post-related li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--teal-dark);
  font-weight: 700;
  font-size: 11px;
}
.post-related a {
  color: var(--teal-dark);
  font-weight: 600;
  border-bottom: 1px solid rgba(61,188,194,0.25);
  transition: border-color var(--transition);
}
.post-related a:hover { border-color: var(--teal-dark); }

/* =============================================
   CTA FINAL — escuro (Home + páginas)
============================================= */
.s-cta {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
/* Imagem de fundo bem transparente */
.s-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/assets/images/cta-bg.png');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}
/* Efeito de luz central (radial gradient) — sobreposto à imagem */
.s-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(99,220,226,0.10) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}
.s-cta > * { position: relative; z-index: 2; }
.cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}
.cta-inner h2 {
  font-family: var(--ff-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 12px 0 16px;
}
.cta-inner p {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  margin-bottom: 36px;
}
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.cta-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.cta-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}
.cta-info-item svg { color: var(--teal); flex-shrink: 0; }

/* CTA inline (parágrafo simples, fim do conteúdo) — padrão PHN */
.cta-final {
  background: var(--white);
  padding: 24px 28px;
  border-left: 4px solid var(--teal);
  border-radius: var(--radius-md);
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.7;
  max-width: 880px;
  margin: 32px auto;
  box-shadow: var(--shadow-sm);
}
.cta-final a {
  color: var(--teal-dark);
  font-weight: 700;
  border-bottom: 2px solid var(--teal);
  transition: color var(--transition);
}
.cta-final a:hover { color: var(--dark); }

/* =============================================
   FORMULÁRIO DE CONTATO
============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: start;
  margin: 56px 0;
}
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.contact-form-wrap h2 {
  font-family: var(--ff-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
}
.contact-form-wrap > p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
}
#contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-family: var(--ff-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
}
.form-group label span {
  color: var(--teal-dark);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--ff-body);
  font-size: 15px;
  color: var(--text-body);
  background: var(--gray-light);
  border: 1.5px solid transparent;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  transition: border-color var(--transition), background var(--transition);
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  background: var(--white);
  border-color: var(--teal);
}
.form-group textarea {
  resize: vertical;
  min-height: 110px;
  font-family: var(--ff-body);
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' viewBox='0 0 24 24' stroke='%2342667c' stroke-width='2.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}
#form-submit {
  align-self: flex-start;
  margin-top: 8px;
}
#form-feedback {
  font-size: 14px;
  margin-top: 12px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  display: none;
}
#form-feedback.form-success {
  display: block;
  background: rgba(37,211,102,0.12);
  color: #1e7a3e;
  border: 1px solid rgba(37,211,102,0.3);
}
#form-feedback.form-error {
  display: block;
  background: rgba(220,53,69,0.08);
  color: #a52834;
  border: 1px solid rgba(220,53,69,0.25);
}

/* Sidebar de contato */
.contact-aside {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
}
.contact-card h3 {
  font-family: var(--ff-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-card h3 svg { color: var(--teal-dark); flex-shrink: 0; }
.contact-card p,
.contact-card a {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.7;
}
.contact-card a {
  color: var(--teal-dark);
  font-weight: 600;
}
.contact-card a:hover { color: var(--dark); }

/* =============================================
   FOOTER
============================================= */
.site-footer {
  background: var(--dark-mid);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 260px 1fr 1fr 200px;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
  margin: 16px 0 24px;
}
.footer-wpp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37,211,102,0.12);
  color: #25D366;
  border: 1px solid rgba(37,211,102,0.25);
  font-family: var(--ff-display);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.footer-wpp:hover { background: rgba(37,211,102,0.2); }
.footer-col h5 {
  font-family: var(--ff-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--teal); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}
.footer-contact-icon {
  flex-shrink: 0;
  color: var(--teal);
  margin-top: 2px;
}
.footer-contact-text {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}
.footer-bottom a {
  color: rgba(99,220,226,0.6);
  transition: color var(--transition);
}
.footer-bottom a:hover { color: var(--teal); }

/* =============================================
   WPP FLOAT
============================================= */
.wpp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  z-index: 999;
  transition: transform var(--transition), box-shadow var(--transition);
}
.wpp-float:hover {
  transform: scale(1.08) translateY(-3px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.6);
}

/* =============================================
   CONTEÚDO INTERNO — prosa de artigo/serviço
============================================= */
.prose {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px;
}
.prose h2 {
  font-family: var(--ff-display);
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin: 56px 0 20px;
}
.prose h3 {
  font-family: var(--ff-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.35;
  margin: 36px 0 14px;
}
.prose h4 {
  font-family: var(--ff-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin: 28px 0 10px;
}
.prose p {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 18px;
}
.prose p:first-of-type { font-size: 17px; }
.prose ul, .prose ol {
  margin: 18px 0 22px 24px;
  padding-left: 0;
}
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose ul li,
.prose ol li {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 8px;
  padding-left: 4px;
}
.prose ul li::marker,
.prose ol li::marker { color: var(--teal-dark); }
.prose strong { color: var(--dark); font-weight: 700; }
.prose a {
  color: var(--teal-dark);
  font-weight: 600;
  border-bottom: 1px solid rgba(61,188,194,0.3);
  transition: border-color var(--transition);
}
.prose a:hover { border-color: var(--teal-dark); }
.prose blockquote {
  border-left: 4px solid var(--teal);
  background: var(--white);
  padding: 18px 24px;
  margin: 24px 0;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 16px;
  font-style: italic;
  color: var(--text-body);
  box-shadow: var(--shadow-sm);
}

/* Tabelas */
.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 14px;
  background: var(--white);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.prose th {
  background: var(--dark);
  color: var(--white);
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 13px;
  text-align: left;
  padding: 12px 16px;
  letter-spacing: 0.02em;
}
.prose td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--gray-light);
  color: var(--text-body);
}
.prose tr:last-child td { border-bottom: none; }

/* =============================================
   GRID DE ESPECIALIDADES / HUB
============================================= */
.hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 48px 0;
}
.hub-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hub-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-teal);
}
.hub-card-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 4px;
}
.hub-card h3 {
  font-family: var(--ff-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
  margin: 0;
}
.hub-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}
.hub-card-link {
  font-family: var(--ff-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--teal-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding-top: 8px;
  transition: gap var(--transition);
}
.hub-card:hover .hub-card-link { gap: 10px; }

/* =============================================
   RICH PAGE SECTIONS — adicionados na refatoração visual
   Inspirados na Home, dão ritmo dark/light/teal às páginas internas
============================================= */

/* TLDR strip (full-width teal bar — reaproveita o padrão da home) */
.s-tldr-strip {
  background: var(--teal);
  padding: 18px 0;
  border-top: 1px solid rgba(13,21,46,0.08);
  border-bottom: 1px solid rgba(13,21,46,0.08);
}

/* ------------------------------------------------------------
   S-INTRO — primeiro bloco de conteúdo (apresentação)
   fundo branco, com um lead paragraph maior
------------------------------------------------------------ */
.s-intro { background: var(--white); }
.s-intro-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: center;
}
.s-intro-text h2 {
  font-family: var(--ff-display);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 12px 0 20px;
}
.s-intro-text p {
  font-size: 17px;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 16px;
}
.s-intro-text p:first-of-type {
  font-size: 19px;
  line-height: 1.6;
  color: var(--dark);
}
.s-intro-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.intro-stat-card {
  background: var(--gray-light);
  border: 1px solid var(--border);
  border-left: 4px solid var(--teal);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.intro-stat-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}
.intro-stat-num {
  font-family: var(--ff-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 4px;
}
.intro-stat-label {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}
.intro-stat-label strong { color: var(--dark); font-weight: 700; }

/* ------------------------------------------------------------
   S-PAIN — bloco de 2 cartões "dor / problema"
   fundo gray-light, dois cards lado a lado
------------------------------------------------------------ */
.s-pain { background: var(--gray-light); }
.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.pain-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.pain-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--teal) 0%, var(--blue) 100%);
}
.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-teal);
}
.pain-card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(99,220,226,0.12);
  color: var(--teal-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.pain-card h3 {
  font-family: var(--ff-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 12px;
}
.pain-card p {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.65;
  margin: 0;
}
.pain-card p + p { margin-top: 12px; }
.pain-card strong { color: var(--dark); font-weight: 700; }

/* ------------------------------------------------------------
   S-PROCESS — passos numerados (substitui <ol> chato)
   fundo branco, grid de 4 cards com número grande
------------------------------------------------------------ */
.s-process { background: var(--white); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.process-card {
  background: var(--gray-light);
  border: 1px solid rgba(84,171,225,0.12);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.process-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-teal);
  background: var(--white);
}
.process-num {
  position: absolute;
  top: 22px;
  right: 22px;
  font-family: var(--ff-display);
  font-size: 56px;
  font-weight: 800;
  color: rgba(99,220,226,0.25);
  line-height: 1;
  letter-spacing: -0.04em;
}
.process-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-family: var(--ff-display);
  font-size: 15px;
  font-weight: 800;
}
.process-card h4 {
  font-family: var(--ff-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 10px;
}
.process-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ------------------------------------------------------------
   S-FEATURES — cards de benefícios com ícone
   fundo dark, 3 cards (estilo personas)
------------------------------------------------------------ */
.s-features {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.s-features::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(99,220,226,0.08);
  border-radius: 50%;
}
.s-features .section-header h2 { color: var(--white); }
.s-features .section-header p { color: rgba(255,255,255,0.55); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--dark-card);
  border: 1px solid rgba(84,171,225,0.15);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: border-color var(--transition), transform var(--transition);
  position: relative;
  z-index: 1;
}
.feature-card:hover {
  border-color: rgba(99,220,226,0.4);
  transform: translateY(-3px);
}
.feature-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(99,220,226,0.12);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feature-card h3 {
  font-family: var(--ff-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 12px;
}
.feature-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  margin: 0;
}
.feature-card strong { color: var(--white); font-weight: 600; }

/* Variante light (para fundo claro) */
.s-features-light { background: var(--gray-light); }
.s-features-light::before { display: none; }
.s-features-light .section-header h2 { color: var(--dark); }
.s-features-light .section-header p { color: var(--text-muted); }
.s-features-light .feature-card {
  background: var(--white);
  border-color: var(--border);
}
.s-features-light .feature-card:hover {
  border-color: var(--border-teal);
  box-shadow: var(--shadow-md);
}
.s-features-light .feature-card h3 { color: var(--dark); }
.s-features-light .feature-card p { color: var(--text-muted); }
.s-features-light .feature-card strong { color: var(--dark); }

/* ------------------------------------------------------------
   S-PRICING — 2 col: header esquerda + cartão azul direita
------------------------------------------------------------ */
.s-pricing { background: var(--white); }
.s-pricing .container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.s-pricing .section-header {
  text-align: left;
  margin: 0;
  max-width: none;
}
.s-pricing .section-header h2 {
  font-size: clamp(24px, 2.6vw, 34px);
  margin-bottom: 16px;
}
.s-pricing .section-header p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-body);
  margin: 0;
  max-width: 480px;
}
.pricing-card {
  max-width: none;
  margin: 0;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-card) 100%);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.pricing-card::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  border: 1.5px solid rgba(99,220,226,0.12);
  border-radius: 50%;
  pointer-events: none;
}
.pricing-card-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}
.pricing-tag {
  display: inline-block;
  font-family: var(--ff-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(99,220,226,0.12);
  border: 1px solid rgba(99,220,226,0.3);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.pricing-card h3 {
  font-family: var(--ff-display);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.pricing-card p {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
  margin: 0;
}
.pricing-amount {
  text-align: center;
  padding: 24px;
  background: rgba(99,220,226,0.08);
  border: 1px solid rgba(99,220,226,0.25);
  border-radius: var(--radius-md);
  justify-self: center;
  max-width: 280px;
  width: 100%;
}
.pricing-amount-value {
  font-family: var(--ff-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.pricing-amount-label {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ------------------------------------------------------------
   S-IMAGETEXT — seção imagem + texto (2 colunas)
   pronta para receber <img>; usa placeholder gradiente se faltar
------------------------------------------------------------ */
.s-imagetext { background: var(--gray-light); }
.s-imagetext-light { background: var(--white); }
.s-imagetext-dark { background: var(--dark); position: relative; overflow: hidden; }
.s-imagetext-dark::before {
  content: '';
  position: absolute;
  bottom: -120px;
  left: -120px;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(99,220,226,0.08);
  border-radius: 50%;
  pointer-events: none;
}

.imagetext-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.imagetext-grid.reverse {
  grid-template-columns: 1.2fr 1fr;
  direction: rtl;
}
.imagetext-grid.reverse > * { direction: ltr; }

/* Coluna da imagem */
.imagetext-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.imagetext-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
/* Placeholder enquanto não há imagem real */
.imagetext-visual.placeholder {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-card) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
}
.imagetext-visual.placeholder::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 280px;
  height: 280px;
  border: 1.5px solid rgba(99,220,226,0.15);
  border-radius: 50%;
}
.imagetext-visual.placeholder::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(99,220,226,0.1);
  border-radius: 50%;
}
.imagetext-visual-icon {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-md);
  background: rgba(99,220,226,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  position: relative;
  z-index: 1;
}
.imagetext-visual-label {
  font-family: var(--ff-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(99,220,226,0.6);
  position: relative;
  z-index: 1;
}

/* Badge sobre a imagem (canto inferior) — opcional */
.imagetext-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--teal);
  color: var(--dark);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  box-shadow: var(--shadow-md);
  z-index: 2;
}
.imagetext-badge-num {
  font-family: var(--ff-display);
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
}
.imagetext-badge-label {
  font-size: 11px;
  font-weight: 600;
  margin-top: 2px;
}

/* Coluna do texto */
.imagetext-content h2 {
  font-family: var(--ff-display);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 12px 0 18px;
}
.s-imagetext-dark .imagetext-content h2 { color: var(--white); }
.s-imagetext-dark .imagetext-content .section-label { color: var(--teal); }
.imagetext-content p {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 14px;
}
.s-imagetext-dark .imagetext-content p { color: rgba(255,255,255,0.7); }
.imagetext-content strong { color: var(--dark); font-weight: 700; }
.s-imagetext-dark .imagetext-content strong { color: var(--white); }
.imagetext-content a {
  color: var(--teal-dark);
  font-weight: 600;
  border-bottom: 1px solid rgba(61,188,194,0.3);
  transition: border-color var(--transition);
}
.imagetext-content a:hover { border-color: var(--teal-dark); }
.s-imagetext-dark .imagetext-content a {
  color: var(--teal);
  border-bottom-color: rgba(99,220,226,0.4);
}

/* Lista de bullets dentro da coluna texto */
.imagetext-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 24px 0 28px;
}
.imagetext-list-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.imagetext-list-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(99,220,226,0.12);
  color: var(--teal-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.s-imagetext-dark .imagetext-list-icon {
  background: rgba(99,220,226,0.15);
  color: var(--teal);
}
.imagetext-list-text {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.5;
}
.s-imagetext-dark .imagetext-list-text { color: rgba(255,255,255,0.75); }
.imagetext-list-text strong {
  color: var(--dark);
  font-weight: 700;
  display: block;
  margin-bottom: 2px;
}
.s-imagetext-dark .imagetext-list-text strong { color: var(--white); }

/* Mini-stats dentro da coluna texto (4 colunas) */
.imagetext-stats {
  display: flex;
  gap: 28px;
  margin: 28px 0;
  padding: 22px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.s-imagetext-dark .imagetext-stats {
  border-color: rgba(255,255,255,0.12);
}
.imagetext-stat-num {
  font-family: var(--ff-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
}
.s-imagetext-dark .imagetext-stat-num { color: var(--teal); }
.imagetext-stat-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}
.s-imagetext-dark .imagetext-stat-label { color: rgba(255,255,255,0.5); }

/* ------------------------------------------------------------
   S-DEEP — para aprofundar com cards (substitui lista chata)
   fundo gray-light, 3 cards de links internos
------------------------------------------------------------ */
.s-deep { background: var(--gray-light); }
.deep-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.deep-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
}
.deep-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.deep-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-teal);
}
.deep-card:hover::after { transform: scaleX(1); }
.deep-card-tag {
  font-family: var(--ff-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-dark);
}
.deep-card h3 {
  font-family: var(--ff-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.35;
  margin: 0;
}
.deep-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
  flex: 1;
}
.deep-card-link {
  font-family: var(--ff-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--teal-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  transition: gap var(--transition);
}
.deep-card:hover .deep-card-link { gap: 10px; }

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-card { max-width: 500px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .personas-grid { grid-template-columns: repeat(2, 1fr); }
  .author-grid { grid-template-columns: 1fr; }
  .author-photo-wrap { max-width: 320px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .hub-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .s-intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .pain-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .deep-grid { grid-template-columns: repeat(2, 1fr); }
  .s-pricing .container { grid-template-columns: 1fr; gap: 32px; }
  .pricing-card-inner { grid-template-columns: 1fr; gap: 24px; }
  .imagetext-grid { grid-template-columns: 1fr; gap: 40px; }
  .imagetext-grid.reverse { grid-template-columns: 1fr; direction: ltr; }
  .imagetext-visual { max-width: 480px; margin: 0 auto; }
}

@media (max-width: 768px) {
  section { padding: 60px 0; }
  .nav-menu { display: none; }
  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(13,21,46,0.98);
    padding: 16px 24px 24px;
    gap: 4px;
    border-bottom: 1px solid rgba(84,171,225,0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .personas-grid { grid-template-columns: 1fr; }
  .hub-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero { padding: 60px 0; }
  .hero-trust { gap: 16px; flex-wrap: wrap; }
  .author-stats { gap: 20px; flex-wrap: wrap; }
  .wpp-float { bottom: 20px; right: 20px; width: 50px; height: 50px; }
  .s-tldr { padding: 24px; margin: 32px 16px; }
  .s-author-inner { grid-template-columns: 36px 1fr; gap: 12px; }
  .s-author-photo { width: 36px; height: 36px; font-size: 11px; }
  .contact-form-wrap { padding: 24px; }
  .prose h2 { margin-top: 40px; }
  .process-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .deep-grid { grid-template-columns: 1fr; }
  .pricing-card { padding: 32px 24px; }
  .pain-card { padding: 28px 24px; }
  .imagetext-content h2 { font-size: 24px; }
  .imagetext-stats { gap: 20px; }
}
