@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  /* Paleta oficial RGT (manual da marca): 100% monocromática */
  --bg: #FFFFFF;
  --bg-alt: #F5F5F5;
  --accent: #575756;        /* cinza médio – RGB 87,87,86 (CMYK 0,0,0,80) */
  --accent-dark: #3C3C3B;   /* cinza escuro – RGB 60,60,59 (CMYK 0,0,0,90) */
  --text: #3C3C3B;          /* preto da marca (não é #000 puro) */
  --text-secondary: #575756;
  --border: #E5E5E5;
  --radius: 12px;
  --radius-lg: 20px;
  --font: 'DM Sans', sans-serif;
  --mono: 'JetBrains Mono', monospace;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ─── LAYOUT ─── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

section {
  padding: 100px 40px;
}

section .container {
  padding: 0;
}

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4 {
  font-family: var(--font);
  line-height: 1.15;
  font-weight: 800;
}

.label-mono {
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--text-secondary);
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--text);
  color: #fff;
  padding: 14px 32px;
  border-radius: 8px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid var(--text);
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
}

.btn-primary:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text);
  padding: 14px 32px;
  border-radius: 8px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid var(--text);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}

.btn-secondary:hover {
  background: var(--text);
  color: #fff;
  transform: translateY(-1px);
}

.btn-primary-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--text);
  padding: 14px 32px;
  border-radius: 8px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid #fff;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
}

.btn-primary-white:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  padding: 14px 32px;
  border-radius: 8px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid rgba(255,255,255,0.5);
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}

.btn-outline-white:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
  transform: translateY(-1px);
}

/* ─── NAV ─── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}

.navbar.scrolled {
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo img {
  height: 44px;
  width: auto;
  display: block;
}

.nav-logo-text {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}

.nav-cta {
  flex-shrink: 0;
}

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

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 20px 40px 24px;
  border-top: 1px solid var(--border);
  gap: 4px;
}

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

.mobile-menu a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 1rem;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.mobile-menu a:last-of-type {
  border-bottom: none;
}

.mobile-menu a:hover {
  color: var(--text);
}

.mobile-menu .btn-primary {
  margin-top: 12px;
  justify-content: center;
}

/* ─── PAGE TOP PADDING ─── */
.page-top {
  padding-top: 70px;
}

/* ─── HERO ─── */
.hero {
  padding: 80px 40px 100px;
  background: var(--bg);
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero h1 {
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.hero-subtitle {
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.65;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

/* ─── HERO ALT (fundo bg-alt) ─── */
.hero-alt {
  background: var(--bg-alt);
  padding: 80px 40px 100px;
}

/* ─── SECTION EIXOS ─── */
.section-eixos {
  background: var(--bg-alt);
}

.section-header {
  text-align: left;
  margin-bottom: 64px;
}

.section-header h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1rem;
  max-width: 560px;
  line-height: 1.7;
}

.eixos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.eixo-item {
  padding: 40px 32px 40px 0;
  border-top: 2px solid var(--border);
}

.eixo-item:not(:last-child) {
  padding-right: 48px;
}

.eixo-number {
  font-family: var(--mono);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 16px;
  display: block;
}

.eixo-item h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.eixo-item p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ─── STATS ─── */
.section-stats {
  background: var(--bg);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  text-align: center;
}

.stat-item {
  padding: 48px 32px;
  border-right: 1px solid var(--border);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--text-secondary);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ─── PARA QUEM É ─── */
.section-para-quem {
  background: var(--bg-alt);
}

.para-quem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.para-quem-block {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.para-quem-block img {
  width: 100%;
  aspect-ratio: 4 / 5;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.para-quem-block h3 {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.para-quem-block p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ─── DEPOIMENTOS ─── */
.section-depoimentos {
  background: var(--bg);
}

.depo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 16px;
}

.depo-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.depo-quote {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: -8px;
}

.depo-text {
  font-style: italic;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
}

.depo-author {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-secondary);
}

/* ─── CTA DARK ─── */
.section-cta-dark {
  background: #0A0A0A;
  text-align: center;
}

.section-cta-dark .cta-logo {
  height: 56px;
  width: auto;
  margin-bottom: 36px;
  display: inline-block;
}

.cta-logo-text {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 36px;
  display: inline-block;
  letter-spacing: -0.02em;
}

.section-cta-dark h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-cta-dark p {
  color: rgba(255,255,255,0.55);
  font-size: 1rem;
  margin-bottom: 44px;
  line-height: 1.65;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── FOOTER ─── */
footer {
  background: #0A0A0A;
  padding: 60px 40px 32px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: start;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 28px;
}

.footer-logo img {
  height: 44px;
  width: auto;
}

.footer-logo-text {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.footer-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-self: center;
}

.footer-links a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-contact {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-contact a,
.footer-contact span {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
  display: block;
}

.footer-contact a:hover {
  color: #fff;
}

.footer-bottom {
  color: rgba(255,255,255,0.3);
  font-size: 0.82rem;
  text-align: center;
}

/* ─── COMO FUNCIONA ─── */
.passos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0 48px;
  counter-reset: passo;
}

.passo-item {
  padding: 40px 0;
  border-top: 2px solid var(--border);
  position: relative;
}

.passo-number {
  font-family: var(--font);
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
  line-height: 1;
}

.passo-item h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.passo-item p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.7;
}

/* ─── FORMULÁRIO ─── */
.section-form {
  background: var(--bg);
}

.form-wrapper {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.form-wrapper h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.form-wrapper .form-subtitle {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 44px;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

.form-group input,
.form-group textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color 0.2s;
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-dark);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.form-submit {
  margin-top: 8px;
  width: 100%;
  justify-content: center;
  font-size: 1rem;
}

.form-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.form-note svg {
  flex-shrink: 0;
  opacity: 0.6;
}

/* ─── SERVIÇOS INVESTIDORES ─── */
.servicos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.servico-block {
  padding: 40px 0 0;
  border-top: 2px solid var(--border);
}

.servico-block h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.servico-block p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.servico-detail {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--accent-dark);
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* ─── POR QUE RGT ─── */
.porquergr-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 640px;
  margin-top: 16px;
}

.porquergr-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 1rem;
  line-height: 1.5;
}

.check-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--accent-dark);
  margin-top: 2px;
}

/* ─── SOBRE ─── */
.missao-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.missao-content h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.missao-content p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.75;
}

.missao-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.section-fundador {
  background: var(--bg-alt);
}

.fundador-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  max-width: 640px;
}

.fundador-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.fundador-info h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.fundador-cargo {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--accent-dark);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

.fundador-info p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.section-transparencia {
  background: var(--bg);
}

.transparencia-inner {
  max-width: 680px;
}

.transparencia-inner h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.transparencia-inner p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 32px;
}

.highlight-box {
  border-left: 4px solid var(--accent);
  padding: 20px 24px;
  background: var(--bg-alt);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.5;
}

/* ─── SEM OFÍCIO ─── */
.sem-oficio-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.sem-oficio-inner h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.sem-oficio-inner p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 32px;
}

/* ─── WHATSAPP FLOAT ─── */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 200;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  section {
    padding: 60px 24px;
  }

  .container {
    padding: 0 24px;
  }

  .hero,
  .hero-alt {
    padding: 60px 24px 80px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-image {
    order: -1;
  }

  .hero-image img {
    height: 300px;
  }

  .nav-inner {
    padding: 0 24px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu {
    padding: 16px 24px 20px;
  }

  .eixos-grid {
    grid-template-columns: 1fr;
  }

  .eixo-item {
    padding: 32px 0 !important;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 32px 24px;
  }

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

  .para-quem-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .depo-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .footer-contact {
    text-align: left;
  }

  .footer-links {
    flex-direction: column;
    gap: 12px;
  }

  .passos-grid {
    grid-template-columns: 1fr;
  }

  .passo-item {
    padding: 28px 0 !important;
  }

  .servicos-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .missao-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .missao-image img {
    aspect-ratio: 4 / 5;
    height: auto;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .passos-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .passo-item {
    padding: 28px 0 !important;
  }
}

/* ─── HERO FULLWIDTH (homepage) ─── */
.hero-fullwidth {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-fullwidth-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1920&q=80');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-fullwidth-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.45) 100%);
  z-index: 1;
}

.hero-fullwidth-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 80px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-fullwidth-content h1 {
  color: #fff;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.hero-fullwidth-content .hero-subtitle {
  color: rgba(255,255,255,0.8);
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.65;
  max-width: 520px;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--text);
  padding: 14px 32px;
  border-radius: 8px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid #fff;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
}

.btn-hero-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  padding: 14px 32px;
  border-radius: 8px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid rgba(255,255,255,0.6);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}

.btn-hero-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
  transform: translateY(-1px);
}

/* ─── HERO PAGE (páginas internas) ─── */
.hero-page {
  background: var(--bg-alt);
  padding: 120px 40px 80px;
}

.hero-page-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* variante com foto */
.hero-page-inner--grid {
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  flex-direction: unset;
}

.hero-page-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-page-photo img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius-lg);
  display: block;
}

.hero-page-inner h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.hero-page-inner .hero-subtitle {
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.7;
}

.hero-page-inner .label-mono {
  margin-bottom: 4px;
}

/* ─── HERO FADE-RIGHT (foto à direita, escurece para esquerda) ─── */
.hero-fade-right {
  position: relative;
  min-height: 620px;
  background: #0A0A0A;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 70px; /* navbar */
}

.hero-fade-right__bg {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 58%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero-fade-right__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    #0A0A0A 36%,
    rgba(10,10,10,0.85) 54%,
    rgba(10,10,10,0.28) 78%,
    rgba(10,10,10,0.04) 100%
  );
  z-index: 1;
}

.hero-fade-right__content {
  position: relative;
  z-index: 2;
  max-width: 560px;
  padding: 0 0 0 80px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-fade-right__content h1 {
  color: #fff;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.hero-fade-right__content .hero-subtitle {
  color: rgba(255,255,255,0.65);
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1.7;
  max-width: 480px;
}

.hero-fade-right__content .label-mono {
  color: rgba(255,255,255,0.4);
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .hero-fade-right {
    min-height: 520px;
    padding-top: 70px;
  }

  .hero-fade-right__bg {
    width: 100%;
    height: 100%;
    opacity: 0.35;
  }

  .hero-fade-right__gradient {
    background: linear-gradient(to right, #0A0A0A 0%, rgba(10,10,10,0.7) 100%);
  }

  .hero-fade-right__content {
    padding: 40px 24px;
  }
}

/* ─── HERO PAGE DARK variant ─── */
.hero-page--dark {
  background: #0A0A0A;
}

.hero-page--dark .label-mono {
  color: rgba(255,255,255,0.4);
}

.hero-page--dark h1 {
  color: #fff;
}

.hero-page--dark .hero-subtitle {
  color: rgba(255,255,255,0.6);
  max-width: 520px;
}

.hero-page--dark .hero-page-photo img {
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
  border-radius: var(--radius-lg);
}

/* ─── UPLOAD AREA ─── */
.upload-area {
  border: 2px dashed var(--border);
  border-radius: 16px;
  padding: 60px 40px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.3s;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.upload-area:hover {
  border-color: var(--accent);
}

.upload-area input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.upload-icon {
  color: var(--accent);
  width: 48px;
  height: 48px;
  margin-bottom: 6px;
  display: block;
}

.upload-text {
  font-size: 1rem;
  color: var(--text-secondary);
  margin: 0;
}

.upload-subtext {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--text-secondary);
  opacity: 0.7;
  margin: 0;
}

.upload-file-info {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
  padding: 10px 18px;
  background: var(--bg-alt);
  border-radius: var(--radius);
  font-size: 0.88rem;
  color: var(--text);
  font-weight: 500;
}

.upload-file-info.visible {
  display: flex;
}

.upload-wa-btn {
  display: none !important;
  position: relative;
  z-index: 1;
  margin-top: 8px;
}

.upload-wa-btn.visible {
  display: inline-flex !important;
}

/* ─── PROCESS GRID (investidores) ─── */
.process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 64px;
}

.process-item {
  border-top: 2px solid var(--border);
  padding-top: 32px;
  padding-bottom: 40px;
}

.process-number {
  font-size: 4rem;
  font-weight: 800;
  color: var(--accent);
  font-family: var(--font);
  line-height: 1;
  margin-bottom: 16px;
  display: block;
}

.process-item h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text);
}

.process-item p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ─── NEWS CARDS ─── */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.news-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.news-tag {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  display: block;
}

.news-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.35;
}

.news-card p {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.news-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.news-date {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.news-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent-dark);
  text-decoration: none;
  transition: color 0.2s;
}

.news-link:hover {
  color: var(--text);
}

/* ─── VALUES GRID (sobre) ─── */
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 64px;
}

.value-item {
  border-top: 3px solid var(--accent);
  padding-top: 24px;
  padding-bottom: 36px;
}

.value-item h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.value-item p {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ─── COMO TRABALHAMOS (sobre) ─── */
.como-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 640px;
}

.como-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--text);
}

.como-check {
  color: var(--accent);
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ─── RESPONSIVE (additions) ─── */
@media (max-width: 768px) {
  .hero-fullwidth-content {
    padding: 0 24px;
    max-width: 100%;
  }

  .hero-page {
    padding: 100px 24px 60px;
  }

  .hero-page-inner--grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-page-photo {
    order: -1;
  }

  .hero-page-photo img {
    height: 300px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .upload-area {
    padding: 40px 24px;
  }
}
