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

/* ── VARIÁVEIS ── */
:root {
  --verde: #0D7A3E;
  --verde-escuro: #085C2E;
  --amarelo: #F5C518;
  --amarelo-escuro: #B8950E;
  --cinza-claro: #F5F5F1;
  --preto: #1A1A1A;
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'DM Sans', 'Segoe UI', system-ui, sans-serif;
  color: var(--preto);
  background: #fff;
  line-height: 1.65;
  font-size: 1rem;
}
h2 em { font-style: normal; color: var(--verde); }
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ── CONTAINER ── */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 56px 24px;
}

/* ── HEADER ── */
header {
  background: var(--verde-escuro);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}
.header-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 62px;
}
.header-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  color: white;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: -0.2px;
}
.header-logo span { color: var(--amarelo); }
nav { display: flex; gap: 0; }
nav a {
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  font-size: 0.83rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 6px;
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
}
nav a:hover { color: white; background: rgba(255,255,255,0.1); }
nav a.active { color: white; background: rgba(255,255,255,0.15); font-weight: 600; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.4rem;
  cursor: pointer;
  padding: 4px 6px;
  line-height: 1;
}

/* ── BREADCRUMB ── */
.breadcrumb {
  background: var(--cinza-claro);
  border-bottom: 1px solid #E8E8E4;
}
.breadcrumb .container { padding-top: 12px; padding-bottom: 12px; }
.breadcrumb a { color: var(--verde); text-decoration: none; font-size: 0.83rem; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { color: #BBB; margin: 0 8px; font-size: 0.83rem; }

/* ── PAGE HERO (subpáginas) ── */
.page-hero {
  background: linear-gradient(135deg, var(--verde-escuro) 0%, var(--verde) 100%);
  color: white;
  text-align: center;
}
.page-hero .container { padding-top: 52px; padding-bottom: 56px; }
.page-hero-icon { font-size: 2.8rem; margin-bottom: 16px; }
.page-hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.9rem, 4.5vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 14px;
  line-height: 1.1;
}
.page-hero h1 em { font-style: normal; color: var(--amarelo); }
.page-hero p {
  font-size: 1rem;
  color: rgba(255,255,255,0.82);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ── HERO HOME ── */
.hero {
  background: url('hero-senador-canedo.jpg') center / cover no-repeat;
  color: white;
  padding: 72px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(8, 92, 46, 0.85);
}
.hero > * { position: relative; }
.hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 5.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 18px;
}
.hero h1 em { font-style: normal; color: var(--amarelo); }
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  max-width: 540px;
  margin: 0 auto 36px;
  line-height: 1.65;
}
.hero-urgency { margin-top: 14px; font-size: 0.83rem; color: rgba(255,255,255,0.5); }
.hero-urgency strong { color: #FF8A8A; }
.hero-badge {
  display: inline-block;
  background: rgba(245,197,24,0.2);
  color: var(--amarelo);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 22px;
  border: 1px solid rgba(245,197,24,0.35);
  letter-spacing: 0.3px;
}
.hero-stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 36px;
  margin: 32px 0 8px;
}
.hero-stat { text-align: center; }
.hero-stat strong {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--amarelo);
  line-height: 1;
}
.hero-stat span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  display: block;
  margin-top: 4px;
}

/* ── COUNTDOWN BAR ── */
.countdown-bar {
  background: var(--verde-escuro);
  color: white;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  text-align: center;
}
.countdown-bar p { font-size: 0.87rem; color: rgba(255,255,255,0.82); }
.countdown-bar p strong { color: white; }
.countdown-timer { display: flex; gap: 14px; }
.countdown-unit { text-align: center; }
.countdown-unit .num {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--amarelo);
  line-height: 1;
}
.countdown-unit .lbl {
  display: block;
  font-size: 0.65rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 3px;
}

/* ── QUICK LINKS (home) ── */
.quick-links { background: var(--verde); padding: 0 24px; }
.quick-links-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  overflow-x: auto;
  gap: 0;
}
.quick-links-inner::-webkit-scrollbar { display: none; }
.quick-link {
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  font-size: 0.83rem;
  font-weight: 500;
  padding: 14px 18px;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.quick-link:hover { color: white; border-bottom-color: var(--amarelo); }

/* ── SECTION LABELS ── */
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--verde);
  margin-bottom: 10px;
  background: rgba(13,122,62,0.08);
  padding: 4px 12px;
  border-radius: 100px;
}
h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--preto);
}
.section-desc {
  font-size: 1rem;
  color: #666;
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.7;
}

/* ── SUMMARY ROW (home) ── */
.summary-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 48px;
}
.summary-box {
  background: white;
  border-radius: 14px;
  padding: 22px 20px;
  text-align: center;
  border-top: 4px solid var(--verde);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.summary-box .val {
  font-family: 'Syne', sans-serif;
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--verde);
  line-height: 1;
  margin-bottom: 6px;
}
.summary-box .lbl { font-size: 0.82rem; color: #666; }

/* ── GUIA INFOGRÁFICO (home) ── */
.guia-section { background: var(--cinza-claro); }
.guia-wrap {
  text-align: center;
  margin-top: 28px;
}
.guia-wrap img {
  max-width: 680px;
  width: 100%;
  margin: 0 auto;
  border-radius: 14px;
  box-shadow: 0 6px 28px rgba(0,0,0,0.12);
}

/* ── INFO CARDS ── */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.info-card {
  background: white;
  border-radius: 14px;
  padding: 28px 24px;
  border: 1px solid #E8E8E4;
  transition: box-shadow 0.2s, transform 0.2s;
}
.info-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.09); transform: translateY(-2px); }
.info-card-icon { font-size: 2rem; margin-bottom: 14px; }
.info-card h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--preto);
}
.info-card p { font-size: 0.88rem; color: #666; line-height: 1.65; }

/* ── NAV CARDS ── */
.nav-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
}
.nav-card {
  background: white;
  border-radius: 14px;
  padding: 28px 22px;
  border: 1px solid #E8E8E4;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}
.nav-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.09); transform: translateY(-3px); border-color: var(--verde); }
.nav-card-icon { font-size: 2rem; margin-bottom: 14px; }
.nav-card h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--preto);
}
.nav-card p { font-size: 0.87rem; color: #666; line-height: 1.6; flex: 1; }
.nav-card-arrow {
  display: inline-block;
  margin-top: 18px;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--verde);
}

/* ── ALERTAS ── */
.alert {
  border-radius: 12px;
  padding: 18px 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 0.9rem;
  line-height: 1.6;
}
.alert-icon { font-size: 1.3rem; flex-shrink: 0; }
.alert strong { display: block; margin-bottom: 3px; color: var(--preto); }
.alert-amarelo { background: rgba(245,197,24,0.12); border: 1px solid rgba(245,197,24,0.35); color: #666; }
.alert-verde   { background: rgba(13,122,62,0.07);  border: 1px solid rgba(13,122,62,0.2);   color: #555; }
.alert-vermelho{ background: rgba(220,50,50,0.07);  border: 1px solid rgba(220,50,50,0.2);   color: #555; }

/* ── TABELA DE DADOS ── */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.87rem;
}
.data-table thead tr { background: var(--verde-escuro); }
.data-table th {
  color: white;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  padding: 14px 16px;
  text-align: left;
}
.data-table td {
  padding: 13px 16px;
  border-bottom: 1px solid #F0F0EC;
  color: #444;
  vertical-align: middle;
}
.data-table tbody tr:last-child td { border-bottom: none; }
.data-table tbody tr:hover { background: rgba(13,122,62,0.03); }
.data-table .salario { font-weight: 600; color: var(--verde); white-space: nowrap; }

/* ── FOOTER ── */
footer {
  background: var(--verde-escuro);
  color: rgba(255,255,255,0.6);
  text-align: center;
  padding: 36px 24px;
  font-size: 0.82rem;
  line-height: 1.7;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 20px;
  margin-bottom: 20px;
}
.footer-nav a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.83rem;
  transition: color 0.2s;
}
.footer-nav a:hover { color: white; }

/* ── FADE-IN ── */
.fade-in-item {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-in-item.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════
   ESTILOS POR PÁGINA
   ═══════════════════════════════════ */

/* ── CARGOS ── */
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.filter-btn {
  background: white;
  border: 1.5px solid #DDD;
  color: #555;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  padding: 8px 18px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--verde);
  border-color: var(--verde);
  color: white;
}
.table-wrap {
  background: white;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #E8E8E4;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.vagas-count { display: inline-flex; align-items: center; gap: 4px; font-size: 0.82rem; }
.vagas-imediatas { color: var(--verde); font-weight: 600; }
.vagas-cr { color: #888; }
.tag-area {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 2px 9px;
  border-radius: 100px;
  letter-spacing: 0.5px;
}
.tag-saude        { background: rgba(220,20,60,0.1);   color: #C01040; }
.tag-educacao     { background: rgba(13,100,200,0.1);  color: #0D64C8; }
.tag-administrativo { background: rgba(13,122,62,0.12); color: var(--verde); }
.tag-juridico     { background: rgba(130,70,180,0.12); color: #8246B4; }
.tag-outros       { background: rgba(100,80,20,0.1);   color: #8A6A00; }
.destaque-row { background: rgba(245,197,24,0.07) !important; }
.nivel-tag { font-size: 0.72rem; font-weight: 700; padding: 3px 8px; border-radius: 4px; }
.nivel-medio   { background: #E8F4FF; color: #0063A5; }
.nivel-superior{ background: #FFF5D6; color: #996600; }
.search-input {
  width: 100%;
  max-width: 380px;
  padding: 10px 16px;
  border: 1.5px solid #DDD;
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: 'DM Sans', sans-serif;
  outline: none;
  margin-bottom: 16px;
}
.search-input:focus { border-color: var(--verde); }
.hidden { display: none; }

/* ── CRONOGRAMA ── */
.fase-section { margin-bottom: 52px; }
.fase-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--verde-escuro);
  border-left: 4px solid var(--verde);
  padding-left: 14px;
  margin-bottom: 20px;
}
.data-block {
  background: white;
  border: 1px solid #E8E8E4;
  border-radius: 14px;
  padding: 22px 24px;
  margin-bottom: 14px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: box-shadow 0.2s;
}
.data-block:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.07); }
.data-block.ativo   { border-color: var(--amarelo); background: rgba(245,197,24,0.04); }
.data-block.encerrado { opacity: 0.6; }
.data-col {
  min-width: 120px;
  text-align: center;
  background: var(--cinza-claro);
  border-radius: 10px;
  padding: 12px 10px;
}
.data-block.ativo .data-col { background: rgba(245,197,24,0.15); }
.data-col .dia { font-family: 'Syne', sans-serif; font-size: 2rem; font-weight: 800; color: var(--verde); line-height: 1; }
.data-block.ativo .data-col .dia { color: var(--amarelo-escuro); }
.data-col .mes { font-size: 0.8rem; font-weight: 600; color: #888; text-transform: uppercase; letter-spacing: 0.5px; }
.data-col .ano { font-size: 0.75rem; color: #aaa; }
.data-info { flex: 1; }
.data-info .status {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.status-ativo     { background: rgba(245,197,24,0.2);  color: var(--amarelo-escuro); }
.status-encerrado { background: #EEE; color: #999; }
.status-futuro    { background: rgba(13,122,62,0.1);   color: var(--verde); }
.data-info h3 { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1rem; margin-bottom: 5px; color: var(--preto); }
.data-info p  { font-size: 0.87rem; color: #666; }
.data-info .detail {
  margin-top: 10px;
  background: rgba(13,122,62,0.06);
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 0.83rem;
  color: #555;
}
.grupos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 28px;
}
.grupo-card {
  background: white;
  border: 1px solid #E8E8E4;
  border-radius: 12px;
  padding: 20px;
}
.grupo-card h4 { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.95rem; margin-bottom: 8px; color: var(--preto); }
.grupo-card .grupo-data { font-size: 0.8rem; font-weight: 600; color: var(--verde); margin-bottom: 10px; }
.grupo-card ul { display: flex; flex-direction: column; gap: 5px; }
.grupo-card li { font-size: 0.84rem; color: #666; padding-left: 14px; position: relative; }
.grupo-card li::before { content: '•'; position: absolute; left: 0; color: var(--verde); }

/* ── INSCRIÇÃO ── */
.steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid #EEE;
  align-items: flex-start;
}
.step:last-child { border-bottom: none; }
.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--verde);
  color: white;
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-body h3 { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1.05rem; margin-bottom: 6px; color: var(--preto); }
.step-body p  { font-size: 0.9rem; color: #555; margin-bottom: 10px; }
.step-body ul { display: flex; flex-direction: column; gap: 6px; }
.step-body li { font-size: 0.88rem; color: #555; padding-left: 18px; position: relative; }
.step-body li::before { content: '✓'; position: absolute; left: 0; color: var(--verde); font-weight: 700; }
.taxa-cards { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 24px; }
.taxa-card {
  flex: 1;
  min-width: 200px;
  background: var(--verde-escuro);
  color: white;
  border-radius: 14px;
  padding: 24px 26px;
}
.taxa-card .valor { font-family: 'Syne', sans-serif; font-size: 2.4rem; font-weight: 800; color: var(--amarelo); line-height: 1; margin-bottom: 6px; }
.taxa-card .label { font-size: 0.85rem; color: rgba(255,255,255,0.7); }
.isencao-card {
  background: rgba(13,122,62,0.06);
  border: 1px solid rgba(13,122,62,0.2);
  border-radius: 12px;
  padding: 24px;
  margin-top: 24px;
}
.isencao-card h3 { font-family: 'Syne', sans-serif; font-weight: 700; margin-bottom: 14px; color: var(--verde-escuro); }
.isencao-item { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 12px; }
.isencao-item:last-child { margin-bottom: 0; }
.isencao-icon { font-size: 1.2rem; flex-shrink: 0; }
.isencao-item p { font-size: 0.88rem; color: #555; }
.isencao-item strong { color: var(--preto); display: block; margin-bottom: 2px; }
.doc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 20px;
}
.doc-item {
  background: white;
  border: 1px solid #E8E8E4;
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 0.88rem;
}
.doc-item span { font-size: 1.2rem; }

/* ── COTAS ── */
.cota-detail {
  background: white;
  border: 1px solid #E8E8E4;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 24px;
}
.cota-header {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.cota-header.racial { background: rgba(13,122,62,0.08); border-bottom: 1px solid rgba(13,122,62,0.15); }
.cota-header.pcd    { background: rgba(30,100,200,0.08); border-bottom: 1px solid rgba(30,100,200,0.15); }
.cota-pct-big { font-family: 'Syne', sans-serif; font-size: 2.8rem; font-weight: 800; line-height: 1; color: var(--verde); }
.cota-header.pcd .cota-pct-big { color: #1464C8; }
.cota-header-text h3 { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1.1rem; margin-bottom: 4px; color: var(--preto); }
.cota-header-text p  { font-size: 0.86rem; color: #666; }
.cota-body { padding: 22px 24px; }
.cota-sub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}
.cota-sub { background: var(--cinza-claro); border-radius: 10px; padding: 14px 16px; text-align: center; }
.cota-sub .pct  { font-family: 'Syne', sans-serif; font-size: 1.5rem; font-weight: 800; color: var(--verde); line-height: 1; margin-bottom: 4px; }
.cota-sub .nome { font-size: 0.82rem; font-weight: 600; color: #555; }
.docs-list { display: flex; flex-direction: column; gap: 10px; }
.doc-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 14px;
  background: var(--cinza-claro);
  border-radius: 8px;
}
.doc-row .icon { font-size: 1.1rem; flex-shrink: 0; }
.doc-row p      { font-size: 0.87rem; color: #555; }
.doc-row strong { color: var(--preto); display: block; font-size: 0.9rem; margin-bottom: 2px; }
.contexto-box {
  background: rgba(245,197,24,0.08);
  border: 1px solid rgba(245,197,24,0.3);
  border-radius: 12px;
  padding: 22px 24px;
  margin-top: 36px;
}
.contexto-box h3 { font-family: 'Syne', sans-serif; font-weight: 700; margin-bottom: 10px; color: var(--amarelo-escuro); }
.contexto-box p  { font-size: 0.9rem; color: #555; line-height: 1.7; }
.faq { margin-top: 40px; }
.faq-item { border-bottom: 1px solid #EEE; }
.faq-item summary {
  padding: 16px 0;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--preto);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.3rem; color: var(--verde); }
.faq-item[open] summary::after { content: '−'; }
.faq-item p { font-size: 0.88rem; color: #666; padding-bottom: 16px; padding-left: 2px; line-height: 1.7; }

/* ── DICAS ── */
.materia-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.materia-card {
  background: white;
  border: 1px solid #E8E8E4;
  border-radius: 14px;
  padding: 24px;
}
.materia-card h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 14px;
  color: var(--preto);
  display: flex;
  align-items: center;
  gap: 8px;
}
.materia-card ul { display: flex; flex-direction: column; gap: 7px; }
.materia-card li { font-size: 0.87rem; color: #555; padding-left: 18px; position: relative; }
.materia-card li::before { content: '→'; position: absolute; left: 0; color: var(--verde); font-weight: 600; }
.peso { display: inline-block; font-size: 0.7rem; font-weight: 700; padding: 2px 7px; border-radius: 4px; margin-left: 6px; vertical-align: middle; }
.peso-alto  { background: rgba(220,50,50,0.12);  color: #C03020; }
.peso-medio { background: rgba(245,197,24,0.18); color: var(--amarelo-escuro); }
.peso-baixo { background: rgba(13,122,62,0.1);   color: var(--verde); }
.cronograma-estudo {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  margin-top: 24px;
}
.dia-estudo {
  background: white;
  border: 1px solid #E8E8E4;
  border-radius: 10px;
  padding: 12px 8px;
  text-align: center;
}
.dia-estudo .dia-nome    { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: #999; margin-bottom: 6px; }
.dia-estudo .dia-materia { font-size: 0.78rem; font-weight: 600; color: var(--preto); }
.dia-estudo .dia-horas   { font-size: 0.72rem; color: #aaa; margin-top: 4px; }
.dia-estudo.descanso { background: var(--cinza-claro); }
.dia-estudo.descanso .dia-materia { color: #bbb; }
.dica-row { display: flex; flex-direction: column; gap: 16px; margin-top: 8px; }
.dica-item {
  background: white;
  border: 1px solid #E8E8E4;
  border-radius: 12px;
  padding: 20px 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.dica-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--verde);
  color: white;
  font-family: 'Syne', sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.dica-item h4 { font-family: 'Syne', sans-serif; font-weight: 700; margin-bottom: 4px; color: var(--preto); font-size: 0.97rem; }
.dica-item p  { font-size: 0.87rem; color: #666; }

/* ── RESPONSIVO ── */
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--verde-escuro);
    flex-direction: column;
    padding: 12px;
    border-top: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  }
  nav.open { display: flex; }
  nav a { padding: 12px 16px; border-radius: 8px; }
  .container { padding: 40px 16px; }
  .hero { padding: 52px 16px 60px; }
  .hero-stats { gap: 8px 22px; }
  .countdown-bar { gap: 12px; padding: 12px 16px; }
  .data-block { flex-direction: column; gap: 14px; }
  .data-col { min-width: auto; width: 100%; display: flex; gap: 12px; align-items: center; padding: 10px 14px; }
  .data-col .dia { font-size: 1.4rem; }
  .cronograma-estudo { grid-template-columns: repeat(3, 1fr); }
  .step { gap: 16px; }
  .taxa-cards { flex-direction: column; }
  .cota-pct-big { font-size: 2rem; }
}
