/* ================================================================
   SOBRE NOS — estilos especificos da pagina
================================================================ */

/* ── Navegacao das subpaginas ──────────────────────────────────── */
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  color: #b09ac8;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: #ff6620;
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.main-nav a:hover {
  color: #f0eaf8;
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.main-nav a.nav-active {
  color: #ff6620;
  font-weight: 600;
}

.main-nav a.nav-active::after {
  transform: scaleX(1);
}

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

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #f0eaf8;
  border-radius: 2px;
}

/* ── Hero compacto ─────────────────────────────────────────────── */
.pg-hero {
  padding-top: 128px;
  padding-bottom: 72px;
  background: #130c1a;
  text-align: left;
}

.pg-hero-inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.pg-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #7a6290;
  margin-bottom: 24px;
  list-style: none;
  padding: 0;
}

.pg-breadcrumb a {
  color: #7a6290;
  text-decoration: none;
  transition: color 0.2s;
}

.pg-breadcrumb a:hover {
  color: #ff6620;
}

.pg-breadcrumb span {
  color: #b09ac8;
  font-weight: 600;
}

.pg-breadcrumb-sep {
  color: #4a2870;
  font-size: 14px;
}

.pg-hero-title {
  font-size: clamp(28px, 3.8vw, 48px);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #f0eaf8;
  line-height: 1.1;
  margin-bottom: 16px;
}

.pg-hero-sub {
  font-size: 16px;
  color: #b09ac8;
  line-height: 1.7;
  max-width: 560px;
}

/* ── Secoes de conteudo corrido ────────────────────────────────── */
.sobre-section {
  padding: 80px 24px;
}

.sobre-section--dark {
  background: #0d0810;
}

.sobre-section--mid {
  background: #130c1a;
}

.sobre-inner {
  max-width: 760px;
  margin-inline: auto;
}

.sobre-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ff6620;
  margin-bottom: 20px;
}

.sobre-titulo {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700;
  color: #f0eaf8;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 28px;
}

.sobre-texto {
  font-size: 16px;
  color: #b09ac8;
  line-height: 1.85;
}

.sobre-texto p {
  margin-bottom: 20px;
}

.sobre-texto p:last-child {
  margin-bottom: 0;
}

.sobre-texto strong {
  color: #f0eaf8;
  font-weight: 600;
}

/* ── Valores ───────────────────────────────────────────────────── */
.valores-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.valor-item {
  background: #1e1228;
  border: 1px solid rgba(74, 40, 112, 0.3);
  border-radius: 12px;
  padding: 24px 28px;
  transition: border-color 0.2s;
}

.valor-item:hover {
  border-color: rgba(255, 102, 32, 0.3);
}

.valor-titulo {
  font-size: 14px;
  font-weight: 700;
  color: #ff6620;
  margin-bottom: 8px;
}

.valor-desc {
  font-size: 14px;
  color: #b09ac8;
  line-height: 1.6;
}

/* ── Missao destaque ───────────────────────────────────────────── */
.missao-bloco {
  background: linear-gradient(135deg, #1e1228 0%, #130c1a 100%);
  border: 1px solid rgba(74, 40, 112, 0.4);
  border-left: 3px solid #ff6620;
  border-radius: 12px;
  padding: 28px 32px;
  margin-top: 36px;
}

.missao-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ff6620;
  margin-bottom: 12px;
}

.missao-texto {
  font-size: 17px;
  color: #f0eaf8;
  line-height: 1.7;
  font-weight: 500;
}

/* ── Quem somos destaque ───────────────────────────────────────── */
.quem-somos-bloco {
  background: #130c1a;
  border: 1px solid rgba(74, 40, 112, 0.3);
  border-radius: 16px;
  padding: 36px 40px;
  margin-top: 0;
}

/* ── CTA final ─────────────────────────────────────────────────── */
.cta-sobre {
  padding: 80px 24px;
  background: #130c1a;
  text-align: center;
}

.cta-sobre-inner {
  max-width: 600px;
  margin-inline: auto;
}

.cta-sobre-titulo {
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 700;
  color: #f0eaf8;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-sobre-sub {
  font-size: 16px;
  color: #b09ac8;
  line-height: 1.7;
  margin-bottom: 36px;
}

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

/* ── Responsivo ─────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .pg-hero {
    padding-top: 108px;
    padding-bottom: 56px;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: rgba(13, 8, 16, 0.98);
    padding: 16px 24px;
    border-bottom: 1px solid rgba(74, 40, 112, 0.3);
  }

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

  .main-nav a {
    padding: 12px 0;
    width: 100%;
    border-bottom: 1px solid rgba(74, 40, 112, 0.15);
  }

  .nav-toggle {
    display: flex;
  }

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

  .quem-somos-bloco {
    padding: 28px 24px;
  }
}

@media (max-width: 480px) {
  .pg-hero-title {
    font-size: 28px;
  }

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

  .cta-sobre-botoes .btn-primary,
  .cta-sobre-botoes .btn-outline {
    width: 100%;
    max-width: 320px;
  }

  .missao-bloco {
    padding: 24px 20px;
  }
}
