/* ============================================
   VIRTUS DH — Folha de Estilos Principal
   Versão: 1.0
   Organização: variáveis → reset → componentes
   ============================================ */

/* ── VARIÁVEIS DE DESIGN ── */

:root {
  --navy: #0f1d2e;
  --navy-mid: #162336;
  --navy-light: #1e3352;
  --gold: #c9a84c;
  --gold-light: #e2c47a;
  --gold-pale: #f5e9c8;
  --white: #ffffff;
  --off-white: #f7f3ec;
  --text-muted: rgba(255, 255, 255, 0.55);
  --text-mid: rgba(255, 255, 255, 0.75);
}

/* ── RESET ── */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Jost", sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
}

/* ══════════════════════════════════════════
   NAVEGAÇÃO
══════════════════════════════════════════ */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 3rem;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(15, 29, 46, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 0.5px solid rgba(201, 168, 76, 0.2);
  transition: background 0.3s;
}

.nav-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 400;
}

.nav-links a:hover {
  color: var(--gold);
}

/* Menu mobile (hamburger) */

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  transition: all 0.3s;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Menu mobile expandido */

.nav-mobile {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: rgba(15, 29, 46, 0.98);
  backdrop-filter: blur(12px);
  border-bottom: 0.5px solid rgba(201, 168, 76, 0.2);
  padding: 1.5rem 2rem;
  z-index: 99;
  flex-direction: column;
  gap: 1.2rem;
}

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

.nav-mobile a {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid);
  text-decoration: none;
  padding: 0.5rem 0;
  border-bottom: 0.5px solid rgba(201, 168, 76, 0.1);
}

.nav-mobile a:hover {
  color: var(--gold);
}

.nav-cta {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 9px 22px;
  border: 0.5px solid var(--gold);
  color: var(--gold);
  text-decoration: none;
  transition: all 0.25s;
  font-weight: 400;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--navy);
}

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */

#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 60% 50% at 50% 60%,
      rgba(201, 168, 76, 0.07) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 40% 30% at 20% 20%,
      rgba(201, 168, 76, 0.04) 0%,
      transparent 60%
    );
}

.hero-lines {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0.04;
}

.hero-lines::before {
  content: "";
  position: absolute;
  top: -50%;
  left: 30%;
  width: 0.5px;
  height: 200%;
  background: var(--gold);
  transform: rotate(15deg);
}

.hero-lines::after {
  content: "";
  position: absolute;
  top: -50%;
  left: 65%;
  width: 0.5px;
  height: 200%;
  background: var(--gold);
  transform: rotate(15deg);
}

.hero-tag {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}

.hero-logo-v {
  width: 160px;
  height: auto;
  margin: 0 auto 0.5rem;
  display: block;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s forwards;
}

h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 300;
  letter-spacing: 0.18em;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s forwards;
}

.hero-tagline {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.65s forwards;
}

.hero-tagline span {
  color: var(--gold);
  margin: 0 0.6rem;
}

.hero-headline {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 300;
  font-style: italic;
  color: var(--text-mid);
  max-width: 680px;
  line-height: 1.6;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.8s forwards;
}

.hero-headline strong {
  font-style: normal;
  font-weight: 500;
  color: var(--white);
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 1s forwards;
}

/* ══════════════════════════════════════════
   BOTÕES
══════════════════════════════════════════ */

.btn-primary {
  padding: 14px 36px;
  background: var(--gold);
  color: var(--navy);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.25s;
  font-family: "Jost", sans-serif;
}

.btn-primary:hover {
  background: var(--gold-light);
}

.btn-secondary {
  padding: 14px 36px;
  border: 0.5px solid rgba(201, 168, 76, 0.5);
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 400;
  transition: all 0.25s;
  font-family: "Jost", sans-serif;
}

.btn-secondary:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
}

/* ══════════════════════════════════════════
   SEÇÕES — BASE COMPARTILHADA
══════════════════════════════════════════ */

section {
  padding: 7rem 2rem;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-label::before {
  content: "";
  display: block;
  width: 30px;
  height: 0.5px;
  background: var(--gold);
}

.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-body {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-mid);
  max-width: 640px;
  font-weight: 300;
}

.gold-line {
  width: 60px;
  height: 0.5px;
  background: var(--gold);
  margin: 2rem 0;
}

/* ══════════════════════════════════════════
   PROBLEMA — NR-1
══════════════════════════════════════════ */

#problema {
  background: var(--navy-mid);
}

.nr1-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 4rem;
  align-items: start;
}

.nr1-quote {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  color: var(--gold-light);
  border-left: 1.5px solid var(--gold);
  padding-left: 1.5rem;
  margin-bottom: 2.5rem;
}

.alert-cards {
  display: grid;
  gap: 12px;
}

.alert-card {
  padding: 1.2rem 1.5rem;
  border: 0.5px solid rgba(201, 168, 76, 0.2);
  border-left: 2px solid var(--gold);
  background: rgba(201, 168, 76, 0.04);
}

.alert-card-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 4px;
  letter-spacing: 0.05em;
}

.alert-card-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  font-weight: 300;
}

.nr1-stats {
  display: grid;
  gap: 1.5rem;
}

.stat-block {
  padding: 2rem;
  border: 0.5px solid rgba(201, 168, 76, 0.25);
  background: rgba(201, 168, 76, 0.03);
  text-align: center;
}

.stat-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 56px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  font-weight: 300;
}

/* ══════════════════════════════════════════
   SOLUÇÃO — TRÊS EIXOS
══════════════════════════════════════════ */

#solucao {
  background: var(--navy);
}

.tres-eixos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  margin-top: 4rem;
  background: rgba(201, 168, 76, 0.15);
}

.eixo {
  background: var(--navy);
  padding: 3rem 2.5rem;
  position: relative;
  transition: background 0.3s;
}

.eixo:hover {
  background: var(--navy-light);
}

.eixo-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 80px;
  font-weight: 300;
  color: rgba(201, 168, 76, 0.1);
  line-height: 1;
  margin-bottom: 1.5rem;
  transition: color 0.3s;
}

.eixo:hover .eixo-num {
  color: rgba(201, 168, 76, 0.2);
}

.eixo-icon {
  width: 40px;
  height: 40px;
  border: 0.5px solid rgba(201, 168, 76, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.eixo-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.eixo-title {
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.eixo-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  font-weight: 300;
}

.eixo-items {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.eixo-item {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.eixo-item::before {
  content: "·";
  color: var(--gold);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: -2px;
}

.diferencial-strip {
  margin-top: 4rem;
  padding: 3rem;
  border: 0.5px solid rgba(201, 168, 76, 0.3);
  display: flex;
  gap: 3rem;
  align-items: center;
}

.dif-vs {
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  color: rgba(201, 168, 76, 0.3);
  font-weight: 300;
  flex-shrink: 0;
}

.dif-col {
  flex: 1;
}

.dif-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.dif-label.neg {
  color: rgba(255, 255, 255, 0.35);
}

.dif-label.pos {
  color: var(--gold);
}

.dif-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 300;
  line-height: 1.5;
}

.dif-text.neg {
  color: rgba(255, 255, 255, 0.4);
  font-style: italic;
}

.dif-text.pos {
  color: var(--white);
}

/* ══════════════════════════════════════════
   PROCESSO
══════════════════════════════════════════ */

#processo {
  background: var(--navy-mid);
}

.processo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 4rem;
  background: rgba(201, 168, 76, 0.12);
}

.processo-step {
  background: var(--navy-mid);
  padding: 2rem 1.5rem;
  position: relative;
  transition: background 0.25s;
}

.processo-step:hover {
  background: rgba(201, 168, 76, 0.05);
}

.step-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 42px;
  font-weight: 300;
  color: rgba(201, 168, 76, 0.2);
  line-height: 1;
  margin-bottom: 1rem;
}

.step-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 0.6rem;
  letter-spacing: 0.05em;
}

.step-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
}

.processo-grid-2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 1px;
  background: rgba(201, 168, 76, 0.12);
}

.limite-note {
  margin-top: 3rem;
  padding: 1.5rem 2rem;
  border: 0.5px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
  font-style: italic;
}

.limite-note strong {
  font-style: normal;
  color: var(--gold);
  font-weight: 400;
}

/* ══════════════════════════════════════════
   FUNDADORAS
══════════════════════════════════════════ */

#fundadoras {
  background: var(--navy);
}

.fundadoras-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 4rem;
  background: rgba(201, 168, 76, 0.15);
}

.fundadora-card {
  background: var(--navy);
  padding: 3.5rem 3rem;
}

.fundadora-img-placeholder {
  width: 100%;
  height: 320px;
  border: 0.5px solid rgba(201, 168, 76, 0.4);
  background: rgba(201, 168, 76, 0.05);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.fundadora-img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.fundadora-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.fundadora-role {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.fundadora-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 2rem;
}

.fundadora-tag {
  font-size: 11px;
  padding: 4px 12px;
  border: 0.5px solid rgba(201, 168, 76, 0.3);
  color: var(--gold);
  letter-spacing: 0.06em;
}

.fundadora-bio {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.85;
  font-weight: 300;
}

.complementaridade {
  margin-top: 4rem;
  padding: 3.5rem 3rem;
  border: 0.5px solid rgba(201, 168, 76, 0.2);
  background: rgba(201, 168, 76, 0.03);
  text-align: center;
}

.comp-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 300;
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}

.comp-text {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.85;
  max-width: 640px;
  margin: 0 auto;
  font-weight: 300;
}

/* ══════════════════════════════════════════
   PARA QUEM
══════════════════════════════════════════ */

#paraquem {
  background: var(--navy-mid);
}

.sinais-intro {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 300;
  font-style: italic;
  color: var(--text-mid);
  max-width: 700px;
  line-height: 1.6;
  margin-bottom: 3rem;
}

.sinais-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 3rem;
}

.sinal-card {
  padding: 1.8rem 1.5rem;
  border: 0.5px solid rgba(201, 168, 76, 0.18);
  background: rgba(201, 168, 76, 0.03);
  transition:
    border-color 0.25s,
    background 0.25s;
}

.sinal-card:hover {
  border-color: rgba(201, 168, 76, 0.4);
  background: rgba(201, 168, 76, 0.06);
}

.sinal-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 1rem;
}

.sinal-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.2;
}

.sinal-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.5rem;
  letter-spacing: 0.04em;
}

.sinal-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  font-weight: 300;
}

/* ══════════════════════════════════════════
   PARCEIROS
══════════════════════════════════════════ */

#parceiros {
  background: var(--navy);
}

.parceiros-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.parceiros-highlight {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 300;
  line-height: 1.5;
  color: var(--white);
  margin-bottom: 2rem;
}

.parceiros-highlight em {
  font-style: italic;
  color: var(--gold);
}

.beneficios {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.beneficio {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.beneficio-bullet {
  width: 20px;
  height: 20px;
  border: 0.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.beneficio-bullet::after {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--gold);
}

.beneficio-text {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
  font-weight: 300;
}

.form-card {
  padding: 3rem;
  border: 0.5px solid rgba(201, 168, 76, 0.3);
  background: rgba(201, 168, 76, 0.03);
}

.form-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.form-sub {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-weight: 300;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.form-group input,
.form-group select {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 0.5px solid rgba(201, 168, 76, 0.25);
  color: var(--white);
  padding: 12px 14px;
  font-size: 14px;
  font-family: "Jost", sans-serif;
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--gold);
}

.form-group input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.form-group select option {
  background: var(--navy);
}

.btn-form {
  width: 100%;
  padding: 14px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: background 0.2s;
}

.btn-form:hover {
  background: var(--gold-light);
}

/* ══════════════════════════════════════════
   CONTATO
══════════════════════════════════════════ */

#contato {
  background: var(--navy-mid);
}

.contato-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 4rem;
  background: rgba(201, 168, 76, 0.15);
}

.contato-card {
  background: var(--navy-mid);
  padding: 3rem 2.5rem;
  text-align: center;
  transition: background 0.25s;
}

.contato-card:hover {
  background: rgba(201, 168, 76, 0.05);
}

.contato-icon {
  width: 48px;
  height: 48px;
  border: 0.5px solid rgba(201, 168, 76, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.contato-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.contato-type {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.contato-value {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--gold);
  text-decoration: none;
  display: block;
  margin-bottom: 0.25rem;
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */

footer {
  padding: 3rem 2rem;
  border-top: 0.5px solid rgba(201, 168, 76, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  color: var(--gold);
  letter-spacing: 0.15em;
}

.footer-tagline {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.12em;
}

.footer-copy {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.25);
}

/* ══════════════════════════════════════════
   ANIMAÇÕES
══════════════════════════════════════════ */

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

@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
}

/* ── Scroll Reveal ── */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ══════════════════════════════════════════
   RESPONSIVIDADE
══════════════════════════════════════════ */

@media (min-width: 901px) {
  .fundadora-img-placeholder {
    height: 420px;
  }
}

@media (min-width: 1200px) {
  .fundadora-img-placeholder {
    height: 480px;
  }
}

@media (max-width: 900px) {
  nav {
    padding: 0 1.5rem;
  }
  .nav-links {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .nr1-grid,
  .parceiros-inner,
  .fundadoras-grid {
    grid-template-columns: 1fr;
  }
  .tres-eixos,
  .processo-grid,
  .processo-grid-2 {
    grid-template-columns: 1fr;
  }
  .sinais-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contato-grid {
    grid-template-columns: 1fr 1fr;
  }
  .diferencial-strip {
    flex-direction: column;
    gap: 1.5rem;
  }
  section {
    padding: 5rem 1.5rem;
  }
  .parceiros-inner {
    gap: 3rem;
  }
}

@media (max-width: 600px) {
  .sinais-grid {
    grid-template-columns: 1fr;
  }
  .hero-btns {
    flex-direction: column;
    align-items: center;
  }
  .contato-grid {
    grid-template-columns: 1fr;
  }
  .fundadora-card {
    padding: 2.5rem 1.5rem;
  }
  footer {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
}

/* ══════════════════════════════════════════
   CANAL VIRTUS — PÁGINAS DE FORMULÁRIO
══════════════════════════════════════════ */

.page-header {
  padding-top: 9rem;
  text-align: center;
}

.page-header .section-inner {
  max-width: 720px;
}

.voltar-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 2rem;
  transition: color 0.2s;
}

.voltar-link:hover {
  color: var(--gold);
}

.page-header .section-body {
  max-width: 100%;
  margin: 0 auto 1rem;
}

.aviso-institucional {
  font-size: 13px;
  color: var(--text-muted);
  border-left: 2px solid var(--gold);
  padding-left: 1rem;
  margin: 1.5rem auto 0;
  max-width: 560px;
  text-align: left;
  font-weight: 300;
  line-height: 1.7;
}

.canal-form-wrap {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 2rem 6rem;
}

.form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 0.5px solid rgba(201, 168, 76, 0.25);
  color: var(--white);
  padding: 12px 14px;
  font-size: 14px;
  font-family: "Jost", sans-serif;
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
  min-height: 110px;
}

.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.form-group-label-only {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
  display: block;
}

.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.radio-option {
  flex: 1;
  min-width: 100px;
}

.radio-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.radio-option label {
  display: block;
  text-align: center;
  padding: 12px 10px;
  border: 0.5px solid rgba(201, 168, 76, 0.25);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-mid);
  font-size: 13px;
  font-family: "Jost", sans-serif;
  cursor: pointer;
  transition: all 0.2s;
  text-transform: none;
  letter-spacing: normal;
  margin-bottom: 0;
}

.radio-option input:checked + label {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.12);
  color: var(--gold);
}

.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.checkbox-option input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.checkbox-option label {
  display: block;
  text-align: left;
  padding: 10px 14px;
  border: 0.5px solid rgba(201, 168, 76, 0.25);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-mid);
  font-size: 13px;
  font-family: "Jost", sans-serif;
  cursor: pointer;
  transition: all 0.2s;
  text-transform: none;
  letter-spacing: normal;
  margin-bottom: 0;
}

.checkbox-option input:checked + label {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.12);
  color: var(--gold);
}

.honeypot-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-msg {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
  border: 0.5px solid rgba(201, 168, 76, 0.3);
  background: rgba(201, 168, 76, 0.03);
}

.form-msg.visible {
  display: block;
}

.form-msg-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 1.2rem;
  color: var(--gold);
}

.form-msg-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.form-msg-text {
  font-size: 14px;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.7;
}

.form-erro {
  display: none;
  font-size: 13px;
  color: #e2937a;
  margin-top: 1rem;
  text-align: center;
}

.form-erro.visible {
  display: block;
}

.btn-form:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ══════════════════════════════════════════
   CANAL VIRTUS — CHAMADA NA HOME
══════════════════════════════════════════ */

#canalVirtus {
  background: var(--navy-mid);
}

.canal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 3.5rem;
  background: rgba(201, 168, 76, 0.15);
}

.canal-card {
  display: block;
  background: var(--navy-mid);
  padding: 3rem 2.2rem;
  text-align: center;
  text-decoration: none;
  transition: background 0.25s;
}

.canal-card:hover {
  background: rgba(201, 168, 76, 0.06);
}

.canal-icon {
  width: 48px;
  height: 48px;
  border: 0.5px solid rgba(201, 168, 76, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.canal-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.4;
}

.canal-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 21px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.7rem;
}

.canal-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 1.2rem;
}

.canal-arrow {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

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

/* ══════════════════════════════════════════
   REBRANDING v2.0 — ADIÇÕES
   Selo NR-1 + refinamentos premium
   (bloco isolado: nada acima foi alterado)
══════════════════════════════════════════ */

/* ── Seleção de texto na cor da marca ── */

::selection {
  background: rgba(201, 168, 76, 0.25);
  color: var(--white);
}

/* ── Hero: selo de especialidade NR-1 ── */

.hero-selo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 3rem;
  padding: 10px 22px;
  border: 0.5px solid rgba(201, 168, 76, 0.45);
  border-radius: 100px;
  background: rgba(201, 168, 76, 0.05);
  color: var(--text-mid);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-decoration: none;
  font-weight: 300;
  opacity: 0;
  animation: fadeUp 0.8s 1.2s forwards;
  transition: border-color 0.25s, background 0.25s;
}

.hero-selo:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
}

.hero-selo strong {
  color: var(--gold);
  font-weight: 500;
}

.hero-selo svg {
  width: 14px;
  height: 14px;
  fill: var(--gold);
  stroke: none;
  flex-shrink: 0;
}

/* ── Seção destaque NR-1 (selo premium) ── */

#nr1 {
  background: var(--navy);
  padding-top: 5rem;
}

.nr1-destaque {
  position: relative;
  text-align: center;
  padding: 4.5rem 3rem 4rem;
  border: 0.5px solid rgba(201, 168, 76, 0.35);
  background:
    radial-gradient(
      ellipse 70% 60% at 50% 0%,
      rgba(201, 168, 76, 0.07) 0%,
      transparent 70%
    ),
    rgba(201, 168, 76, 0.02);
}

/* Cantos dourados — moldura de "certificado" */

.nr1-destaque::before,
.nr1-destaque::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  border-color: var(--gold);
  border-style: solid;
}

.nr1-destaque::before {
  top: -1px;
  left: -1px;
  border-width: 1.5px 0 0 1.5px;
}

.nr1-destaque::after {
  bottom: -1px;
  right: -1px;
  border-width: 0 1.5px 1.5px 0;
}

.selo-nr1 {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.8rem;
  border: 0.5px solid rgba(201, 168, 76, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 168, 76, 0.06);
  box-shadow: 0 0 0 8px rgba(201, 168, 76, 0.04);
}

.selo-nr1 svg {
  width: 30px;
  height: 30px;
  fill: var(--gold);
  stroke: none;
}

.selo-label {
  justify-content: center;
}

.selo-label::after {
  content: "";
  display: block;
  width: 30px;
  height: 0.5px;
  background: var(--gold);
}

.selo-title {
  margin-bottom: 1.2rem;
}

.selo-body {
  max-width: 680px;
  margin: 0 auto 3rem;
}

.selo-pilares {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(201, 168, 76, 0.15);
  margin-bottom: 3rem;
  text-align: left;
}

.selo-pilar {
  background: var(--navy);
  padding: 1.8rem 1.6rem;
  transition: background 0.25s;
}

.selo-pilar:hover {
  background: var(--navy-light);
}

.selo-pilar-title {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.selo-pilar-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
}

.selo-cta {
  display: inline-block;
}

/* ── Refinamento premium: brilho sutil no CTA ── */

.btn-primary:hover {
  box-shadow: 0 0 24px rgba(201, 168, 76, 0.35);
}

/* ── Acessibilidade: foco visível e movimento reduzido ── */

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 1.5px solid var(--gold);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .hero-tag,
  .hero-logo-v,
  h1,
  .hero-tagline,
  .hero-headline,
  .hero-btns,
  .hero-selo,
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ── Responsividade do bloco NR-1 ── */

@media (max-width: 900px) {
  .selo-pilares {
    grid-template-columns: 1fr;
  }
  .nr1-destaque {
    padding: 3.5rem 1.5rem 3rem;
  }
}

@media (max-width: 600px) {
  .hero-selo {
    font-size: 11px;
    padding: 9px 16px;
    margin-top: 2.5rem;
    text-align: left;
  }
}
