/* ============================================================
   CENTRO DE REFERÊNCIA DA MULHER BRASILEIRA
   Identidade Visual v1.0 — Sistema de Design
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700&family=Barlow+Semi+Condensed:wght@400;600;700&family=Montserrat:wght@400;500;600;700&family=Poppins:wght@400;600;700&display=swap');

/* ============================================================
   TOKENS — Paleta de Cores e Variáveis
   ============================================================ */
:root {
  --roxo:        #9300B6;
  --roxo-esc:    #681970;
  --roxo-cla:    #C060D8;
  --roxo-bg:     #F9F0FF;
  --roxo-brd:    rgba(147, 0, 182, 0.12);
  --verde:       #2B613C;
  --verde-cla:   #3D8A56;
  --verde-bg:    rgba(43, 97, 60, 0.08);
  --amarelo:     #E8B400;
  --amarelo-cla: #F5CC40;
  --amarelo-bg:  rgba(232, 180, 0, 0.1);
  --vermelho:    #C53030;
  --vermelho-cla:#E53E3E;
  --branco:      #FFFFFF;
  --cinza-cla:   #F7F7F7;
  --cinza:       #6B7280;
  --cinza-esc:   #374151;
  --escuro:      #1A1A2E;
  --shadow-xs:   0 1px 4px rgba(147, 0, 182, 0.06);
  --shadow-sm:   0 2px 12px rgba(147, 0, 182, 0.09);
  --shadow-md:   0 6px 24px rgba(147, 0, 182, 0.15);
  --shadow-lg:   0 12px 48px rgba(147, 0, 182, 0.2);
  --radius:      12px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --ease:        all 0.3s ease;
}

/* ============================================================
   BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--escuro);
  background: var(--branco);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--escuro);
}

a { text-decoration: none; }
img { max-width: 100%; height: auto; }
ul { list-style: none; padding: 0; margin: 0; }

section { padding: 5rem 0; }

/* ============================================================
   TIPOGRAFIA UTILITÁRIA
   ============================================================ */
.font-poppins    { font-family: 'Poppins', sans-serif; }
.font-montserrat { font-family: 'Montserrat', sans-serif; }
.font-barlow     { font-family: 'Barlow Semi Condensed', sans-serif; }
.font-barlow-c   { font-family: 'Barlow Condensed', sans-serif; }

.section-label {
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--roxo);
  display: block;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--escuro);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1rem;
  color: var(--cinza);
  max-width: 580px;
  line-height: 1.75;
}

.section-divider {
  width: 56px;
  height: 4px;
  background: linear-gradient(90deg, var(--roxo), var(--verde));
  border-radius: 4px;
  margin-bottom: 1.5rem;
}

/* ============================================================
   CORES UTILITÁRIAS
   ============================================================ */
.bg-roxo        { background-color: var(--roxo) !important; }
.bg-roxo-esc    { background-color: var(--roxo-esc) !important; }
.bg-roxo-soft   { background-color: var(--roxo-bg) !important; }
.bg-verde       { background-color: var(--verde) !important; }
.bg-amarelo     { background-color: var(--amarelo) !important; }
.text-roxo      { color: var(--roxo) !important; }
.text-roxo-esc  { color: var(--roxo-esc) !important; }
.text-verde     { color: var(--verde) !important; }
.text-amarelo   { color: var(--amarelo) !important; }
.text-muted-c   { color: var(--cinza) !important; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar-crmb {
  background: var(--branco);
  border-bottom: 3px solid var(--roxo);
  padding: 0.4rem 0;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1040;
  transition: box-shadow 0.3s ease;
}

.navbar-crmb.scrolled {
  box-shadow: var(--shadow-md);
}

.navbar-brand-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-svg { width: 46px; height: 46px; flex-shrink: 0; }
.logo-img { height: 78px; width: auto; flex-shrink: 0; }

.brand-texts .brand-name {
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--roxo);
  display: block;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

.brand-texts .brand-tagline {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem;
  color: var(--cinza);
  display: block;
  letter-spacing: 0.04em;
  line-height: 1.3;
}

.nav-link-crmb {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--escuro) !important;
  padding: 0.5rem 0.8rem !important;
  transition: var(--ease);
  position: relative;
  white-space: nowrap;
}

.nav-link-crmb::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0.8rem; right: 0.8rem;
  height: 2px;
  background: var(--roxo);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.nav-link-crmb:hover,
.nav-link-crmb.active {
  color: var(--roxo) !important;
}

.nav-link-crmb:hover::after,
.nav-link-crmb.active::after {
  transform: scaleX(1);
}

.btn-ajuda-nav {
  background: linear-gradient(135deg, var(--vermelho), var(--vermelho-cla));
  color: var(--branco) !important;
  border-radius: 50px;
  padding: 0.45rem 1.1rem !important;
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  border: none;
  animation: pulse-nav 2.5s infinite;
}

.btn-ajuda-nav::after { display: none; }
.btn-ajuda-nav.active { color: var(--branco) !important; }

.btn-ajuda-nav:hover {
  background: linear-gradient(135deg, #9B2C2C, var(--vermelho));
  color: var(--branco) !important;
  transform: scale(1.04);
}

@keyframes pulse-nav {
  0%, 100% { box-shadow: 0 0 0 0 rgba(197, 48, 48, 0.5); }
  50%       { box-shadow: 0 0 0 8px rgba(197, 48, 48, 0); }
}

/* ============================================================
   BOTÕES
   ============================================================ */
.btn-crmb {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 50px;
  padding: 0.72rem 1.75rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--ease);
  text-decoration: none;
  white-space: nowrap;
}

.btn-crmb-roxo {
  background: var(--roxo);
  color: var(--branco);
  border-color: var(--roxo);
}
.btn-crmb-roxo:hover {
  background: var(--roxo-esc);
  border-color: var(--roxo-esc);
  color: var(--branco);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(147, 0, 182, 0.4);
}

.btn-crmb-outline-roxo {
  background: transparent;
  color: var(--roxo);
  border-color: var(--roxo);
}
.btn-crmb-outline-roxo:hover {
  background: var(--roxo);
  color: var(--branco);
  transform: translateY(-2px);
}

.btn-crmb-verde {
  background: var(--verde);
  color: var(--branco);
  border-color: var(--verde);
}
.btn-crmb-verde:hover {
  background: var(--verde-cla);
  border-color: var(--verde-cla);
  color: var(--branco);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(43, 97, 60, 0.4);
}

.btn-crmb-amarelo {
  background: var(--amarelo);
  color: var(--roxo-esc);
  border-color: var(--amarelo);
}
.btn-crmb-amarelo:hover {
  background: var(--amarelo-cla);
  border-color: var(--amarelo-cla);
  color: var(--roxo-esc);
  transform: translateY(-2px);
}

.btn-crmb-white {
  background: var(--branco);
  color: var(--roxo);
  border-color: var(--branco);
}
.btn-crmb-white:hover {
  background: var(--roxo-bg);
  color: var(--roxo);
  transform: translateY(-2px);
}

.btn-crmb-outline-white {
  background: transparent;
  color: var(--branco);
  border-color: rgba(255, 255, 255, 0.6);
}
.btn-crmb-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--branco);
  color: var(--branco);
  transform: translateY(-2px);
}

.btn-crmb-sm {
  padding: 0.45rem 1.1rem;
  font-size: 0.78rem;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: linear-gradient(135deg, #681970 0%, #9300B6 55%, #670082 100%);
  min-height: 88vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 5rem 0 4rem;
}

.hero-decor-1 {
  position: absolute;
  top: -20%;
  right: -8%;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
}

.hero-decor-2 {
  position: absolute;
  bottom: -25%;
  left: -6%;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.05);
  background: rgba(255,255,255,0.015);
}

.hero-content { position: relative; z-index: 2; }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--branco);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  color: var(--branco);
  font-weight: 700;
  line-height: 1.18;
  margin-bottom: 1.25rem;
}

.hero-title .highlight { color: var(--amarelo); }

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  max-width: 500px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.18);
  flex-wrap: wrap;
}

.hero-stat .num {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: var(--amarelo);
  display: block;
  line-height: 1;
}

.hero-stat .lbl {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.68);
  display: block;
  margin-top: 0.2rem;
  font-weight: 500;
}

.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-photo-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4), 0 0 0 3px rgba(255,255,255,0.15);
  max-width: 520px;
  width: 100%;
}

.hero-photo-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(103,0,130,0.35) 100%);
  pointer-events: none;
}

.hero-photo {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================================
   CARDS DE SERVIÇO
   ============================================================ */
.svc-card {
  background: var(--branco);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  border: 1px solid var(--roxo-brd);
  transition: var(--ease);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--roxo);
  border-radius: 0 4px 4px 0;
  transition: width 0.3s ease;
}

.svc-card.verde::before  { background: var(--verde); }
.svc-card.amarelo::before { background: var(--amarelo); }

.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(147,0,182,0.22);
}

.svc-card:hover::before { width: 6px; }

.svc-icon {
  width: 58px;
  height: 58px;
  background: var(--roxo-bg);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 1.25rem;
}

.svc-icon.verde  { background: var(--verde-bg); }
.svc-icon.amarelo { background: var(--amarelo-bg); }

.svc-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--escuro);
  margin-bottom: 0.75rem;
}

.svc-card p {
  font-size: 0.88rem;
  color: var(--cinza);
  line-height: 1.7;
  margin-bottom: 0;
}

/* ============================================================
   COMO FUNCIONA
   ============================================================ */
.step-wrap { position: relative; text-align: center; padding: 1.5rem 1rem; }

.step-num {
  width: 68px;
  height: 68px;
  background: linear-gradient(135deg, var(--roxo), var(--roxo-esc));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--branco);
  box-shadow: 0 4px 20px rgba(147,0,182,0.38);
  position: relative;
  z-index: 1;
}

.step-line {
  position: absolute;
  top: 2.6rem;
  right: -30%;
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, var(--roxo), rgba(147,0,182,0.1));
}

.step-wrap h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.step-wrap p {
  font-size: 0.87rem;
  color: var(--cinza);
  line-height: 1.65;
}

/* ============================================================
   CAMPANHA CARDS
   ============================================================ */
.camp-card {
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  position: relative;
  overflow: hidden;
  height: 100%;
  color: var(--branco);
  background: linear-gradient(135deg, var(--roxo-esc), var(--roxo));
}

.camp-card.verde  { background: linear-gradient(135deg, #1E4429, var(--verde)); }
.camp-card.lilas  { background: linear-gradient(135deg, #4A1259, #7B2D8B); }
.camp-card.amarelo {
  background: linear-gradient(135deg, #7A5E00, var(--amarelo));
  color: var(--escuro);
}

.camp-card::after {
  content: '';
  position: absolute;
  bottom: -35px; right: -35px;
  width: 140px; height: 140px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
}

.camp-mes {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 0.4rem;
}

.camp-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: inherit;
}

.camp-card p { font-size: 0.87rem; opacity: 0.88; margin-bottom: 0; }

/* ============================================================
   UNIDADES
   ============================================================ */
.unidade-card {
  background: var(--branco);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--roxo-brd);
  transition: var(--ease);
  height: 100%;
}

.unidade-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.unidade-hdr {
  background: linear-gradient(135deg, var(--roxo), var(--roxo-esc));
  padding: 1.5rem;
  color: var(--branco);
}

.unidade-hdr.verde { background: linear-gradient(135deg, var(--verde), #1E4429); }

.unidade-hdr h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--branco);
  margin-bottom: 0.25rem;
}

.unidade-hdr .bairro {
  font-size: 0.8rem;
  opacity: 0.8;
  font-weight: 500;
}

.unidade-body { padding: 1.5rem; }

.unidade-info {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 0.9rem;
  font-size: 0.86rem;
  color: var(--cinza-esc);
}

.unidade-info i {
  color: var(--roxo);
  font-size: 0.95rem;
  margin-top: 0.12rem;
  flex-shrink: 0;
}

.unidade-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid rgba(0,0,0,0.06);
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

/* ============================================================
   EVENTOS / AGENDA
   ============================================================ */
.evento-item {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  padding: 1.25rem;
  border: 1px solid var(--roxo-brd);
  border-radius: var(--radius);
  background: var(--branco);
  transition: var(--ease);
  margin-bottom: 0.75rem;
}

.evento-item:hover {
  box-shadow: var(--shadow-sm);
  border-color: rgba(147,0,182,0.2);
}

.evento-date-box {
  background: var(--roxo-bg);
  border-radius: 10px;
  padding: 0.6rem 0.75rem;
  text-align: center;
  min-width: 56px;
  flex-shrink: 0;
}

.evento-date-box .dia {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--roxo);
  line-height: 1;
  display: block;
}

.evento-date-box .mes {
  font-size: 0.68rem;
  color: var(--cinza);
  text-transform: uppercase;
  font-weight: 600;
  display: block;
}

.evento-badge {
  display: inline-block;
  padding: 0.18rem 0.6rem;
  border-radius: 50px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.4rem;
}

.badge-oficina  { background: rgba(147,0,182,0.1); color: var(--roxo); }
.badge-palestra { background: var(--verde-bg); color: var(--verde); }
.badge-campanha { background: var(--amarelo-bg); color: #7A5E00; }
.badge-atend    { background: rgba(197,48,48,0.08); color: var(--vermelho); }

.evento-titulo {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--escuro);
  margin-bottom: 0.25rem;
}

.evento-local {
  font-size: 0.78rem;
  color: var(--cinza);
}

/* ============================================================
   FORMULÁRIOS
   ============================================================ */
.form-card {
  background: var(--branco);
  border-radius: var(--radius-lg);
  border: 1px solid var(--roxo-brd);
  padding: 2.5rem;
  box-shadow: var(--shadow-xs);
}

.form-header {
  background: linear-gradient(135deg, var(--roxo), var(--roxo-esc));
  border-radius: var(--radius) var(--radius) 0 0;
  padding: 1.5rem 2rem;
  color: var(--branco);
  margin: -2.5rem -2.5rem 2rem;
}

.form-control-crmb {
  border: 1.5px solid rgba(147,0,182,0.18);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  width: 100%;
  transition: var(--ease);
  background: var(--branco);
  color: var(--escuro);
}

.form-control-crmb:focus {
  outline: none;
  border-color: var(--roxo);
  box-shadow: 0 0 0 3px rgba(147,0,182,0.1);
}

.form-label-crmb {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.83rem;
  color: var(--escuro);
  margin-bottom: 0.4rem;
  display: block;
}

.form-select-crmb {
  border: 1.5px solid rgba(147,0,182,0.18);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  width: 100%;
  transition: var(--ease);
  background: var(--branco);
  color: var(--escuro);
  cursor: pointer;
  appearance: auto;
}

.form-select-crmb:focus {
  outline: none;
  border-color: var(--roxo);
  box-shadow: 0 0 0 3px rgba(147,0,182,0.1);
}

.form-textarea-crmb {
  resize: vertical;
  min-height: 120px;
}

.form-check-crmb {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  cursor: pointer;
}

.form-check-crmb input[type="checkbox"] {
  accent-color: var(--roxo);
  width: 16px;
  height: 16px;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 0.12rem;
}

.form-check-crmb span {
  font-size: 0.83rem;
  color: var(--cinza-esc);
  line-height: 1.6;
}

/* ============================================================
   TABS CUSTOMIZADOS
   ============================================================ */
.tabs-crmb {
  border-bottom: 2px solid var(--roxo-brd);
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.tabs-crmb::-webkit-scrollbar { display: none; }

.tab-btn {
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  padding: 0.75rem 1.25rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--cinza);
  cursor: pointer;
  white-space: nowrap;
  margin-bottom: -2px;
  transition: var(--ease);
}

.tab-btn:hover { color: var(--roxo); }

.tab-btn.active {
  color: var(--roxo);
  border-bottom-color: var(--roxo);
}

.tab-pane { display: none; }
.tab-pane.active { display: block; animation: fadeInUp 0.3s ease; }

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

/* ============================================================
   ACCORDION FAQ
   ============================================================ */
.acc-item {
  border: 1px solid var(--roxo-brd);
  border-radius: var(--radius) !important;
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.acc-btn {
  width: 100%;
  background: var(--branco);
  border: none;
  padding: 1.1rem 1.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--escuro);
  text-align: left;
  transition: var(--ease);
}

.acc-btn:hover { color: var(--roxo); }
.acc-btn.open { color: var(--roxo); background: var(--roxo-bg); }

.acc-btn i { transition: transform 0.3s ease; font-size: 0.85rem; color: var(--roxo); flex-shrink: 0; }
.acc-btn.open i { transform: rotate(180deg); }

.acc-body {
  padding: 0 1.4rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
}

.acc-body.open {
  max-height: 400px;
  padding: 0 1.4rem 1.25rem;
}

.acc-body p {
  font-size: 0.88rem;
  color: var(--cinza-esc);
  line-height: 1.75;
  margin: 0;
}

/* ============================================================
   ESTATÍSTICAS
   ============================================================ */
.stat-card {
  text-align: center;
  padding: 2rem 1rem;
}

.stat-card .stat-num {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 3rem;
  color: var(--roxo);
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-card .stat-lbl {
  font-size: 0.85rem;
  color: var(--cinza);
  font-weight: 500;
}

/* ============================================================
   TRANSPARÊNCIA
   ============================================================ */
.transp-card {
  background: var(--branco);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--roxo-brd);
  height: 100%;
}

.transp-card h4 {
  font-size: 1rem;
  color: var(--roxo);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--roxo-bg);
}

.info-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--cinza-cla);
  font-size: 0.85rem;
}

.info-row:last-child { border-bottom: none; }

.info-row .label {
  color: var(--cinza);
  font-weight: 500;
  min-width: 140px;
  flex-shrink: 0;
}

.info-row .value {
  color: var(--escuro);
  font-weight: 600;
  text-align: right;
}

/* ============================================================
   PAGE HEADER (páginas internas)
   ============================================================ */
.page-hdr {
  background: linear-gradient(135deg, var(--roxo-esc) 0%, var(--roxo) 100%);
  padding: 4rem 0 3rem;
  color: var(--branco);
  position: relative;
  overflow: hidden;
}

.page-hdr::after {
  content: '';
  position: absolute;
  top: -30%;
  right: -8%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 2px solid rgba(255,255,255,0.07);
}

.breadcrumb-crmb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
}

.breadcrumb-crmb a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb-crmb a:hover { color: var(--amarelo); }

.page-hdr h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--branco);
  margin-bottom: 0.75rem;
}

.page-hdr p {
  font-size: 1rem;
  color: rgba(255,255,255,0.78);
  max-width: 560px;
  line-height: 1.75;
}

/* ============================================================
   NOTÍCIAS / BLOG
   ============================================================ */
.news-card {
  background: var(--branco);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--roxo-brd);
  transition: var(--ease);
  height: 100%;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.news-img {
  height: 200px;
  background: linear-gradient(135deg, var(--roxo-bg), rgba(147,0,182,0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(147,0,182,0.2);
}

.news-body { padding: 1.5rem; }

.news-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.75rem;
  color: var(--cinza);
}

.news-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--escuro);
  margin-bottom: 0.6rem;
  line-height: 1.35;
}

.news-card p {
  font-size: 0.84rem;
  color: var(--cinza);
  line-height: 1.65;
}

/* ============================================================
   MATERIAL CARD
   ============================================================ */
.mat-card {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.25rem;
  border: 1px solid var(--roxo-brd);
  border-radius: var(--radius);
  background: var(--branco);
  transition: var(--ease);
}

.mat-card:hover {
  box-shadow: var(--shadow-sm);
  border-color: rgba(147,0,182,0.2);
}

.mat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--roxo-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--roxo);
  flex-shrink: 0;
}

.mat-icon.verde { background: var(--verde-bg); color: var(--verde); }

.mat-info h5 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.mat-info span {
  font-size: 0.75rem;
  color: var(--cinza);
}

/* ============================================================
   ALERT AJUDA
   ============================================================ */
.ajuda-bar {
  background: linear-gradient(90deg, var(--vermelho), #B91C1C);
  padding: 0.75rem 0;
  color: var(--branco);
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.84rem;
}

.ajuda-bar a {
  color: var(--amarelo);
  text-decoration: underline;
}

/* ============================================================
   BOTÃO FLUTUANTE "PRECISO DE AJUDA AGORA"
   ============================================================ */
.btn-flutuante {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  background: linear-gradient(135deg, var(--vermelho), var(--vermelho-cla));
  color: var(--branco);
  border: none;
  border-radius: 50px;
  padding: 0.85rem 1.5rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(197, 48, 48, 0.45);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  animation: pulse-float 2.5s infinite;
  transition: var(--ease);
}

.btn-flutuante:hover {
  background: linear-gradient(135deg, #9B2C2C, var(--vermelho));
  color: var(--branco);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(197, 48, 48, 0.55);
}

@keyframes pulse-float {
  0%, 100% { box-shadow: 0 4px 20px rgba(197,48,48,0.45), 0 0 0 0 rgba(229,62,62,0.4); }
  50%       { box-shadow: 0 4px 20px rgba(197,48,48,0.45), 0 0 0 14px rgba(229,62,62,0); }
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.btn-top {
  position: fixed;
  bottom: 5.8rem;
  right: 2rem;
  width: 42px;
  height: 42px;
  background: var(--roxo);
  color: var(--branco);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: var(--ease);
  z-index: 9998;
  font-size: 1rem;
}

.btn-top.visible { opacity: 1; pointer-events: all; }
.btn-top:hover { background: var(--roxo-esc); transform: translateY(-3px); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: linear-gradient(160deg, var(--roxo-esc) 0%, var(--escuro) 100%);
  color: rgba(255,255,255,0.8);
  padding: 4rem 0 0;
}

.footer-brand-name {
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--branco);
  display: block;
  margin-bottom: 0.75rem;
}

.footer p {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
}

.footer-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--amarelo);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.footer-links li { margin-bottom: 0.55rem; }

.footer-links a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.85rem;
  transition: var(--ease);
}

.footer-links a:hover {
  color: var(--amarelo);
  padding-left: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 3rem;
  padding: 1.5rem 0;
  font-size: 0.76rem;
  color: rgba(255,255,255,0.4);
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px;
  padding: 0.35rem 0.9rem;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.5rem;
}

/* ============================================================
   SOCIAL ICONS
   ============================================================ */
.social-links { display: flex; gap: 0.75rem; margin-top: 1rem; }

.social-link {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--ease);
  border: 1px solid rgba(255,255,255,0.12);
}

.social-link:hover {
  background: var(--roxo);
  border-color: var(--roxo);
  color: var(--branco);
  transform: translateY(-2px);
}

/* ============================================================
   MODAL AJUDA AGORA
   ============================================================ */
.modal-ajuda {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-ajuda.open { display: flex; }

.modal-ajuda-content {
  background: var(--branco);
  border-radius: var(--radius-xl);
  max-width: 560px;
  width: 100%;
  overflow: hidden;
  animation: slideUp 0.3s ease;
}

.modal-ajuda-hdr {
  background: linear-gradient(135deg, var(--vermelho), #B91C1C);
  padding: 1.5rem 2rem;
  color: var(--branco);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-ajuda-hdr h3 {
  color: var(--branco);
  font-size: 1.1rem;
  margin: 0;
}

.modal-close {
  background: rgba(255,255,255,0.15);
  border: none;
  color: var(--branco);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--ease);
}

.modal-close:hover { background: rgba(255,255,255,0.3); }

.modal-ajuda-body { padding: 2rem; }

.ajuda-link-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border: 1px solid var(--roxo-brd);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--escuro);
  transition: var(--ease);
  margin-bottom: 0.75rem;
}

.ajuda-link-card:hover {
  border-color: var(--roxo);
  background: var(--roxo-bg);
  color: var(--roxo);
  transform: translateX(4px);
}

.ajuda-link-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}

.ajuda-link-card strong { display: block; font-size: 0.92rem; }
.ajuda-link-card span { font-size: 0.78rem; color: var(--cinza); }

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

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 991px) {
  .navbar-crmb {
    min-height: 130px;
  }
  .navbar-crmb .container {
    position: relative;
    justify-content: center;
    min-height: 130px;
  }
  .navbar-brand-wrap {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .logo-img { height: 117px; }
  .navbar-toggler {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
  }
  .navbar-crmb .navbar-collapse {
    background: var(--branco);
    padding: 1rem;
    border-top: 1px solid var(--roxo-brd);
    margin-top: 0.5rem;
  }
  .nav-link-crmb::after { display: none; }
  .hero { min-height: auto; padding: 3.5rem 0 3rem; }
  .hero-visual { display: none; }
  .step-line { display: none; }
}

@media (max-width: 768px) {
  section { padding: 3rem 0; }
  .hero-stats { gap: 1.5rem; }
  .btn-flutuante { bottom: 1rem; right: 1rem; font-size: 0.76rem; padding: 0.7rem 1.1rem; }
  .btn-top { bottom: 4.5rem; right: 1rem; }
  .form-card { padding: 1.5rem; }
  .form-header { margin: -1.5rem -1.5rem 1.5rem; }
  .info-row { flex-direction: column; gap: 0.25rem; }
  .info-row .value { text-align: left; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.7rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn-crmb { text-align: center; justify-content: center; }
}
