:root {
  /* PRIMÁRIAS - Kit de Marca */
  --laranja: #ec7a1a;
  --amarelo: #ffce00;
  --roxo: #6400ce;
  --rosa: #ec36a4;
  --cinza-claro-brand: #a3a3a3;
  --preto: #000000;
  --cinza-escuro: #3f3f3f;

  /* SECUNDÁRIAS */
  --lilas: #7B68AE;
  --azul-claro: #5BC0DE;
  --lilas-claro: #9B59B6;
  --magenta: #E040FB;
  --laranja-sec: #F7941D;
  --laranja-terra: #C66E2E;
  --rosa-escuro: #D63384;
  --vinho: #8B0A3A;

  /* UI */
  --branco: #FFFFFF;
  --cinza-bg: #FAFAF8;
  --cinza-texto: #2D2D2D;
  --cinza-sub: #5A5A5A;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--branco);
  color: var(--cinza-texto);
  overflow-x: hidden;
}

/* ========== NAVBAR ========== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 3px solid var(--laranja);
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 4px 30px rgba(236, 122, 26, 0.12);
}

.navbar-logo {
  display: flex;
  align-items: center;
}

.navbar-logo img {
  height: 70px;
  width: auto;
  object-fit: contain;
}

.navbar-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.navbar-links a {
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cinza-texto);
  position: relative;
  transition: color 0.3s ease;
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 3px;
  background: var(--laranja);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.navbar-links a:hover { color: var(--laranja); }
.navbar-links a:hover::after { width: 100%; }

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

.menu-toggle span {
  display: block;
  width: 28px; height: 2.5px;
  background: var(--laranja);
  transition: 0.3s;
  border-radius: 2px;
}

/* ========== HERO ========== */
.hero {
  margin-top: 90px;
  min-height: calc(100vh - 90px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--branco);
}

/* Decorative circles */
.hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 250px; height: 250px;
  border: 5px solid var(--amarelo);
  border-radius: 50%;
  opacity: 0.25;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 40px; left: -40px;
  width: 160px; height: 160px;
  background: var(--rosa);
  border-radius: 50%;
  opacity: 0.08;
  z-index: 0;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 48px;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.hero-text {
  animation: fadeInUp 1s ease;
}

.hero-badge {
  display: inline-block;
  background: var(--laranja);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: 50px;
  margin-bottom: 32px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 3.8rem;
  font-weight: 900;
  line-height: 1.08;
  color: var(--cinza-texto);
  margin-bottom: 24px;
}

.hero-title em {
  color: var(--laranja);
  font-style: italic;
}

.hero-desc {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--cinza-sub);
  margin-bottom: 36px;
  max-width: 500px;
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--laranja);
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 16px 36px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #c96a15;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(236, 122, 26, 0.35);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--laranja);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 16px 36px;
  border: 2.5px solid var(--laranja);
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: var(--laranja);
  color: white;
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  height: 520px;
  box-shadow: 0 20px 60px rgba(236, 122, 26, 0.12);
}

.hero-image::before {
  content: '';
  position: absolute;
  top: -20px; right: -20px;
  width: 130px; height: 130px;
  border: 4px solid var(--amarelo);
  border-radius: 50%;
  opacity: 0.5;
  z-index: -1;
}

.hero-image::after {
  content: '';
  position: absolute;
  bottom: -15px; left: -15px;
  width: 90px; height: 90px;
  background: var(--roxo);
  border-radius: 50%;
  opacity: 0.12;
  z-index: -1;
}

.hero-stat {
  position: absolute;
  bottom: 30px; left: -30px;
  background: var(--laranja);
  color: white;
  padding: 24px 32px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(236, 122, 26, 0.35);
  animation: float 3s ease-in-out infinite;
}

.hero-stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 900;
}

.hero-stat-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
}

/* ========== NUMBERS STRIP ========== */
.numbers-strip {
  background: var(--amarelo);
  padding: 64px 48px;
  position: relative;
  overflow: hidden;
}

.numbers-strip::before {
  content: '';
  position: absolute;
  top: -40px; left: -40px;
  width: 180px; height: 180px;
  border: 6px solid rgba(255,255,255,0.3);
  border-radius: 50%;
}

.numbers-strip::after {
  content: '';
  position: absolute;
  bottom: -30px; right: -30px;
  width: 120px; height: 120px;
  border: 6px solid rgba(255,255,255,0.2);
  border-radius: 50%;
}

.numbers-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.number-item {}

.number-value {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--cinza-texto);
  line-height: 1;
  margin-bottom: 10px;
}

.number-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cinza-texto);
  opacity: 0.75;
}

/* ========== DIVIDER ACCENT ========== */
.divider-accent {
  height: 5px;
  background: linear-gradient(90deg, var(--laranja), var(--amarelo), var(--rosa), var(--roxo), var(--lilas));
}



/* ========== IMPACTO NUMEROS ========== */
.impacto-nums {
  padding: 100px 48px;
  background: var(--branco);
}
.impacto-nums-content {
  max-width: 1200px;
  margin: 0 auto;
}
.impacto-nums .section-tag { color: var(--laranja); }
.impacto-nums .section-tag::before { background: var(--laranja); }
.impacto-nums-heading {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--cinza-texto);
  margin-bottom: 16px;
}
.impacto-nums-desc {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--cinza-sub);
  max-width: 700px;
  margin-bottom: 50px;
}
.impacto-nums-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.impacto-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.impacto-stat-card {
  padding: 28px 24px;
  border: 1px solid #eee;
  border-radius: 12px;
  border-top: 3px solid var(--laranja);
  background: var(--branco);
  transition: transform 0.3s;
}
.impacto-stat-card:hover { transform: translateY(-3px); }
.impacto-stat-card:nth-child(2) { border-top-color: var(--roxo); }
.impacto-stat-card:nth-child(3) { border-top-color: var(--rosa); }
.impacto-stat-card:nth-child(4) { border-top-color: var(--amarelo); }
.impacto-stat-card:nth-child(5) { border-top-color: var(--lilas); }
.impacto-stat-card:nth-child(6) { border-top-color: var(--laranja); }
.impacto-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--cinza-texto);
  line-height: 1;
  margin-bottom: 6px;
}
.impacto-stat-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cinza-sub);
}
/* Chart area */
.impacto-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.impacto-chart-box {
  background: linear-gradient(135deg, #f8f9fa, #fff);
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 28px;
}
.impacto-chart-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cinza-texto);
  margin-bottom: 20px;
}
.impacto-chart {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  height: 180px;
  padding-top: 10px;
}
.impacto-bar-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.impacto-bar {
  width: 100%;
  max-width: 52px;
  border-radius: 6px 6px 0 0;
  transition: height 0.8s ease;
}
.impacto-bar-val {
  font-family: 'Playfair Display', serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--cinza-texto);
}
.impacto-bar-label {
  font-size: 0.7rem;
  color: var(--cinza-sub);
  font-weight: 600;
}
.impacto-highlight-box {
  background: linear-gradient(135deg, var(--roxo), var(--lilas));
  border-radius: 16px;
  padding: 28px;
  color: var(--branco);
}
.impacto-highlight-box p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
}
.impacto-highlight-box strong {
  color: var(--amarelo);
}
.impacto-photos {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  border-radius: 12px;
  overflow: hidden;
}
.impacto-photos img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .impacto-nums { padding: 60px 24px; }
  .impacto-nums-heading { font-size: 2rem; }
  .impacto-nums-layout { grid-template-columns: 1fr; }
  .impacto-chart { height: 140px; }
}


/* ========== NORTEADORES ========== */
.norteadores {
  padding: 100px 48px;
  background: var(--branco);
}
.norteadores-content {
  max-width: 1200px;
  margin: 0 auto;
}
.norteadores .section-tag { color: var(--rosa); }
.norteadores .section-tag::before { background: var(--rosa); }
.norteadores-heading {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--cinza-texto);
  margin-bottom: 16px;
}
.norteadores-desc {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--cinza-sub);
  max-width: 650px;
  margin-bottom: 50px;
}
.norteadores-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.norteadores-card {
  border: none;
  border-radius: 16px;
  padding: 32px 28px;
  border-top: none;
  color: var(--branco);
  background: linear-gradient(135deg, var(--laranja), #e8650a);
}
.norteadores-card:nth-child(2) { background: linear-gradient(135deg, var(--roxo), #5200a8); }
.norteadores-card:nth-child(3) { background: linear-gradient(135deg, var(--rosa), #d42d8a); }
.norteadores-card-tag {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amarelo);
  margin-bottom: 12px;
}
.norteadores-card:nth-child(2) .norteadores-card-tag { color: var(--amarelo); }
.norteadores-card:nth-child(3) .norteadores-card-tag { color: var(--amarelo); }
.norteadores-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--branco);
  margin-bottom: 20px;
}
.norteadores-card-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.8);
}
.norteadores-card-item::before {
  content: '\2192';
  color: var(--amarelo);
  font-weight: 700;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .norteadores { padding: 60px 24px; }
  .norteadores-heading { font-size: 2rem; }
  .norteadores-grid { grid-template-columns: 1fr; }
}


/* ========== VOZES DA REDE ========== */
.vozes {
  padding: 100px 48px;
  background: linear-gradient(135deg, var(--laranja), #e8650a);
}
.vozes-content {
  max-width: 1200px;
  margin: 0 auto;
}
.vozes .section-tag { color: var(--branco); }
.vozes .section-tag::before { background: var(--branco); }
.vozes-heading {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--branco);
  margin-bottom: 16px;
}
.vozes-desc {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.85);
  max-width: 700px;
  margin-bottom: 50px;
}
/* Video testimonials */
.vozes-videos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}
.vozes-video-card {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s;
}
.vozes-video-card:hover { transform: translateY(-4px); }
.vozes-video-card iframe {
  width: 100%;
  height: 280px;
  border: none;
}
.vozes-video-body {
  padding: 16px 20px;
}
.vozes-video-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--branco);
  margin-bottom: 4px;
}
.vozes-video-role {
  font-size: 0.78rem;
  color: var(--amarelo);
  font-weight: 600;
}
/* Written testimonials */
.vozes-escritos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.vozes-escrito-card {
  width: calc(33.33% - 14px);
  min-width: 280px;
}
.vozes-escrito-card {
  background: var(--branco);
  border-radius: 16px;
  padding: 28px 24px;
  position: relative;
}
.vozes-escrito-card::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: var(--laranja);
  opacity: 0.2;
  position: absolute;
  top: 8px;
  left: 16px;
  line-height: 1;
}
.vozes-escrito-text {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--cinza-sub);
  font-style: italic;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.vozes-escrito-author {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--cinza-texto);
}
.vozes-escrito-brand {
  font-size: 0.72rem;
  color: var(--cinza-sub);
}
@media (max-width: 768px) {
  .vozes { padding: 60px 24px; }
  .vozes-heading { font-size: 2rem; }
  .vozes-videos { grid-template-columns: 1fr 1fr; }
  .vozes-escritos { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .vozes-videos { grid-template-columns: 1fr; }
}


/* ========== PARCEIRO ========== */
.parceiro {
  padding: 100px 48px;
  background: var(--branco);
  text-align: center;
}
.parceiro-content {
  max-width: 800px;
  margin: 0 auto;
}
.parceiro .section-tag { color: var(--cinza-sub); }
.parceiro .section-tag::before { background: var(--cinza-sub); }
.parceiro-heading {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--cinza-texto);
  margin-bottom: 16px;
}
.parceiro-desc {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--cinza-sub);
  margin-bottom: 40px;
}
.parceiro-tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}
.parceiro-tag {
  padding: 10px 24px;
  border: 1.5px solid #ddd;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cinza-texto);
  background: var(--branco);
  transition: all 0.3s;
}
.parceiro-tag:hover {
  border-color: var(--roxo);
  color: var(--roxo);
}
.parceiro-btn {
  display: inline-block;
  padding: 18px 48px;
  background: linear-gradient(135deg, var(--roxo), var(--lilas));
  color: var(--branco);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 50px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.parceiro-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(100, 0, 206, 0.3);
}
@media (max-width: 768px) {
  .parceiro { padding: 60px 24px; }
  .parceiro-heading { font-size: 2rem; }
}


/* ========== CONTATO ========== */
.contato {
  padding: 100px 48px;
  background: linear-gradient(135deg, var(--roxo), #4a00b0);
  text-align: center;
}
.contato-content {
  max-width: 900px;
  margin: 0 auto;
}
.contato .section-tag { color: var(--amarelo); }
.contato .section-tag::before { background: var(--amarelo); }
.contato-heading {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--branco);
  margin-bottom: 50px;
}
.contato-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}
.contato-card {
  padding: 32px 20px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 16px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  transition: transform 0.3s, background 0.3s;
  text-decoration: none;
  display: block;
}
.contato-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.15);
}
.contato-card-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}
.contato-card-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amarelo);
  margin-bottom: 6px;
}
.contato-card-value {
  font-size: 0.9rem;
  color: var(--branco);
  font-weight: 500;
}
/* FOOTER */
.footer {
  padding: 30px 48px;
  background: #1a1a2e;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.footer-text {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}
@media (max-width: 768px) {
  .contato { padding: 60px 24px; }
  .contato-heading { font-size: 2rem; }
  .contato-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .contato-grid { grid-template-columns: 1fr; }
}

/* ========== MISSAO VISAO VALORES ========== */
.mvv {
  padding: 100px 48px;
  background: var(--branco);
}
.mvv-content {
  max-width: 1200px;
  margin: 0 auto;
}
.mvv .section-tag { color: var(--roxo); }
.mvv .section-tag::before { background: var(--roxo); }
.mvv-heading {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--cinza-texto);
  margin-bottom: 50px;
}
.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.mvv-card {
  padding: 36px 32px;
  border: 1px solid #eee;
  border-radius: 16px;
  background: var(--branco);
  transition: transform 0.3s, box-shadow 0.3s;
}
.mvv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}
.mvv-card-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}
.mvv-card-title {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.mvv-card:nth-child(1) .mvv-card-title { color: var(--laranja); }
.mvv-card:nth-child(2) .mvv-card-title { color: var(--roxo); }
.mvv-card:nth-child(3) .mvv-card-title { color: var(--rosa); }
.mvv-card:nth-child(1) { border-top: 3px solid var(--laranja); }
.mvv-card:nth-child(2) { border-top: 3px solid var(--roxo); }
.mvv-card:nth-child(3) { border-top: 3px solid var(--rosa); }
.mvv-card-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--cinza-sub);
}
@media (max-width: 768px) {
  .mvv { padding: 60px 24px; }
  .mvv-heading { font-size: 2rem; }
  .mvv-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* ========== HISTÓRIA ========== */
.historia {
  padding: 120px 48px;
  background: var(--branco);
  position: relative;
}

.historia::before {
  content: '';
  position: absolute;
  top: 60px; right: 40px;
  width: 100px; height: 100px;
  border: 4px solid var(--amarelo);
  border-radius: 50%;
  opacity: 0.15;
}

.historia-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.historia-image {
  position: relative;
}

.historia-image img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  height: 550px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.historia-image::before {
  content: '';
  position: absolute;
  top: 15px; left: 15px;
  right: -15px; bottom: -15px;
  border: 3px solid var(--laranja);
  border-radius: 20px;
  z-index: -1;
  opacity: 0.25;
}

.section-tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--laranja);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-tag::before {
  content: '';
  display: inline-block;
  width: 30px; height: 3px;
  background: var(--laranja);
  border-radius: 2px;
}

.historia-heading {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.12;
  color: var(--cinza-texto);
  margin-bottom: 28px;
}

.historia-paragraph {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--cinza-sub);
  margin-bottom: 20px;
}

.historia-quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  font-style: italic;
  color: var(--laranja);
  border-left: 4px solid var(--amarelo);
  padding-left: 20px;
  margin: 28px 0;
  line-height: 1.6;
}




/* ========== O PROBLEMA ========== */
.problema {
  padding: 120px 48px;
  background: var(--roxo);
  position: relative;
  overflow: hidden;
}
.problema::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 200px; height: 200px;
  border: 4px solid var(--laranja);
  border-radius: 50%;
  opacity: 0.06;
}
.problema-content {
  max-width: 1200px;
  margin: 0 auto;
}
.problema .section-tag {
  color: var(--amarelo);
}
.problema .section-tag::before {
  background: var(--amarelo);
}
.problema-heading {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.1;
  color: var(--branco);
  margin-bottom: 24px;
  max-width: 700px;
}
.problema-desc {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.75);
  margin-bottom: 50px;
  max-width: 650px;
}
.problema-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}
.problema-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 16px;
  padding: 36px 28px;
  transition: all 0.3s ease;
}
.problema-card:hover {
  border-color: var(--amarelo);
  transform: translateY(-4px);
}
.problema-card-value {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--amarelo);
  margin-bottom: 16px;
  line-height: 1;
}
.problema-card-text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
}
.problema-card-text em {
  font-style: italic;
  color: rgba(255,255,255,0.55);
}

.problema-header {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 50px;
}
.problema-header-img img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  height: 320px;
  box-shadow: 0 16px 50px rgba(0,0,0,0.3);
}
@media (max-width: 768px) {
  .problema-header { grid-template-columns: 1fr; gap: 30px; }
  .problema-header-img img { height: 250px; }
}

.problema-image-row {
  margin-top: 20px;
  text-align: center;
}
.problema-image-row img {
  width: 100%;
  max-width: 800px;
  border-radius: 20px;
  object-fit: cover;
  height: 400px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
@media (max-width: 768px) {
  .problema { padding: 80px 24px; }
  .problema-heading { font-size: 2.2rem; }
  .problema-cards { grid-template-columns: 1fr; }
  .problema-image-row img { height: 250px; }
}


/* ========== A SOLUCAO ========== */
.solucao {
  padding: 120px 48px;
  background: var(--branco);
}
.solucao-content {
  max-width: 1200px;
  margin: 0 auto;
}
.solucao .section-tag { color: var(--laranja); }
.solucao .section-tag::before { background: var(--laranja); }
.solucao-heading {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--cinza-texto);
  margin-bottom: 60px;
}
.solucao-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.solucao-col-num {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 900;
  color: rgba(236, 54, 164, 0.12);
  margin-bottom: -10px;
}
.solucao-col-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cinza-texto);
  margin-bottom: 16px;
}
.solucao-col-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--cinza-sub);
  margin-bottom: 24px;
}
.solucao-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.solucao-tag {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid var(--laranja);
  border-radius: 50px;
  color: var(--laranja);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
/* Gallery with hover zoom */
.solucao-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  border-radius: 12px;
  overflow: hidden;
}
.solucao-gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}
.solucao-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
  filter: brightness(0.85);
}
.solucao-gallery-item:hover img {
  transform: scale(1.15);
  filter: brightness(1);
}
.solucao-gallery-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(transparent, rgba(0,0,0,0.4));
  pointer-events: none;
  transition: opacity 0.3s;
}
.solucao-gallery-item:hover::after {
  opacity: 0;
}

@media (max-width: 768px) {
  .solucao { padding: 80px 24px; }
  .solucao-heading { font-size: 2.2rem; }
  .solucao-cols { grid-template-columns: 1fr; gap: 50px; }
  .solucao-gallery { grid-template-columns: repeat(2, 1fr); }
}

/* Newspaper style photo for problema section */
.problema-header-img .newspaper-frame {
  background: var(--branco);
  padding: 10px 10px 30px 10px;
  border-radius: 4px;
  box-shadow: 4px 4px 20px rgba(0,0,0,0.3);
  transform: rotate(1.5deg);
  max-width: 320px;
  margin: 0 auto;
}
.problema-header-img .newspaper-frame img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 2px;
  filter: contrast(1.05);
}
.problema-header-img .newspaper-caption {
  font-family: 'Playfair Display', serif;
  font-size: 0.82rem;
  color: #555;
  text-align: center;
  margin-top: 10px;
  font-style: italic;
  line-height: 1.5;
  padding: 0 4px;
}


/* ========== PRESENCA TERRITORIAL ========== */
.presenca {
  padding: 120px 48px;
  background: linear-gradient(135deg, var(--laranja), #e8650a);
  position: relative;
}
.presenca-content {
  max-width: 1200px;
  margin: 0 auto;
}
.presenca .section-tag { color: var(--branco); }
.presenca .section-tag::before { background: var(--branco); }
.presenca-heading {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--branco);
  margin-bottom: 16px;
}
.presenca-desc {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.85);
  margin-bottom: 50px;
  max-width: 700px;
}
.presenca-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}
.presenca-card {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.presenca-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.presenca-card-imgs {
  display: grid;
  gap: 2px;
  height: 220px;
  overflow: hidden;
}
.presenca-card-imgs.cols-1 { grid-template-columns: 1fr; }
.presenca-card-imgs.cols-2 { grid-template-columns: 1fr 1fr; }
.presenca-card-imgs.cols-3 { grid-template-columns: 1fr 1fr 1fr; }
.presenca-card-imgs img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s;
}
.presenca-card:hover .presenca-card-imgs img {
  transform: scale(1.05);
}
.presenca-card-body {
  padding: 20px 24px;
}
.presenca-card-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amarelo);
  margin-bottom: 6px;
}
.presenca-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--branco);
  margin-bottom: 8px;
}
.presenca-card-text {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
}
@media (max-width: 768px) {
  .presenca { padding: 80px 24px; }
  .presenca-heading { font-size: 2.2rem; }
  .presenca-grid { grid-template-columns: 1fr; }
}

/* ========== A ORIGEM - TIMELINE ========== */
.origem {
  padding: 120px 48px;
  background: var(--cinza-bg);
  position: relative;
}
.origem-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: start;
}
.origem-heading {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.12;
  color: var(--cinza-texto);
  margin-bottom: 24px;
}
.origem-desc {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--cinza-sub);
  margin-bottom: 40px;
}
.origem-desc strong { color: var(--cinza-texto); }
.timeline {
  position: relative;
  padding-left: 30px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 6px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--amarelo), var(--laranja));
}
.timeline-item {
  position: relative;
  margin-bottom: 36px;
  padding-left: 10px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -30px; top: 6px;
  width: 14px; height: 14px;
  background: var(--amarelo);
  border-radius: 50%;
  border: 3px solid var(--branco);
  box-shadow: 0 0 0 2px var(--amarelo);
}
.timeline-year {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--laranja);
  margin-bottom: 6px;
}
.timeline-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--cinza-sub);
}
.origem-image-wrapper {
  position: sticky;
  top: 120px;
}
.origem-image-wrapper img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  height: 450px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}
@media (max-width: 768px) {
  .origem { padding: 80px 24px; }
  .origem-content { grid-template-columns: 1fr; gap: 40px; }
  .origem-heading { font-size: 2rem; }
  .origem-image-wrapper { position: static; }
  .origem-image-wrapper img { height: 280px; }
}

/* ========== FUNDADORA ========== */
.fundadora {
  padding: 120px 48px;
  background: var(--cinza-bg);
  position: relative;
  overflow: hidden;
}

.fundadora::before {
  content: '';
  position: absolute;
  bottom: -40px; left: -40px;
  width: 200px; height: 200px;
  border: 5px solid var(--roxo);
  border-radius: 50%;
  opacity: 0.08;
}

.fundadora-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.fundadora-image {
  position: relative;
}

.fundadora-image img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  height: 600px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.fundadora-image::after {
  content: '';
  position: absolute;
  bottom: -12px; right: -12px;
  width: 100px; height: 100px;
  background: var(--laranja);
  border-radius: 50%;
  opacity: 0.15;
  z-index: -1;
}

.fundadora-name {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--cinza-texto);
  margin-bottom: 24px;
}

.fundadora-bio {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--cinza-sub);
  margin-bottom: 16px;
}

.fundadora-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}

.tag {
  display: inline-block;
  background: var(--amarelo);
  color: var(--cinza-texto);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 50px;
  letter-spacing: 0.5px;
}

.fundadora-podcast-intro {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--cinza-sub);
  margin-bottom: 20px;
}

.fundadora-podcast-intro strong {
  color: var(--cinza-texto);
}

.podcast-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--branco);
  border: 2px solid rgba(236, 122, 26, 0.15);
  border-radius: 16px;
  padding: 20px 24px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 8px;
}

.podcast-card:hover {
  border-color: var(--laranja);
  box-shadow: 0 8px 30px rgba(236, 122, 26, 0.12);
  transform: translateY(-2px);
}

.podcast-icon {
  font-size: 2rem;
  background: var(--laranja);
  width: 56px; height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  flex-shrink: 0;
}

.podcast-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--cinza-sub);
  display: block;
  margin-bottom: 4px;
}

.podcast-title {
  font-size: 0.95rem;
  color: var(--cinza-texto);
}

@media (max-width: 768px) {
  .fundadora { padding: 80px 24px; }
  .fundadora-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .fundadora-image img { height: 400px; }
  .fundadora-name { font-size: 2.4rem; }
}

@media (max-width: 480px) {
  .fundadora-name { font-size: 2rem; }
  .fundadora-image img { height: 320px; }
  .fundadora-tags { gap: 8px; }
  .tag { font-size: 0.65rem; padding: 6px 14px; }
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero-title { font-size: 3rem; }
  .hero-content { gap: 40px; padding: 40px 32px; }
  .historia-heading { font-size: 2.3rem; }
  .historia-content { gap: 50px; }
}

@media (max-width: 768px) {
  .navbar { padding: 0 24px; height: 75px; }
  .navbar-logo img { height: 55px; }
  .navbar-links { display: none; }
  .navbar-links.mobile-open {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 75px; left: 0; right: 0;
    background: white;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-bottom: 3px solid var(--laranja);
  }
  .menu-toggle { display: flex; }

  .hero { margin-top: 75px; min-height: auto; }
  .hero-content {
    grid-template-columns: 1fr;
    padding: 40px 24px;
  }
  .hero-title { font-size: 2.5rem; }
  .hero-stat { left: 20px; bottom: 20px; }
  .hero-image img { height: 350px; }

  .numbers-strip { padding: 48px 24px; }
  .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .number-value { font-size: 2.5rem; }

  .historia { padding: 80px 24px; }
  .historia-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .historia-image img { height: 320px; }
  .historia-heading { font-size: 2rem; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons a { text-align: center; justify-content: center; }
  .number-value { font-size: 2rem; }
  .historia-heading { font-size: 1.7rem; }
  .hero-stat { padding: 16px 20px; }
  .hero-stat-number { font-size: 1.6rem; }
}

/* MOBILE GLOBAL FIX */
* { box-sizing: border-box; }
img { max-width: 100%; height: auto; }
@media (max-width: 480px) {
  .hero { padding: 100px 20px 60px; }
  .hero-title { font-size: 2rem; }
  .hero-subtitle { font-size: 0.9rem; }
  .numeros-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .historia { padding: 60px 20px; }
  .fundadora { padding: 60px 20px; }
  .problema { padding: 60px 20px; }
  .problema-heading { font-size: 1.8rem; }
  .problema-header { grid-template-columns: 1fr; }
  .solucao { padding: 60px 20px; }
  .solucao-cols { grid-template-columns: 1fr; gap: 40px; }
  .solucao-heading { font-size: 2rem; }
  .origem { padding: 60px 20px; }
  .origem-heading { font-size: 1.8rem; }
  .presenca { padding: 60px 20px; }
  .presenca-heading { font-size: 2rem; }
  .presenca-grid { grid-template-columns: 1fr; }
  nav { padding: 12px 16px; }
  .nav-links { display: none; }
  .nav-links a { font-size: 0.7rem; margin-left: 12px; }
}
