/*
	Theme Name: Hello Elementor
	Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
	Description: Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
	Author: Elementor Team
	Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
	Version: 3.4.9
	Stable tag: 3.4.9
	Requires at least: 6.0
	Tested up to: 6.8
	Requires PHP: 7.4
	License: GNU General Public License v3 or later.
	License URI: https://www.gnu.org/licenses/gpl-3.0.html
	Text Domain: hello-elementor
	Tags: accessibility-ready, flexible-header, custom-colors, custom-menu, custom-logo, featured-images, rtl-language-support, threaded-comments, translation-ready,
*/
/* ============================================================
   VALIDA360 — Compliance Digital
   Design: "documento auditável vivo" — precisão editorial,
   hairlines, numeração de registros, roxo como acento cirúrgico.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --purple:      #966AE5;
  --deep:        #321469;
  --ink:         #030303;
  --gray:        #666666;
  --white:       #FFFFFF;

  --tint:        #FAF8FE;            /* lavanda quase branca */
  --tint-2:      #F3EEFC;
  --hairline:    rgba(3, 3, 3, .10);
  --hairline-l:  rgba(255, 255, 255, .16);

  --font: 'Manrope', system-ui, sans-serif;

  --w-container: 1240px;
  --pad-x: clamp(1.25rem, 4vw, 3rem);
  --pad-section: clamp(5rem, 9vw, 8.5rem);

  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  /* Firefox */
  scrollbar-width: thin;
  scrollbar-color: var(--purple) var(--white);
}

section[id], [id].section, .hero[id] {
  scroll-margin-top: 85px;
}

/* Barra de rolagem — WebKit (Chrome, Edge, Safari) */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--white); }
::-webkit-scrollbar-thumb {
  background: var(--purple);
  border-radius: 999px;
  border: 2px solid var(--white);
}
::-webkit-scrollbar-thumb:hover { background: var(--deep); }

body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, select { font: inherit; color: inherit; }

::selection { background: var(--purple); color: var(--white); }

:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 3px;
}

.container {
  max-width: var(--w-container);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

/* ============================================================
   Elementos de sistema
   ============================================================ */

/* Linha de progresso de leitura */
.progress-line {
  position: fixed;
  inset: 0 0 auto 0;
  height: 2px;
  z-index: 1000;
  background: transparent;
}
.progress-line span {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--purple);
  transition: width .1s linear;
}

/* Véu de desfoque progressivo no pé da viewport:
   o conteúdo rola por baixo e "emerge" do blur */
.blur-foot {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  height: 10vh;
  z-index: 800;              /* abaixo do header (900) e do menu mobile */
  pointer-events: none;      /* nunca bloqueia cliques/rolagem */
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
  /* máscara em gradiente: desfoque entra suave, sem linha de corte */
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 65%);
  mask-image: linear-gradient(to bottom, transparent 0%, #000 65%);
  opacity: 1;
  transition: opacity .4s var(--ease);
}
/* some ao chegar ao fim da página, para o rodapé final não ficar
   permanentemente ilegível */
.blur-foot.is-off { opacity: 0; }

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s var(--ease) var(--d, 0s),
              transform .8s var(--ease) var(--d, 0s);
}
.reveal.in { opacity: 1; transform: none; }

/* Forçar visibilidade total de elementos no editor do Elementor */
.elementor-editor-active .reveal,
.elementor-editor-preview .reveal,
body.elementor-editor-active .reveal,
.elementor-page .elementor-editor-active .reveal {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}


@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  * { animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .8rem 1.5rem;
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .01em;
  border: 1px solid transparent;
  border-radius: 0;               /* cantos retos: postura de documento */
  cursor: pointer;
  transition: background .3s var(--ease), color .3s var(--ease),
              border-color .3s var(--ease), transform .3s var(--ease);
}
.btn-arrow {
  display: inline-block;
  transition: transform .3s var(--ease);
}
.btn:hover .btn-arrow { transform: translateX(5px); }

.btn-purple { background: var(--purple); color: #FFFFFF !important; }
.btn-purple:hover { background: var(--deep); color: #FFFFFF !important; }
.btn-purple:hover .btn-arrow { color: #FFFFFF !important; }

.btn-ink { background: var(--ink); color: var(--white) !important; border: 1px solid var(--ink); }
.btn-ink:hover { background: var(--purple); color: #FFFFFF !important; }

.header-actions .btn-ink { background: #030303; color: #FFFFFF !important; border: 1px solid #030303; }
.header-actions .btn-ink:hover { background: #FFFFFF !important; color: #030303 !important; border-color: #030303 !important; }
.header-actions .btn-ink:hover .btn-arrow { color: #030303 !important; }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--hairline);
}
.btn-ghost:hover { border-color: var(--purple); color: var(--purple); }

.btn-sm { padding: .6rem 1.1rem; font-size: .82rem; }
.btn-lg { padding: 1rem 1.9rem; font-size: .95rem; }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Eyebrow / labels ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink);
}
.eyebrow-dot {
  width: 7px; height: 7px;
  background: var(--purple);
  flex-shrink: 0;
}
.eyebrow-light { color: var(--white); }
.eyebrow-sep { color: var(--purple); font-weight: 800; margin-inline: -.08em; }

.dot-purple { color: var(--purple); }

/* Cabeçalho de seção — linha de registro unificada */
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding-bottom: 1.1rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid var(--hairline);
  flex-wrap: wrap;
}
.section-head-left {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
}
.section-index {
  font-size: .78rem;
  font-weight: 800;
  color: var(--purple);
  letter-spacing: .08em;
  margin: 0;
  line-height: 1;
}
.section-index-light { color: #FFFFFF !important; }
.section-meta {
  margin-left: auto;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #030303 !important;
  white-space: nowrap;
}
.section-head-dark { border-bottom-color: var(--hairline-l); }
.section-head-dark .section-meta { color: rgba(255,255,255,.65) !important; }
.section-head-dark .section-index { color: #966AE5; }

/* Garantir alinhamento perfeito de colunas e altura uniforme em cartões */
.modules-grid,
.personas-grid,
.context-grid,
.articles-grid {
  align-items: stretch !important;
}

.module-card,
.persona-card,
.context-card,
.article-card {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
}


/* ---------- Títulos ---------- */
.title-xl {
  font-size: clamp(1.9rem, 4.2vw, 3.2rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.025em;
  color: #030303 !important;
  max-width: 21ch;
}
.title-thin { font-weight: 300; color: #030303 !important; }
.title-light { color: var(--white) !important; }
.title-light .title-thin { color: rgba(255,255,255,.75) !important; }

.lead {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.7;
  color: var(--gray);
  max-width: 56ch;
}
.lead-light { color: rgba(255,255,255,.75); }

.section { padding-block: var(--pad-section); }
.section-tint { background: var(--tint); }
.section-dark { background: var(--deep); position: relative; overflow: hidden; }

.section-intro {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
  margin-bottom: clamp(3rem, 6vw, 4.5rem);
}

/* Destaque com sublinhado animado */
.hl {
  position: relative;
  color: var(--purple);
  white-space: nowrap;
}
/* âncora da faixa numa palavra única (não quebra de linha),
   garantindo o sublinhado sob a palavra inteira */
.hl-word {
  position: relative;
  white-space: nowrap;
}
.hl-underline {
  position: absolute;
  left: 0; bottom: .06em;
  width: 100%; height: .085em;
  background: currentColor;
  opacity: .35;
  transform: scaleX(0);
  transform-origin: left;
  animation: underline-in 1s var(--ease) .9s forwards;
}
@keyframes underline-in { to { transform: scaleX(1); } }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 900;
  background: rgba(255, 255, 255, .55);   /* translúcido: deixa o blur aparecer */
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid transparent;
  will-change: transform;
  transition: transform .45s var(--ease),
              border-color .3s,
              box-shadow .3s,
              background .3s;
}
.site-header.is-scrolled {
  border-bottom-color: var(--hairline);
  box-shadow: 0 8px 30px -18px rgba(3, 3, 3, .25);
}
/* Recolhe o header ao rolar para baixo; reaparece ao rolar para cima */
.site-header.is-hidden {
  transform: translateY(-100%);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 76px;
}
.brand-logo { height: 50px; width: auto; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.9rem;
  margin-inline: auto;
  height: 100%;
}
.nav-item {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}
.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: .88rem;
  font-weight: 600;
  height: 100%;
  color: var(--ink);
  padding-block: .5rem;
  transition: color .25s;
}
.has-subbar::after {
  content: '';
  position: absolute;
  top: 0;
  left: -30px;
  right: -30px;
  height: 135px;
  z-index: 1;
  pointer-events: auto;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--purple);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav-link:hover, .nav-link.is-active { color: var(--purple); }
.nav-link:hover::after, .nav-link.is-active::after { transform: scaleX(1); }

/* Dropdown Caret & Submenu */
.dropdown-caret {
  transition: transform 0.25s var(--ease);
  flex-shrink: 0;
}
.has-dropdown:hover .dropdown-caret,
.has-dropdown:focus-within .dropdown-caret {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 240px;
  background: #FFFFFF;
  border: 1px solid var(--hairline);
  box-shadow: 0 16px 36px -10px rgba(3, 3, 3, 0.14), 0 4px 12px rgba(3, 3, 3, 0.05);
  padding: 0.5rem 0;
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
  z-index: 1000;
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  background: #FFFFFF;
  border-top: 1px solid var(--hairline);
  border-left: 1px solid var(--hairline);
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(4px);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1.1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  transition: background 0.2s var(--ease), color 0.2s var(--ease), padding-left 0.2s var(--ease);
  border-left: 3px solid transparent;
}

.dropdown-item-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--purple);
  opacity: 0.3;
  transition: opacity 0.2s, transform 0.2s, background 0.2s;
  flex-shrink: 0;
}

.dropdown-item:hover {
  background: var(--tint);
  color: var(--purple);
  border-left-color: var(--purple);
  padding-left: 1.3rem;
}

.dropdown-item:hover .dropdown-item-dot {
  opacity: 1;
  transform: scale(1.3);
  background: var(--purple);
}

.header-actions { display: flex; align-items: center; gap: 1rem; }

/* Sub-header Mega-Bar abaixo do menu principal */
.sub-header-bar {
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  box-shadow: 0 20px 40px -15px rgba(50, 20, 105, 0.12);
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  overflow: hidden;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 99;
  transition: max-height 0.4s var(--ease), opacity 0.35s var(--ease), visibility 0.35s var(--ease);
}
.site-header:has(.has-subbar:hover) .sub-header-bar,
.site-header:has(.has-subbar:focus-within) .sub-header-bar,
.sub-header-bar:hover,
.sub-header-bar.is-open {
  max-height: 500px !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}
.sub-header-inner {
  display: flex;
  flex-direction: column;
  padding-block: 1.15rem 1.35rem;
  gap: 0.85rem;
}
.sub-header-meta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--hairline);
}
.sub-header-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--purple);
  white-space: nowrap;
}
.sub-header-desc {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray);
}
.sub-nav-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}
@media (max-width: 1024px) {
  .sub-nav-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.sub-card-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 0.85rem 0.9rem;
  background: var(--tint);
  border: 1px solid var(--hairline);
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s var(--ease);
}
.sub-card-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--purple);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.sub-card-item:hover {
  background: #FFFFFF !important;
  border-color: var(--purple) !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -8px rgba(150, 106, 229, 0.18);
}
.sub-card-item:hover::before {
  transform: scaleX(1);
}
.sub-card-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.sub-card-title {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: -0.015em;
  white-space: nowrap;
  color: #030303 !important;
  transition: color 0.25s;
}
.sub-card-item:hover .sub-card-title {
  color: var(--purple) !important;
}
.sub-card-arrow {
  margin-left: auto;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--purple);
  opacity: 0;
  transform: translateX(-4px);
  transition: all 0.3s var(--ease);
}
.sub-card-item:hover .sub-card-arrow {
  opacity: 1;
  transform: translateX(0);
}
.sub-card-desc {
  font-size: 0.75rem;
  line-height: 1.4;
  color: #666666;
}

.sub-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 0.12rem 0.45rem;
  border-radius: 4px;
  color: #FFFFFF !important;
  flex-shrink: 0;
}
.badge-g { background: #6366f1; }
.badge-r { background: #8b5cf6; }
.badge-c { background: var(--purple); }
.badge-grc { background: #321469; }



.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 42px; height: 42px;
  background: transparent;
  border: 1px solid var(--hairline);
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 920;
}
.menu-toggle span {
  display: block;
  width: 18px; height: 2px;
  background: var(--ink);
  transition: transform .35s var(--ease), opacity .3s;
  transform-origin: center;
}
/* gap=6px, height=2px → center-to-center = 8px → translateY(±8px) to cross */
.menu-toggle.is-open span:first-child { transform: translateY(8px) rotate(45deg); }
.menu-toggle.is-open span:last-child  { transform: translateY(-8px) rotate(-45deg); }

/* Menu mobile — appended to <body> by JS so position:fixed works relative to viewport */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 950; /* above .site-header (900) */
  background: var(--deep);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
  padding: var(--pad-x);
  padding-top: 100px; /* clearance for header */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .4s var(--ease), visibility .4s;
  overflow-y: auto;
  /* Ensure stacking context won't break fixed positioning */
  transform: none;
  will-change: opacity;
}
.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.mobile-nav { display: flex; flex-direction: column; gap: .4rem; }
.mobile-link {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  font-size: clamp(1.5rem, 6vw, 2.2rem);
  font-weight: 800;
  color: var(--white);
  padding-block: .45rem;
  border-bottom: 1px solid var(--hairline-l);
  transition: color .3s, padding-left .3s var(--ease);
}
.mobile-link em {
  font-style: normal;
  font-size: .8rem;
  font-weight: 600;
  color: var(--purple);
}
.mobile-link:hover { color: var(--purple); padding-left: .6rem; }
.mobile-dropdown-group {
  display: flex;
  flex-direction: column;
}
.mobile-submenu {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-left: 2.2rem;
  padding-top: 0.4rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--hairline-l);
}
.mobile-sublink {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s, transform 0.2s;
  padding-block: 0.2rem;
}
.mobile-sublink:hover {
  color: var(--purple);
  transform: translateX(4px);
}
.mobile-cta { align-self: flex-start; }

/* Botão fechar (X) dentro do menu mobile */
.mobile-menu-close {
  position: fixed !important;
  top: 24px !important;
  right: 24px !important;
  background: rgba(255, 255, 255, 0.12) !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  color: #FFFFFF !important;
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  font-size: 1.8rem !important;
  font-weight: 300 !important;
  line-height: 1 !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: background .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease) !important;
  z-index: 10000 !important;
}
.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.25) !important;
  border-color: #FFFFFF !important;
  transform: scale(1.08) !important;
}


/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding-top: calc(76px + clamp(2.25rem, 4vw, 3.75rem));
  padding-bottom: clamp(2.25rem, 4vw, 3.5rem);
}

/* fundo: papel milimetrado sutilíssimo + brilho lavanda */
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(3,3,3,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(3,3,3,.035) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 60% 0%, #000 30%, transparent 75%);
  mask-image: radial-gradient(ellipse 90% 80% at 60% 0%, #000 30%, transparent 75%);
  pointer-events: none;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%; right: -12%;
  width: 55vw; height: 55vw;
  max-width: 760px; max-height: 760px;
  background: radial-gradient(circle, rgba(150,106,229,.14) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}

.hero-title {
  font-size: clamp(2.4rem, 5.4vw, 4.3rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -.03em;
  margin-block: 1.2rem 1.4rem;
  max-width: 15ch;
}
.hero-title .hl { white-space: normal; }

.hero-sub {
  font-size: clamp(1rem, 1.35vw, 1.13rem);
  line-height: 1.7;
  color: #030303;
  max-width: 54ch;
  margin-bottom: 2rem;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; }

/* --- Painel: trilha de auditoria --- */
.hero-visual { position: relative; }

.audit-panel {
  position: relative;
  background: var(--white);
  border: 1px solid var(--hairline);
  box-shadow: 24px 24px 0 var(--tint-2);
}
.audit-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .9rem 1.2rem .9rem 5.2rem; /* espaço para o selo 360 sobreposto */
  border-bottom: 1px solid var(--hairline);
}
.audit-status {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.pulse-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--purple);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(150,106,229,.5); }
  70%  { box-shadow: 0 0 0 9px rgba(150,106,229,0); }
  100% { box-shadow: 0 0 0 0 rgba(150,106,229,0); }
}
.audit-tag {
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--purple);
  border: 1px solid currentColor;
  padding: .2rem .55rem;
}

.audit-feed {
  height: 300px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.audit-entry {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: .9rem;
  align-items: baseline;
  padding: .82rem 1.2rem;
  border-bottom: 1px solid rgba(3,3,3,.05);
  animation: entry-in .55s var(--ease);
}
@keyframes entry-in {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: none; }
}
.audit-entry .e-time {
  font-size: .7rem;
  font-weight: 700;
  color: #030303;
  font-variant-numeric: tabular-nums;
}
.audit-entry .e-text { font-size: .82rem; font-weight: 700; color: #030303; line-height: 1.4; }
.audit-entry .e-text small { display: block; font-size: .7rem; font-weight: 600; color: #030303; }
.audit-entry .e-mod {
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .1em;
  color: var(--purple);
  background: var(--tint-2);
  padding: .22rem .5rem;
  white-space: nowrap;
}

.audit-foot {
  display: flex;
  justify-content: space-between;
  padding: .75rem 1.2rem;
  border-top: 1px solid var(--hairline);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #030303;
}
#auditCount { color: var(--purple); font-weight: 800; font-variant-numeric: tabular-nums; }

/* --- Selo 360 rotativo --- */
.seal-360 {
  position: absolute;
  top: -52px; left: -52px;
  width: 118px; height: 118px;
  display: grid;
  place-items: center;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 50%;
  box-shadow: 0 8px 24px -6px rgba(3, 3, 3, 0.1);
  z-index: 10;
  overflow: hidden;
}
.seal-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform-origin: 50% 50% !important;
  transform-box: fill-box !important;
  animation: sealSpin 20s linear infinite !important;
}
.seal-svg text {
  white-space: nowrap !important;
  word-break: keep-all !important;
}
@keyframes sealSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.seal-text {
  font-size: 10px !important;
  font-weight: 800 !important;
  letter-spacing: .22em !important;
  text-transform: uppercase !important;
  fill: #030303 !important;
  white-space: nowrap !important;
  word-break: keep-all !important;
}
.seal-check {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--purple);
}

/* baseline do hero */
.hero-baseline {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.2rem, 4vw, 3.5rem);
  margin-top: clamp(1.75rem, 3.5vw, 2.75rem);
  padding-top: 1.3rem;
  border-top: 1px solid var(--hairline);
}
.baseline-item {
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #030303;
}

/* ---------- Marquee ---------- */
.marquee {
  overflow: hidden;
  border-block: 1px solid var(--hairline);
  padding-block: .95rem;
  background: var(--white);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 2.6rem;
  width: max-content;
  animation: marquee 34s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  white-space: nowrap;
  color: #030303;
}
.marquee-track i {
  font-style: normal;
  color: var(--purple);
  font-weight: 800;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   DOBRA 2 — MÓDULOS
   ============================================================ */
.modules-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--hairline);
}
.module-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background: var(--white);
  overflow: hidden;
  transition: background .45s var(--ease);
}
.module-card:nth-child(2n) { border-right: 0; }
.module-card:nth-last-child(-n+2) { border-bottom: 0; }

/* barra superior que cresce no hover */
.module-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  z-index: 2;
  width: 100%; height: 3px;
  background: var(--purple);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease);
}
.module-card:hover { background: var(--deep); }
.module-card:hover::before { transform: scaleX(1); }

/* imagem em sangria no topo do card */
.module-media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-bottom: 1px solid var(--hairline);
}
.module-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.module-card:hover .module-media img { transform: scale(1.05); }

.module-code {
  position: absolute;
  top: 1rem; left: 1rem;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .18em;
  color: #030303;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: .3rem .6rem;
}

.module-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: clamp(1.8rem, 3.5vw, 2.6rem);
}

.module-title {
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -.02em;
  color: #030303;
  margin-bottom: .8rem;
  transition: color .45s;
}
.module-text {
  font-size: .92rem;
  line-height: 1.7;
  color: #030303;
  margin-bottom: 1.8rem;
  transition: color .45s;
}
.module-card:hover .module-title { color: var(--white); }
.module-card:hover .module-text { color: rgba(255,255,255,.7); }

.module-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: auto;
  align-self: flex-start;
  font-size: .85rem;
  font-weight: 800;
  color: var(--ink);
  transition: color .45s;
}
.module-link .btn-arrow { transition: transform .3s var(--ease); }
.module-link:hover .btn-arrow { transform: translateX(5px); }
.module-card:hover .module-link { color: var(--purple); }

/* ============================================================
   DOBRA 3 — CONTEXTO (dark)
   ============================================================ */
.section-dark::before {
  content: '';
  position: absolute;
  top: -30%; right: -15%;
  width: 60vw; height: 60vw;
  max-width: 820px; max-height: 820px;
  background: radial-gradient(circle, rgba(150,106,229,.22) 0%, transparent 62%);
  pointer-events: none;
}

.context-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  margin-block: clamp(3rem, 6vw, 5rem);
}
.context-col {
  padding-top: 1.3rem;
  border-top: 1px solid var(--hairline-l);
}
.context-num {
  display: block;
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  font-weight: 200;
  letter-spacing: -.02em;
  color: var(--purple);
  margin-bottom: .9rem;
}
.context-col p {
  font-size: .95rem;
  line-height: 1.7;
  color: rgba(255,255,255,.72);
  max-width: 34ch;
}

.context-statement {
  border-top: 1px solid var(--hairline-l);
  padding-top: clamp(2.5rem, 5vw, 4rem);
  position: relative;
}
.statement-line {
  font-size: clamp(1.25rem, 2.4vw, 1.9rem);
  font-weight: 300;
  line-height: 1.45;
  color: rgba(255,255,255,.85);
  max-width: 44ch;
  text-wrap: balance;      /* evita palavra órfã na última linha */
}
/* garante que o alvo tachado + "gera" não separem de "passivo" isolado */
.statement-line .strike { white-space: nowrap; }
.statement-line + .statement-line { margin-top: 1.1rem; }
.statement-line em { font-style: normal; font-weight: 700; }
.strike {
  position: relative;
  color: rgba(255,255,255,.45);
}
.strike::after {
  content: '';
  position: absolute;
  left: 0; top: 54%;
  width: 100%; height: 2px;
  background: var(--purple);
}
.hl-light { color: var(--purple); }

.statement-final {
  margin-top: clamp(2rem, 4vw, 3rem);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  font-weight: 600;
  color: var(--white);
}
.statement-final span {
  color: var(--purple);
  border-bottom: 1px solid rgba(150,106,229,.5);
}

/* ============================================================
   DOBRA 4 — SOBRE
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}
.about-sticky {
  position: sticky;
  top: 110px;
}

.values-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: 2rem;
}
.values-chips li {
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .5rem .95rem;
  border: 1px solid var(--hairline);
  color: var(--ink);
  transition: all .3s var(--ease);
  cursor: default;
}
.values-chips li:hover {
  border-color: var(--purple);
  background: var(--purple);
  color: var(--white);
  transform: translateY(-2px);
}

.about-p {
  font-size: clamp(1rem, 1.35vw, 1.1rem);
  line-height: 1.8;
  color: #030303;
}
.about-p strong { color: #030303; font-weight: 800; }
.about-p + .about-p { margin-top: 1.4rem; }

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
  margin-block: 2.6rem;
}
.mv-item {
  background: var(--white);
  padding: 1.7rem;
}
.mv-label {
  display: inline-block;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: .8rem;
}
.mv-item p { font-size: .9rem; line-height: 1.7; color: #030303; }

.ceo-quote {
  position: relative;
  display: grid;
  grid-template-columns: 168px 1fr;
  border-left: 3px solid var(--purple);
  background: var(--tint);
  overflow: hidden;
}
.ceo-portrait {
  position: relative;
  overflow: hidden;
  background: var(--deep);
}
.ceo-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .6s var(--ease);
}
.ceo-quote:hover .ceo-portrait img {
  transform: scale(1.04);
}

.ceo-content {
  position: relative;
  padding: clamp(1.8rem, 3vw, 2.5rem);
}
.quote-mark {
  position: absolute;
  top: -.4rem; right: 1.4rem;
  font-size: 6rem;
  font-weight: 800;
  line-height: 1;
  color: var(--tint-2);
  user-select: none;
}
.ceo-quote p {
  position: relative;
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-weight: 600;
  line-height: 1.55;
  letter-spacing: -.01em;
  color: #030303;
  margin-bottom: 1.4rem;
}
.ceo-quote footer { display: flex; flex-direction: column; gap: .1rem; }
.quote-name { font-size: .9rem; font-weight: 800; color: #030303; }
.quote-role { font-size: .78rem; font-weight: 700; color: #030303; letter-spacing: .06em; text-transform: uppercase; }

/* ============================================================
   DOBRA 5 — PARA QUEM
   ============================================================ */
.personas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 2.5vw, 2rem);
}
.persona-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--hairline);
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
}
.persona-card:hover {
  transform: translateY(-6px);
  border-color: var(--purple);
  box-shadow: 14px 14px 0 var(--tint-2);
}

/* foto em sangria no topo do card */
.persona-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-bottom: 1px solid var(--hairline);
}
.persona-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.persona-card:hover .persona-media img { transform: scale(1.05); }

.persona-index {
  position: absolute;
  top: 1rem; left: 1rem;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .18em;
  color: #030303;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: .3rem .6rem;
}

.persona-body { padding: clamp(1.7rem, 3vw, 2.2rem); }
.persona-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -.015em;
  color: #030303;
  margin-bottom: .75rem;
}
.persona-card p { font-size: .9rem; line-height: 1.7; color: #030303; }

/* ============================================================
   DOBRA 6 — DIFERENCIAIS
   ============================================================ */
.diff-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.diff-visual {
  position: relative;
  border: 1px solid var(--hairline);
  overflow: hidden;
}
.diff-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .7s var(--ease);
}
.diff-visual:hover img { transform: scale(1.03); }

.diff-list {
  margin-top: clamp(3rem, 6vw, 4.5rem);
  border-top: 1px solid var(--hairline);
}
.diff-row {
  display: grid;
  grid-template-columns: 110px 1fr 1.4fr;
  gap: clamp(1.2rem, 3vw, 3rem);
  align-items: start;
  padding-block: clamp(1.8rem, 3.5vw, 2.8rem);
  border-bottom: 1px solid var(--hairline);
  transition: background .35s var(--ease), padding-left .35s var(--ease);
}
.diff-row:hover {
  background: var(--tint);
  padding-left: 1rem;
}
.diff-num {
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 300;
  line-height: 1;
  color: #030303;
  transition: color .35s;
  font-variant-numeric: tabular-nums;
}
.diff-row:hover .diff-num { color: var(--purple); }
.diff-title {
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  font-weight: 800;
  letter-spacing: -.015em;
  color: #030303;
  padding-top: .3rem;
}
.diff-text {
  font-size: .93rem;
  line-height: 1.75;
  color: #030303;
  max-width: 56ch;
  padding-top: .4rem;
}

/* ============================================================
   DOBRA 7 — CONTEÚDO
   ============================================================ */
.articles-list {
  border-top: 1px solid var(--hairline);
}
.article-row {
  display: grid;
  grid-template-columns: 140px 1fr auto auto;
  gap: clamp(1rem, 3vw, 2.5rem);
  align-items: center;
  padding-block: clamp(1.5rem, 3vw, 2.2rem);
  border-bottom: 1px solid var(--hairline);
  transition: background .3s var(--ease), padding-inline .35s var(--ease);
}
.article-row:hover {
  background: var(--white);
  padding-inline: 1.2rem;
}
.article-cat {
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--purple);
  border: 1px solid rgba(150,106,229,.4);
  padding: .35rem .7rem;
  text-align: center;
  white-space: nowrap;
}
.article-title {
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  font-weight: 700;
  letter-spacing: -.015em;
  line-height: 1.35;
  transition: color .3s;
}
.article-row:hover .article-title { color: var(--purple); }
.article-meta {
  font-size: .78rem;
  font-weight: 600;
  color: var(--gray);
  white-space: nowrap;
}
.article-arrow {
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--gray);
  transition: transform .3s var(--ease), color .3s;
}
.article-row:hover .article-arrow {
  transform: translateX(6px);
  color: var(--purple);
}

.articles-cta {
  margin-top: 2.5rem;
  display: flex;
  justify-content: flex-end;
}

/* ============================================================
   DOBRA 8 — CTA FINAL
   ============================================================ */
.section-cta {
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.section-cta::before {
  content: '';
  position: absolute;
  bottom: -35%; left: -10%;
  width: 55vw; height: 55vw;
  max-width: 720px; max-height: 720px;
  background: radial-gradient(circle, rgba(50,20,105,.85) 0%, transparent 62%);
  pointer-events: none;
}
.cta-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: start;
}

.cta-checklist {
  margin-top: 2.4rem;
  display: flex;
  flex-direction: column;
  gap: .9rem;
}
.cta-checklist li {
  display: flex;
  align-items: center;
  gap: .8rem;
  font-size: .92rem;
  font-weight: 600;
  color: rgba(255,255,255,.8);
}
.cta-checklist i {
  font-style: normal;
  display: grid;
  place-items: center;
  width: 22px; height: 22px;
  font-size: .7rem;
  font-weight: 800;
  color: var(--purple);
  border: 1px solid rgba(150,106,229,.5);
  flex-shrink: 0;
}

/* Formulário */
.cta-form {
  background: transparent;
  border: 1px solid var(--hairline-l);
  padding: clamp(1.8rem, 3.5vw, 2.8rem);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}
.form-field { margin-bottom: 1.5rem; }
.form-field label {
  display: block;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: .5rem;
}
.form-field input,
.form-field select {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--hairline-l);
  padding: .65rem 0;
  font-size: .95rem;
  font-weight: 600;
  color: var(--white);
  border-radius: 0;
  transition: border-color .3s;
}
.form-field input::placeholder { color: rgba(255,255,255,.28); font-weight: 500; }
.form-field input:focus,
.form-field select:focus {
  outline: none;
  border-bottom-color: var(--purple);
}
.form-field input.is-invalid,
.form-field select.is-invalid { border-bottom-color: #e05656; }

.select-wrap { position: relative; }
.select-wrap select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 2rem;
}
.select-wrap select option { color: var(--ink); background: var(--white); }
.select-caret {
  position: absolute;
  right: .2rem; top: 50%;
  transform: translateY(-50%);
  color: var(--purple);
  font-weight: 800;
  pointer-events: none;
}

.form-consent {
  display: flex;
  gap: .85rem;
  align-items: flex-start;
  margin-block: .4rem 1.8rem;
  cursor: pointer;
}
.form-consent input {
  position: absolute;
  opacity: 0;
  width: 1px; height: 1px;
}
.consent-box {
  display: grid;
  place-items: center;
  width: 20px; height: 20px;
  border: 1px solid var(--hairline-l);
  flex-shrink: 0;
  margin-top: .15rem;
  transition: all .25s var(--ease);
}
.consent-box i {
  font-style: normal;
  font-size: .68rem;
  font-weight: 800;
  color: var(--white);
  opacity: 0;
  transform: scale(.4);
  transition: all .25s var(--ease);
}
.form-consent input:checked + .consent-box {
  background: var(--purple);
  border-color: var(--purple);
}
.form-consent input:checked + .consent-box i { opacity: 1; transform: scale(1); }
.form-consent input:focus-visible + .consent-box { outline: 2px solid var(--purple); outline-offset: 2px; }
.form-consent.is-invalid .consent-box { border-color: #e05656; }
.consent-text {
  font-size: .78rem;
  line-height: 1.55;
  color: rgba(255,255,255,.55);
}

.form-support {
  margin-top: 1.1rem;
  font-size: .78rem;
  font-weight: 600;
  text-align: center;
  color: rgba(255,255,255,.45);
}
.form-success {
  display: flex;
  align-items: center;
  gap: .7rem;
  margin-top: 1.2rem;
  padding: .9rem 1.1rem;
  font-size: .85rem;
  font-weight: 700;
  color: var(--white);
  background: rgba(150,106,229,.16);
  border: 1px solid var(--purple);
}
.form-success i { font-style: normal; color: var(--purple); font-weight: 800; }
.form-success[hidden] { display: none; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  position: relative;
  background: var(--white);
  border-top: 1px solid var(--hairline);
  padding-top: clamp(3.5rem, 7vw, 5.5rem);
  overflow: hidden;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 3.2fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  padding-bottom: clamp(3rem, 6vw, 4.5rem);
}
.footer-logo { height: 34px; width: auto; margin-bottom: 1.3rem; }
@media (min-width: 761px) {
  .footer-logo { 
    height: 120px !important;
    max-height: 120px !important;
    width: auto !important;
  }
}
.footer-tagline {
  font-size: .95rem;
  font-weight: 600;
  line-height: 1.55;
  color: var(--gray);
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(1.4rem, 3vw, 2.5rem);
}
.footer-col { display: flex; flex-direction: column; gap: .65rem; }
.footer-heading {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: .5rem;
  padding-bottom: .6rem;
  border-bottom: 1px solid var(--hairline);
}
.footer-col a {
  font-size: .84rem;
  font-weight: 500;
  color: var(--gray);
  transition: color .25s, padding-left .25s var(--ease);
}
.footer-col a:hover { color: var(--purple); padding-left: .3rem; }
.footer-col .ext { font-style: normal; font-size: .7rem; color: var(--purple); }

.footer-contact {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
}
.footer-contact svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
  color: var(--purple);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 2.5rem;
  justify-content: space-between;
  padding-block: 1.6rem clamp(4rem, 9vw, 7rem);
  border-top: 1px solid var(--hairline);
  font-size: .74rem;
  color: var(--gray);
}
.footer-sign { font-weight: 700; color: var(--ink); }

.footer-watermark {
  position: absolute;
  bottom: -.24em;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(5rem, 15vw, 13rem);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(150,106,229,.18);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 1080px) {
  .main-nav { display: none; }
  .menu-toggle { display: flex; }

  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { max-width: 560px; }
  .seal-360 { top: -44px; right: -14px; left: auto; width: 100px; height: 100px; }
  .audit-head { padding: .9rem 6rem .9rem 1.2rem; }

  .section-intro { grid-template-columns: 1fr; align-items: start; }
  .about-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: repeat(3, 1fr); }
  .cta-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .header-actions .btn { display: none; }

  .modules-grid { grid-template-columns: 1fr; }
  .module-card { border-right: 0 !important; }
  .module-card:nth-last-child(2) { border-bottom: 1px solid var(--hairline); }

  .context-grid { grid-template-columns: 1fr; }
  .context-col p { max-width: none; }

  .about-sticky { position: static; }
  .mv-grid { grid-template-columns: 1fr; }

  /* citação do CEO empilha: retrato acima, texto abaixo */
  .ceo-quote { grid-template-columns: 1fr; }
  .ceo-portrait { height: 300px; }
  .ceo-portrait img { object-position: center 20%; }

  .personas-grid { grid-template-columns: 1fr; }

  .diff-intro { grid-template-columns: 1fr; }
  .diff-row {
    grid-template-columns: 1fr;
    gap: .6rem;
  }
  .diff-num { font-size: 1.6rem; }

  .article-row {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "cat arrow"
      "title arrow"
      "meta arrow";
    row-gap: .6rem;
  }
  .article-cat { grid-area: cat; justify-self: start; }
  .article-title { grid-area: title; }
  .article-meta { grid-area: meta; }
  .article-arrow { grid-area: arrow; align-self: center; }

  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: .4rem; }

  .audit-panel { box-shadow: 14px 14px 0 var(--tint-2); }
}

/* ============================================================
   Fade suave das imagens ao decodificar (evita "pop" abrupto)
   ============================================================ */
.module-media img,
.persona-media img,
.diff-visual img,
.ceo-portrait img {
  opacity: 0;
  transition: opacity .7s var(--ease), transform .6s var(--ease);
}
.module-media img.is-loaded,
.persona-media img.is-loaded,
.diff-visual img.is-loaded,
.ceo-portrait img.is-loaded {
  opacity: 1;
}
@media (prefers-reduced-motion: reduce) {
  .module-media img,
  .persona-media img,
  .diff-visual img,
  .ceo-portrait img { opacity: 1; transition: none; }
}


/* ============================================================
   VALIDA360 WORDPRESS / ELEMENTOR OVERRIDES
   These rules neutralize conflicts from Hello Elementor theme
   and Elementor plugin defaults, ensuring pixel-perfect rendering
   matching the original static HTML design.
   ============================================================ */

/* --- Fonte global --- */
body,
body *:not(script):not(style) {
  font-family: 'Manrope', system-ui, sans-serif !important;
}

/* --- Elementor wrappers: remove padding/margin/gap defaults --- */
.elementor-210 .e-con.e-parent,
.elementor-210 .e-con,
.elementor-212 .e-con.e-parent,
.elementor-212 .e-con {
  padding: 0 !important;
  margin: 0 !important;
  gap: 0 !important;
  min-height: 0 !important;
  width: 100% !important;
  max-width: none !important;
  flex-direction: column !important;
}
.elementor-210 .elementor-widget,
.elementor-212 .elementor-widget {
  margin-block-end: 0 !important;
  width: 100% !important;
}
.elementor-210 .elementor-widget-container,
.elementor-212 .elementor-widget-container {
  padding: 0 !important;
  margin: 0 !important;
}

/* --- Header: fix from Hello Elementor theme.css overrides --- */
body .site-header {
  display: block !important;
  position: fixed !important;
  inset: 0 0 auto 0 !important;
  z-index: 900 !important;
  background: rgba(255, 255, 255, .55) !important;
  backdrop-filter: blur(18px) saturate(160%) !important;
  -webkit-backdrop-filter: blur(18px) saturate(160%) !important;
  border-bottom: 1px solid transparent !important;
  will-change: transform !important;
  transition: transform .45s var(--ease),
              border-color .3s,
              box-shadow .3s,
              background .3s !important;
  padding: 0 !important;
  margin: 0 !important;
  max-width: none !important;
}
body .site-header.is-scrolled {
  border-bottom-color: var(--hairline) !important;
  box-shadow: 0 8px 30px -18px rgba(3, 3, 3, .25) !important;
}
body .site-header.is-hidden {
  transform: translateY(-100%) !important;
}
body .site-header .header-inner {
  display: flex !important;
  flex-wrap: nowrap !important;
  justify-content: space-between !important;
  align-items: center !important;
  gap: 2rem !important;
  height: 76px !important;
  max-width: var(--w-container) !important;
  margin-inline: auto !important;
  padding-inline: var(--pad-x) !important;
  padding-block: 0 !important;
}

/* Prevent Elementor container from creating stacking context for fixed header */
body .elementor-210 .elementor-element-15eeb239,
body .elementor-212 .elementor-element-c001_con,
body .elementor-210 .header-section,
body .elementor-212 .header-section {
  position: static !important;
  transform: none !important;
  will-change: auto !important;
  filter: none !important;
  overflow: visible !important;
  contain: none !important;
}

/* --- Footer: fix from Hello Elementor theme.css overrides --- */
body .site-footer {
  display: block !important;
  position: relative !important;
  background: var(--white) !important;
  border-top: 1px solid var(--hairline) !important;
  padding-top: clamp(3.5rem, 7vw, 5.5rem) !important;
  padding-bottom: 0 !important;
  overflow: hidden !important;
  max-width: none !important;
  width: 100% !important;
}

body .site-footer .container {
  max-width: var(--w-container) !important;
  margin-inline: auto !important;
  padding-inline: var(--pad-x) !important;
}

/* ============================================================
   VALIDA360 — LÓGICA DE COMPLIANCE TIMELINE E FAQ ACORDEÃO
   ============================================================ */

/* --- Linha do Tempo --- */
.steps-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  position: relative;
  margin-top: 48px;
}
.steps-timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--hairline);
  z-index: 1;
}
@media (max-width: 991px) {
  .steps-timeline::before {
    display: none;
  }
}
.timeline-step {
  position: relative;
  z-index: 2;
  background: var(--white);
  padding: 24px;
  border: 1px solid var(--hairline);
  border-radius: 8px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.timeline-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px -10px rgba(3, 3, 3, 0.1);
  border-color: var(--purple);
}
.step-badge {
  width: 48px;
  height: 48px;
  background: var(--tint-2);
  color: var(--purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.25rem;
  margin-bottom: 20px;
  border: 2px solid var(--white);
  box-shadow: 0 0 0 1px var(--purple);
  transition: background 0.3s, color 0.3s;
}
.timeline-step:hover .step-badge {
  background: var(--purple);
  color: var(--white);
}
.step-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--deep);
  margin-bottom: 10px;
}
.step-desc {
  font-size: 0.95rem;
  color: var(--ink);
  opacity: 0.85;
  line-height: 1.6;
}

/* --- Acordeão FAQ Premium --- */
#faq details {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 8px;
  margin-bottom: 16px;
  padding: 20px 24px;
  transition: all 0.3s var(--ease);
}
#faq details:hover {
  border-color: var(--purple);
  box-shadow: 0 8px 24px -10px rgba(3, 3, 3, 0.08);
}
#faq details[open] {
  border-color: var(--purple);
  background: var(--tint);
  box-shadow: 0 12px 30px -15px rgba(3, 3, 3, 0.1);
}
#faq summary {
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--deep);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
#faq summary::-webkit-details-marker {
  display: none;
}
#faq summary .faq-icon {
  font-size: 1.5rem;
  color: var(--purple);
  font-weight: 300;
  transition: transform 0.3s var(--ease);
}
#faq details[open] summary .faq-icon {
  transform: rotate(45deg);
}
#faq .faq-content {
  margin-top: 16px;
  color: var(--ink);
  line-height: 1.7;
  opacity: 0.9;
  border-top: 1px solid var(--hairline);
  padding-top: 16px;
  animation: faqFadeIn 0.4s var(--ease);
}
@keyframes faqFadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- Hover do Bloco 01 (Dores em seção escura) --- */
.section-dark .diff-row:hover {
  background: rgba(255, 255, 255, 0.04) !important;
  padding-left: 1.5rem !important;
}
.section-dark .diff-row:hover .diff-num {
  color: var(--purple) !important;
}
.section-dark .diff-row:hover .diff-title {
  color: var(--white) !important;
}
.section-dark .diff-row:hover .diff-text {
  color: var(--white) !important;
}

/* --- Bloco 5: Funcionalidades Card Grid --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 48px;
}
.feature-item-card {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 8px;
  padding: 32px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feature-item-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px -10px rgba(3, 3, 3, 0.08);
  border-color: var(--purple);
}
.feature-icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 6px;
  background: var(--tint);
  color: var(--purple);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  transition: background 0.3s, color 0.3s;
}
.feature-item-card:hover .feature-icon-wrapper {
  background: var(--purple);
  color: var(--white);
}
.feature-card-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--deep);
  margin: 0;
  letter-spacing: -0.015em;
}
.feature-card-desc {
  font-size: 0.95rem;
  color: var(--ink);
  opacity: 0.85;
  line-height: 1.6;
  margin: 0;
}

/* --- Bloco 6: Security Glassmorphic Cards --- */
.security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 48px;
}
.security-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 32px;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.security-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--purple);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px -15px rgba(255, 255, 255, 0.1);
}
.security-icon {
  font-size: 2rem;
  color: var(--purple);
  margin-bottom: 16px;
  display: block;
}
.security-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.security-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  margin: 0;
}

/* --- Linha do Tempo Vertical (Bloco 4) --- */
.timeline-vertical {
  display: flex;
  flex-direction: column;
  position: relative;
  margin-top: 16px;
  padding-left: 32px;
  border-left: 2px solid var(--hairline);
}
.timeline-vertical-step {
  position: relative;
  padding-bottom: 40px;
}
.timeline-vertical-step:last-child {
  padding-bottom: 0;
}
.timeline-vertical-node {
  position: absolute;
  left: -43px;
  top: 4px;
  width: 20px;
  height: 20px;
  background: var(--white);
  border: 3px solid var(--purple);
  border-radius: 50%;
  z-index: 2;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.timeline-vertical-step:hover .timeline-vertical-node {
  background: var(--purple);
  transform: scale(1.2);
}
.timeline-vertical-content {
  transition: transform 0.3s var(--ease);
}
.timeline-vertical-step:hover .timeline-vertical-content {
  transform: translateX(8px);
}
.timeline-vertical-num {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--purple);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 4px;
}
.timeline-vertical-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--deep);
  margin-bottom: 8px;
}
.timeline-vertical-desc {
  font-size: 0.95rem;
  color: var(--ink);
  opacity: 0.85;
  line-height: 1.6;
  max-width: 65ch;
}


/* Fix Elementor fixed header offset bugs */
body .elementor-widget:has(#siteHeader),
body .elementor-column:has(#siteHeader),
body .elementor-section:has(#siteHeader) {
  transform: none !important;
  animation: none !important;
  padding: 0 !important;
  margin: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
}

#siteHeader {
  position: fixed !important;
  left: 0 !important;
  right: 0 !important;
  width: 100vw !important;
  max-width: 100vw !important;
  box-sizing: border-box !important;
}

html, body {
  overflow-x: hidden !important;
}

/* Forçar alinhamento do menu hamburger no Elementor */
.menu-toggle {
  padding: 0 !important;
  align-items: center !important;
  justify-content: center !important;
}
.menu-toggle span {
  margin: 0 !important;
}

/* ============================================================
   MATRIZ GRC & MÉTODO VALIDA360 (PRANCHA 07)
   ============================================================ */
.grc-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-block: clamp(2.5rem, 5vw, 4rem);
}
@media (max-width: 900px) {
  .grc-pillars-grid {
    grid-template-columns: 1fr;
  }
}
.grc-pillar-card {
  background: var(--white);
  border: 1px solid var(--hairline);
  padding: 2.2rem 1.8rem;
  border-radius: 4px;
  box-shadow: 0 10px 30px -15px rgba(3, 3, 3, 0.06);
  transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
}
.grc-pillar-card:hover {
  transform: translateY(-4px);
  border-color: var(--purple);
  box-shadow: 0 16px 40px -15px rgba(150, 106, 229, 0.2);
}
.pillar-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.pillar-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}
.pillar-g { background: #6366f1; }
.pillar-r { background: #8b5cf6; }
.pillar-c { background: var(--purple); }

.pillar-header h3 {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #030303;
  margin: 0;
}
.pillar-desc {
  font-size: 0.88rem;
  color: #555555;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.pillar-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.pillar-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #030303;
}
.pillar-list li i {
  font-style: normal;
  color: var(--purple);
  font-weight: 800;
}

.metodo-valida360 {
  background: var(--deep);
  color: var(--white);
  padding: 2.2rem 2.5rem;
  border-radius: 4px;
  margin-top: 2rem;
}
.metodo-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--hairline-l);
  padding-bottom: 1rem;
  margin-bottom: 1.8rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.metodo-title {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--purple);
}
.metodo-sub {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}
.metodo-steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.metodo-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--hairline-l);
  padding: 1.2rem 1.6rem;
  border-radius: 4px;
  flex: 1;
  min-width: 130px;
  text-align: center;
}
.step-num {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--purple);
  margin-bottom: 0.3rem;
}
.step-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
}
.metodo-arrow {
  color: var(--purple);
  font-size: 1.4rem;
  font-weight: 800;
}

.metodo-step {
  cursor: pointer;
  transition: all 0.3s ease;
}
.metodo-step:hover {
  background: rgba(255, 255, 255, 0.12) !important;
  transform: translateY(-2px);
  border-color: var(--purple) !important;
}
.metodo-step.is-active {
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: var(--purple) !important;
  box-shadow: 0 0 12px rgba(150, 106, 229, 0.4);
}

/* ============================================================
   MOBILE MENU — CORREÇÕES COMPLEMENTARES
   Garante que position:fixed funcione corretamente no menu mobile
   mesmo quando o elemento está dentro de containers Elementor.
   ============================================================ */

/* Quando o menu mobile e o header são movidos para o <body> pelo JS,
   eles precisam ser filhos diretos do body para que position:fixed
   funcione corretamente. Estas regras garantem isso. */
body > #siteHeader,
body > .site-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: auto !important;
  z-index: 900 !important;
  transform: none;
}

body > #siteHeader.is-hidden,
body > .site-header.is-hidden {
  transform: translateY(-100%) !important;
}

body > #mobileMenu,
body > .mobile-menu {
  position: fixed !important;
  inset: 0 !important;
  z-index: 950 !important;
  transform: none !important;
}

/* Botão de fechar (X) visível quando menu está aberto */
.mobile-menu.is-open .menu-toggle-close {
  display: flex;
}

/* Impede que qualquer ancestral Elementor quebre position:fixed */
.elementor-section-wrap,
.elementor-page-content,
.e-con.e-parent,
.elementor > .elementor-inner {
  transform: none !important;
  will-change: auto !important;
  filter: none !important;
  contain: none !important;
}

/* Garante que o menu-toggle seja visível no breakpoint correto */
@media (max-width: 1080px) {
  .menu-toggle {
    display: flex !important;
  }
  .main-nav {
    display: none !important;
  }
  /* Esconde o botão CTA do header em telas muito pequenas */
  @media (max-width: 760px) {
    .header-actions > .btn {
      display: none !important;
    }
  }
}

/* Garante que o menu-toggle tenha alvo de toque adequado em mobile */
@media (hover: none) and (pointer: coarse) {
  .menu-toggle {
    min-width: 44px;
    min-height: 44px;
  }
}

/* Overlay do menu mobile: garante que links fiquem acessíveis */
.mobile-menu[aria-hidden="true"] {
  pointer-events: none !important;
}
.mobile-menu[aria-hidden="false"],
.mobile-menu.is-open {
  pointer-events: auto !important;
}

/* ============================================================
   PROGRAMA PSICOSSOCIAL (page-id-221) — CORREÇÕES MOBILE
   Resolve grids de inline-style que não tinham breakpoints.
   ============================================================ */

@media (max-width: 1080px) {
  /* ── Hero ─────────────────────────────── */
  .page-id-221 .hero .container.hero-inner,
  .page-id-221 section#hero .hero-inner,
  .page-id-221 section#hero [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
    gap: 40px !important;
  }

  /* Título do hero menor em tablet */
  .page-id-221 h1.hero-title,
  .page-id-221 section#hero h1 {
    font-size: 2.8rem !important;
  }
}

@media (max-width: 760px) {
  /* ── Hero ─────────────────────────────── */
  .page-id-221 section#hero [style*="grid-template-columns: 1fr 1fr"],
  .page-id-221 section#hero .container[style*="grid"] {
    display: flex !important;
    flex-direction: column !important;
    gap: 32px !important;
    min-height: auto !important;
    padding-top: 20px !important;
  }

  .page-id-221 section#hero h1 {
    font-size: clamp(2rem, 7vw, 2.6rem) !important;
    margin-bottom: 16px !important;
  }

  .page-id-221 section#hero .hero-ctas {
    flex-direction: column !important;
    gap: 12px !important;
  }

  .page-id-221 section#hero .hero-ctas a {
    width: 100% !important;
    text-align: center !important;
    justify-content: center !important;
  }

  /* Esconde o visual/painel decorativo do hero em mobile para economizar espaço */
  .page-id-221 section#hero .hero-visual {
    display: none !important;
  }

  /* ── Seção 01: Desafio & Solução (2 colunas inline) ── */
  .page-id-221 section#contexto [style*="grid-template-columns: 1fr 1fr"],
  .page-id-221 section#contexto [style*="display: grid"] {
    display: flex !important;
    flex-direction: column !important;
    gap: 32px !important;
  }

  /* Remove padding-right da coluna de texto */
  .page-id-221 section#contexto [style*="padding-right: 40px"] {
    padding-right: 0 !important;
  }

  /* Remove align-self: flex-end nos cards de problema */
  .page-id-221 section#contexto [style*="align-self: flex-end"] {
    align-self: stretch !important;
    width: 100% !important;
  }

  /* ── Seção 02: Fatores Avaliados (sticky + flex-wrap) ── */
  .page-id-221 section#fatores [style*="display: flex"],
  .page-id-221 section#fatores [style*="flex-wrap: wrap"] {
    flex-direction: column !important;
    gap: 32px !important;
  }

  /* Desabilita sticky no mobile (ficaria preso em cima indefinidamente) */
  .page-id-221 section#fatores [style*="position: sticky"] {
    position: static !important;
  }

  /* Coluna flex: 2 (lista de fatores) fica 100% */
  .page-id-221 section#fatores [style*="flex: 2"] {
    flex: 1 !important;
    width: 100% !important;
  }

  /* Cada card de fator: padding menor em mobile */
  .page-id-221 section#fatores [style*="padding: 32px"][style*="flex"] {
    padding: 20px !important;
    gap: 16px !important;
  }

  /* Número decorativo menor */
  .page-id-221 section#fatores [style*="font-size: 2.5rem"] {
    font-size: 1.8rem !important;
    min-width: 44px !important;
  }

  /* ── Seção 03: Benefícios & Funcionalidades ── */
  .page-id-221 section#funcionalidades [style*="grid-template-columns: repeat(auto-fit"] {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  /* ── Seção 04: Como Funciona (dark grid) ── */
  .page-id-221 section#fluxo [style*="grid-template-columns: repeat(auto-fit"] {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  /* ── Seção 05: O que evitar ── */
  .page-id-221 section#evitar [style*="grid-template-columns: repeat(auto-fit"] {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  /* ── Seção 06: LGPD/Confidencialidade ── */
  .page-id-221 section#confidencialidade [style*="padding: 48px"] {
    padding: 24px !important;
  }

  .page-id-221 section#confidencialidade [style*="grid-template-columns: repeat(auto-fit"] {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  /* ── Seção 07: Intervenções ── */
  .page-id-221 section#acoes [style*="grid-template-columns: repeat(auto-fit"] {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  /* ── Seção CTA / Contato ── */
  .page-id-221 section#contato .cta-grid {
    grid-template-columns: 1fr !important;
  }

  /* ── Títulos gerais menores em mobile ── */
  .page-id-221 .title-xl {
    font-size: clamp(1.6rem, 5.5vw, 2.2rem) !important;
    line-height: 1.2 !important;
  }

  .page-id-221 h2 {
    font-size: clamp(1.5rem, 5vw, 2rem) !important;
  }

  /* Espaçamento de seções menor em mobile */
  .page-id-221 .section {
    padding-block: clamp(3rem, 8vw, 5rem) !important;
  }

  /* ── Inline styles gerais de grids com 2 colunas ── */
  /* Captura qualquer grid 1fr 1fr que não foi capturado acima */
  .page-id-221 [style*="grid-template-columns: 1fr 1fr"],
  .page-id-221 [style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
}
