/* ============================================================
   index.css — DocScolar Landing Page
   Versão refatorada: sem duplicatas, CSS organizado
============================================================ */

/* ===== VARIÁVEIS ===== */
:root {
  --primary:       #005ca9;
  --primary-dark:  #003d75;
  --primary-light: #e8f0fe;
  --accent:        #f0a500;
  --accent-light:  #fff8e7;
  --teal:          #0d9488;
  --success:       #059669;
  --text:          #1a1f36;
  --text-muted:    #5a6278;
  --muted:         #64748b;
  --bg:            #f7f8fc;
  --bg-light:      #f8fafc;
  --white:         #ffffff;
  --border:        #e4e8f0;
  --shadow-sm:     0 2px 8px rgba(0,71,171,0.07);
  --shadow-md:     0 8px 32px rgba(0,71,171,0.12);
  --shadow-lg:     0 24px 64px rgba(0,71,171,0.16);
  --radius:        16px;
  --radius-sm:     8px;
  --radius-pill:   999px;
  --ease:          cubic-bezier(0.16, 1, 0.3, 1);
}

/* ===== BASE ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text);
  background: var(--white);
  margin: 0;
  padding-top: 72px;
  -webkit-font-smoothing: antialiased;
}

/* ===== SCROLL REVEAL ===== */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal="left"]  { transform: translateX(-30px); }
[data-reveal="right"] { transform: translateX(30px); }
[data-reveal="left"].is-visible,
[data-reveal="right"].is-visible { transform: translateX(0); }
[data-reveal][data-delay="1"] { transition-delay: 0.1s; }
[data-reveal][data-delay="2"] { transition-delay: 0.18s; }
[data-reveal][data-delay="3"] { transition-delay: 0.26s; }
[data-reveal][data-delay="4"] { transition-delay: 0.34s; }

/* ===== HELPERS ===== */
.section-tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 0.35rem 0.95rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.9rem;
}

.section-title {
  font-family: "Fraunces", serif;
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.section-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 520px;
}

/* ===== BOTÕES ===== */
.btn-hero-primary {
  background: var(--accent);
  color: #1a1f36;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.82rem 1.85rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
  box-shadow: 0 4px 20px rgba(240,165,0,0.38);
}
.btn-hero-primary:hover {
  background: #d49400;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(240,165,0,0.45);
  color: #1a1f36;
}

.btn-primary-solid {
  background: var(--primary);
  color: white;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.82rem 1.85rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
  box-shadow: 0 4px 20px rgba(0,71,171,0.28);
}
.btn-primary-solid:hover {
  background: var(--primary-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,71,171,0.38);
}

.btn-hero-secondary {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s;
}
.btn-hero-secondary:hover { color: #fff; }

/* ===================================================================
   NAVBAR
=================================================================== */
.navbar {
  padding: 0.875rem 0;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.navbar-brand img { height: 36px; width: auto; }

.nav-link {
  color: var(--text-muted) !important;
  font-weight: 500;
  font-size: 0.875rem;
  padding: 0.4rem 0.75rem !important;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover {
  color: var(--primary) !important;
  background: rgba(0,71,171,0.06);
}

.btn-nav-login {
  background: var(--primary) !important;
  color: var(--white) !important;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.5rem 1.25rem !important;
  border-radius: var(--radius-pill);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-nav-login:hover {
  background: var(--primary-dark) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0,71,171,0.35);
}

/* ===================================================================
   HERO
=================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0 80px;
  background: linear-gradient(145deg, #001a5c 0%, #0047AB 55%, #006fd6 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 20%, rgba(240,165,0,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 10% 90%, rgba(240,165,0,0.07) 0%, transparent 50%);
  pointer-events: none;
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(5,22,50,.88);
  border: 1px solid rgba(94,234,212,.32);
  box-shadow: 0 0 0 1px rgba(94,234,212,.06), inset 0 1px 0 rgba(255,255,255,.04), 0 2px 10px rgba(0,0,0,.22);
  color: #e0f7f4;
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.42rem 1.15rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.5rem;
}
.hero-badge .hero-badge-star { color: #5eead4; font-size: 0.85rem; line-height: 1; }

.hero-principal {
  font-family: "Fraunces", serif;
  font-size: clamp(1.7rem, 3.8vw, 2.9rem) !important;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}
.hero-principal em { font-style: italic; color: var(--accent); }

.hero .lead {
  font-size: clamp(1rem, 2vw, 1.1rem);
  color: rgba(255,255,255,0.78);
  font-weight: 400;
  max-width: 560px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

/* hero stats (comentado no HTML, manter aqui por compatibilidade) */
.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  flex-wrap: wrap;
}
.hero-stat-item .stat-num {
  font-family: "Fraunces", serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.hero-stat-item .stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  margin-top: 0.2rem;
}

/* ===== HERO MOCKUP ===== */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.hero-mockup {
  width: 100%;
  max-width: 520px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.1);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 11px;
  background: #f0f4f8;
  user-select: none;
}
.mk-navbar {
  background: #1455a4;
  display: flex;
  align-items: center;
  padding: 0 14px;
  height: 38px;
  gap: 10px;
  flex-shrink: 0;
}
.mk-nav-hamburger { display: flex; flex-direction: column; gap: 3px; cursor: pointer; }
.mk-nav-hamburger span { display: block; width: 14px; height: 1.5px; background: rgba(255,255,255,0.8); border-radius: 2px; }
.mk-nav-brand { display: flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 700; color: #fff; letter-spacing: -0.3px; }
.mk-nav-brand-icon { width: 18px; height: 18px; background: rgba(255,255,255,0.2); border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: 9px; }
.mk-nav-school { font-size: 9.5px; font-weight: 600; color: rgba(255,255,255,0.9); background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2); border-radius: 4px; padding: 2px 7px; margin-left: 4px; display: flex; align-items: center; gap: 4px; }
.mk-nav-school span { font-size: 8px; opacity: 0.7; }
.mk-nav-spacer { flex: 1; }
.mk-nav-user { display: flex; align-items: center; gap: 5px; font-size: 9px; color: rgba(255,255,255,0.9); font-weight: 600; }
.mk-avatar { width: 22px; height: 22px; border-radius: 50%; background: rgba(255,255,255,0.25); display: flex; align-items: center; justify-content: center; font-size: 9px; color: white; font-weight: 700; }
.mk-body { display: flex; height: 310px; overflow: hidden; }
.mk-sidebar { width: 110px; background: #1455a4; flex-shrink: 0; padding: 6px 0; }
.mk-sidebar-item { display: flex; align-items: center; gap: 7px; padding: 7px 10px; font-size: 9px; font-weight: 600; color: rgba(255,255,255,0.75); cursor: pointer; transition: background 0.15s; }
.mk-sidebar-item.active { background: #2f8ec4; color: #fff; }
.mk-sidebar-item i { font-size: 10px; }
.mk-sidebar-item.has-arrow { justify-content: space-between; }
.mk-sidebar-item.has-arrow .mk-arrow { font-size: 7px; opacity: 0.6; }
.mk-main { flex: 1; background: #f0f4f8; overflow: hidden; display: flex; flex-direction: column; }
.mk-filters { background: #fff; border-bottom: 1px solid #dde3ed; padding: 7px 10px; display: grid; grid-template-columns: 1fr 1fr 0.8fr 0.7fr auto; gap: 6px; align-items: end; }
.mk-filter-group { display: flex; flex-direction: column; gap: 2px; }
.mk-filter-label { font-size: 7.5px; font-weight: 600; color: #6b7280; letter-spacing: 0.03em; }
.mk-filter-select { border: 1px solid #d1d9e6; border-radius: 4px; padding: 3px 20px 3px 6px; font-size: 8.5px; color: #374151; font-weight: 500; background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='5' viewBox='0 0 8 5'%3E%3Cpath fill='%236b7280' d='M0 0l4 5 4-5z'/%3E%3C/svg%3E") no-repeat right 5px center; background-size: 6px; appearance: none; cursor: pointer; }
.mk-btn-clear { width: 22px; height: 22px; border-radius: 4px; background: #fff0f0; border: 1px solid #fca5a5; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 10px; color: #ef4444; align-self: flex-end; }
.mk-table-controls { display: flex; align-items: center; justify-content: space-between; padding: 5px 10px 4px; }
.mk-show-label { font-size: 8px; color: #6b7280; display: flex; align-items: center; gap: 4px; }
.mk-show-select { border: 1px solid #d1d9e6; border-radius: 3px; padding: 1px 14px 1px 4px; font-size: 8px; color: #374151; font-weight: 600; background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='4' viewBox='0 0 6 4'%3E%3Cpath fill='%236b7280' d='M0 0l3 4 3-4z'/%3E%3C/svg%3E") no-repeat right 3px center; background-size: 5px; appearance: none; }
.mk-search-wrap { display: flex; align-items: center; gap: 4px; font-size: 8px; color: #6b7280; }
.mk-search-input { border: 1px solid #d1d9e6; border-radius: 3px; padding: 2px 6px; font-size: 8px; color: #374151; width: 90px; }
.mk-legenda { display: flex; align-items: center; gap: 3px; font-size: 8px; color: #6b7280; background: #f0f4f8; border: 1px solid #d1d9e6; border-radius: 3px; padding: 2px 6px; cursor: pointer; }
.mk-legenda i { color: #3b82f6; font-size: 9px; }
.mk-table-wrap { flex: 1; overflow: hidden; }
.mk-table { width: 100%; border-collapse: collapse; }
.mk-table thead tr { background: #1d5fa8; }
.mk-table thead th { color: #fff; font-size: 8px; font-weight: 700; padding: 6px 7px; text-align: left; white-space: nowrap; letter-spacing: 0.02em; }
.mk-table thead th .mk-sort { display: inline-flex; flex-direction: column; gap: 0; margin-left: 3px; opacity: 0.7; vertical-align: middle; }
.mk-table thead th .mk-sort i { font-size: 6px; line-height: 1; }
.mk-table tbody tr { background: #fff; border-bottom: 1px solid #e9eef5; }
.mk-table tbody tr:nth-child(even) { background: #f7f9fc; }
.mk-table tbody td { padding: 6px 7px; font-size: 8px; color: #374151; vertical-align: middle; }
.mk-table tbody td.td-comp { font-weight: 600; color: #1e3a5f; }
.mk-doc-cell { display: flex; align-items: center; gap: 4px; }
.mk-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.mk-badge { display: inline-block; border-radius: 3px; padding: 1.5px 6px; font-size: 7.5px; font-weight: 700; letter-spacing: 0.02em; white-space: nowrap; }
.mk-badge-gray  { background: #e5e7eb; color: #374151; }
.mk-badge-green { background: #00a651; color: #fff; }
.mk-badge-red   { background: #fee2e2; color: #dc2626; }
.mk-badge-blue  { background: #dbeafe; color: #1d4ed8; }
.mk-actions { display: flex; align-items: center; gap: 3px; flex-wrap: wrap; }
.mk-act-icon { width: 16px; height: 16px; border-radius: 3px; display: flex; align-items: center; justify-content: center; font-size: 8px; cursor: pointer; opacity: 0.8; }
.mk-act-info     { background: #dbeafe; color: #2563eb; }
.mk-act-pdf      { background: #fee2e2; color: #dc2626; }
.mk-act-edit     { background: #d1fae5; color: #059669; }
.mk-act-copy     { background: #f3f4f6; color: #6b7280; }
.mk-act-pdf-gray { background: #f3f4f6; color: #9ca3af; }

/* ===================================================================
   SEÇÃO DORES
=================================================================== */
.section-dores {
  padding: 90px 0;
  background: var(--bg);
  position: relative;
}
.section-dores::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg, transparent, transparent 40px,
    rgba(0,71,171,0.015) 40px, rgba(0,71,171,0.015) 41px
  );
  pointer-events: none;
}
.dores-header { margin-bottom: 48px; }
.dores-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 991px) { .dores-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px)  { .dores-grid { grid-template-columns: 1fr; } }

.dor-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  transition: box-shadow 0.22s ease, transform 0.22s ease;
}
.dor-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.08); transform: translateY(-2px); }
.dor-icon { width: 44px; height: 44px; background: #fef2f2; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; color: #dc2626; flex-shrink: 0; }
.dor-content h6 { font-size: 14px; font-weight: 700; color: #111827; margin: 0 0 6px; line-height: 1.4; }
.dor-content p { font-size: 13px; color: #6b7280; margin: 0; line-height: 1.6; }
.dor-x { position: absolute; top: 16px; right: 16px; font-size: 16px; color: #fca5a5; }

.dor-card--solucao {
  background: linear-gradient(135deg, #0047ab 0%, #0369a1 100%);
  border-color: transparent;
  align-items: flex-start;
  justify-content: center;
}
.dor-card--solucao:hover { box-shadow: 0 12px 32px rgba(0,71,171,0.35); transform: translateY(-3px); }
.dor-solucao-inner { display: flex; flex-direction: column; gap: 10px; }
.dor-solucao-check { width: 44px; height: 44px; background: rgba(255,255,255,0.15); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 22px; color: #fff; }
.dor-card--solucao h5 { font-size: 17px; font-weight: 800; color: #fff; margin: 0; line-height: 1.3; }
.dor-card--solucao p { font-size: 13px; color: rgba(255,255,255,0.82); margin: 0; line-height: 1.6; }
.dor-solucao-btn { display: inline-flex; align-items: center; gap: 6px; background: #fff; color: #0047ab; font-size: 13px; font-weight: 700; padding: 9px 18px; border-radius: var(--radius-pill); text-decoration: none; margin-top: 4px; transition: background 0.2s, transform 0.2s; }
.dor-solucao-btn:hover { background: #e8f0fe; transform: translateX(2px); }

/* ===================================================================
   SOBRE
=================================================================== */
.section-sobre { padding: 90px 0; background: var(--white); }
.sobre-visual { position: relative; }
.sobre-card-main {
  background: linear-gradient(135deg, var(--primary) 0%, #006fd6 100%);
  border-radius: 20px;
  padding: 2rem;
  color: white;
  box-shadow: var(--shadow-lg);
}
.sobre-card-main h4 { font-family: "Fraunces", serif; font-size: 1.3rem; margin-bottom: 1rem; }
.sobre-progress-item { margin-bottom: 1rem; }
.sobre-progress-label { display: flex; justify-content: space-between; font-size: 0.78rem; margin-bottom: 0.3rem; color: rgba(255,255,255,0.8); }
.progress { height: 6px; background: rgba(255,255,255,0.2); border-radius: 50px; }
.progress-bar { border-radius: 50px; background: var(--accent); }
.sobre-card-float { position: absolute; bottom: -20px; right: -15px; background: white; border-radius: 16px; padding: 1rem 1.25rem; box-shadow: var(--shadow-lg); min-width: 160px; }
.float-stat-num { font-family: "Fraunces", serif; font-size: 1.8rem; font-weight: 700; color: var(--primary); line-height: 1; }
.float-stat-label { font-size: 0.72rem; color: var(--text-muted); margin-top: 0.2rem; }

/* ===================================================================
   PILARES DE VALOR
=================================================================== */
.section-pilares { padding: 90px 0; background: var(--bg); }
.pilar-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--border);
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.pilar-card::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.pilar-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.pilar-card:hover::after { transform: scaleX(1); }
.pilar-icon { width: 56px; height: 56px; border-radius: 14px; background: var(--primary-light); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--primary); margin-bottom: 1.25rem; }
.pilar-title { font-weight: 700; font-size: 1.05rem; margin-bottom: 0.6rem; color: var(--text); }
.pilar-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; margin: 0; }

/* ===================================================================
   LGPD
=================================================================== */
.section-lgpd {
  padding: 90px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.section-lgpd::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(#cbd5e1 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: .25;
  pointer-events: none;
}
.lgpd-soft-alert {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fff7ed;
  border: 1.5px solid #fed7aa;
  border-left: 5px solid var(--accent);
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 48px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.lgpd-soft-alert-icon { font-size: 1.4rem; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.lgpd-soft-alert p { font-size: 14px; line-height: 1.65; color: #78350f; margin: 0; }

.lgpd-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 768px) { .lgpd-grid { grid-template-columns: 1fr; } }

.lgpd-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.22s ease, border-color 0.22s ease;
}
.lgpd-card:hover { box-shadow: 0 6px 28px rgba(0,92,169,.1); border-color: #c7d8f8; }
.lgpd-card.card-highlight { border-color: #bfdbfe; background: linear-gradient(135deg, #f0f7ff 0%, #fff 100%); }
.card-head { display: flex; align-items: flex-start; gap: 14px; }
.card-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--primary-light); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: var(--primary); flex-shrink: 0; }
.lgpd-card.card-highlight .card-icon { background: #dbeafe; }
.card-head-text { flex: 1; }
.card-ref { font-size: 11px; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: .07em; opacity: .75; margin-bottom: 3px; }
.card-title { font-size: 15px; font-weight: 700; color: var(--text); line-height: 1.3; }
.card-divider { border: none; border-top: 1px solid var(--border); margin: 0; }
.card-body-lgpd { display: flex; align-items: flex-start; gap: 10px; }
.card-check { width: 22px; height: 22px; background: #d1fae5; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.card-check i { font-size: .75rem; color: #065f46; }
.card-desc { font-size: 13.5px; line-height: 1.6; color: var(--muted); }
.card-desc strong { color: var(--text); }
.lgpd-footer { margin-top: 52px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; padding-top: 32px; border-top: 1px solid var(--border); }
.lgpd-nota { font-size: 12.5px; color: var(--muted); line-height: 1.65; max-width: 600px; }
.lgpd-nota a { color: var(--primary); font-weight: 600; text-decoration: none; }
.btn-lgpd-cta { display: inline-flex; align-items: center; gap: 8px; background: var(--primary); color: #fff; font-size: 14px; font-weight: 700; padding: 13px 26px; border-radius: 10px; text-decoration: none; transition: background 0.2s, transform 0.15s; white-space: nowrap; }
.btn-lgpd-cta:hover { background: var(--primary-dark); color: #fff; transform: translateY(-1px); }

/* ===================================================================
   SISTEMA PARA A EQUIPE INTEIRA
=================================================================== */
.section-sistema-equipe { padding: 90px 0; background: var(--bg); }
.equipe-card { background: var(--white); border-radius: var(--radius); padding: 2rem; border: 1px solid var(--border); height: 100%; transition: box-shadow 0.22s ease; }
.equipe-card:hover { box-shadow: var(--shadow-md); }
.equipe-card--destaque { background: linear-gradient(135deg, var(--primary) 0%, #006fd6 100%); border-color: transparent; color: white; }
.equipe-card--destaque .equipe-title { color: white; }
.equipe-card--destaque .equipe-lista li { color: rgba(255,255,255,0.85); }
.equipe-card--destaque .equipe-lista li::before { background: rgba(255,255,255,0.5); }
.equipe-card-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.25rem; }
.equipe-icon { width: 44px; height: 44px; border-radius: 10px; background: rgba(0,71,171,0.08); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: var(--primary); flex-shrink: 0; }
.equipe-card--destaque .equipe-icon { background: rgba(255,255,255,0.18); color: white; }
.equipe-title { font-weight: 700; font-size: 1rem; color: var(--text); margin: 0; }
.equipe-lista { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.6rem; }
.equipe-lista li { font-size: 0.875rem; color: var(--text-muted); line-height: 1.55; padding-left: 1.1rem; position: relative; }
.equipe-lista li::before { content: ''; position: absolute; left: 0; top: 0.52em; width: 6px; height: 6px; border-radius: 50%; background: var(--primary); flex-shrink: 0; }

/* ===================================================================
   FORMULÁRIOS PERSONALIZADOS
=================================================================== */
.section-formularios {
  padding: 90px 0;
  background: linear-gradient(135deg, #001a5c 0%, #0047AB 60%, #0d9488 100%);
}
.form-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.form-chips span { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25); color: #fff; font-size: 0.78rem; font-weight: 600; padding: 4px 12px; border-radius: 20px; letter-spacing: .02em; }
.form-feat-card { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); border-radius: 14px; padding: 1.4rem 1.2rem; color: #fff; height: 100%; transition: background 0.22s ease, transform 0.22s ease; }
.form-feat-card:hover { background: rgba(255,255,255,.18); transform: translateY(-4px); }
.form-feat-card i { font-size: 1.6rem; color: #5eead4; margin-bottom: .75rem; display: block; }
.form-feat-card h6 { font-weight: 700; font-size: .9rem; margin-bottom: .4rem; }
.form-feat-card p { font-size: .8rem; color: rgba(255,255,255,.75); line-height: 1.6; margin: 0; }

/* ===================================================================
   COMO FUNCIONA
=================================================================== */
.section-funciona { padding: 90px 0; background: var(--white); }
.step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  height: 100%;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.step-num { position: absolute; top: 1rem; right: 1rem; font-family: "Fraunces", serif; font-size: 3.5rem; font-weight: 700; color: var(--primary); opacity: 0.07; line-height: 1; }
.step-icon-wrap { width: 72px; height: 72px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), #006fd6); display: flex; align-items: center; justify-content: center; font-size: 1.8rem; color: white; margin: 0 auto 1.25rem; box-shadow: 0 8px 24px rgba(0,71,171,0.25); transition: transform 0.3s; }
.step-card:hover .step-icon-wrap { transform: scale(1.08) rotate(-5deg); }
.step-card h5 { font-weight: 700; font-size: 1rem; margin-bottom: 0.5rem; color: var(--text); }
.step-card p { font-size: 0.85rem; color: var(--text-muted); margin: 0; line-height: 1.7; }

/* ===================================================================
   APOIO PRESENCIAL
=================================================================== */
.section-apoio { padding: 90px 0; background: var(--bg); }
.apoio-features { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 1.75rem; }
.apoio-feat-item { display: flex; gap: 1rem; align-items: flex-start; }
.apoio-feat-icon { width: 40px; height: 40px; border-radius: 10px; background: #e8f0fe; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--primary); flex-shrink: 0; }
.apoio-feat-item strong { display: block; font-size: 0.95rem; font-weight: 700; color: var(--text); margin-bottom: 0.25rem; }
.apoio-feat-item p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; margin: 0; }
.apoio-card-tabela { background: #fff; border-radius: 14px; box-shadow: 0 2px 20px rgba(0,0,0,0.10); overflow: hidden; margin-bottom: 14px; }
.apoio-tabela-header { display: flex; align-items: center; justify-content: space-between; padding: 12px 16px; background: #f0f4ff; border-bottom: 1px solid #e0e7ff; }
.apoio-tabela-titulo { font-weight: 700; font-size: 13px; color: #4f46e5; display: flex; align-items: center; gap: 6px; }
.apoio-tabela-btn { font-size: 12px; font-weight: 600; color: #005ca9; display: flex; align-items: center; gap: 5px; background: #dbeafe; padding: 4px 10px; border-radius: 999px; }
.apoio-mini-table { width: 100%; border-collapse: collapse; font-size: 12px; }
.apoio-mini-table thead tr { background: #1e3a8a; color: #fff; }
.apoio-mini-table thead th { padding: 8px 12px; font-weight: 600; text-align: left; white-space: nowrap; }
.apoio-mini-table tbody tr { border-bottom: 1px solid #f3f4f6; }
.apoio-mini-table tbody tr:last-child { border-bottom: none; }
.apoio-mini-table tbody td { padding: 8px 12px; color: #374151; vertical-align: middle; }
.apoio-cell-docente { font-weight: 600; color: #1f2937; font-size: 12px; }
.apoio-cell-coord { font-size: 11px; color: #6b7280; margin-top: 2px; }
.apoio-cell-plano { font-weight: 500; color: #1f2937; font-size: 12px; }
.apoio-cell-turma { font-size: 11px; color: #6b7280; margin-top: 2px; }
.apoio-badge { display: inline-block; padding: 2px 9px; border-radius: 999px; font-size: 11px; font-weight: 600; white-space: nowrap; }
.apoio-badge-blue  { background: #dbeafe; color: #1d4ed8; }
.apoio-badge-green { background: #ccfbf1; color: #0d9488; }
.apoio-shared-row { display: flex; align-items: center; gap: 6px; padding: 10px 14px; background: #f8fafc; border-top: 1px solid #f3f4f6; }
.apoio-avatar { width: 26px; height: 26px; border-radius: 50%; color: #fff; font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.apoio-shared-label { font-size: 11px; color: #6b7280; margin-left: 4px; }
@media (max-width: 575px) { .apoio-mini-table .col-data { display: none; } }

/* ===================================================================
   PLANOS — PRICING
=================================================================== */
.section-planos { padding: 90px 0; background: var(--white); }

.pricing-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 0 0 1.5px var(--border), var(--shadow-md);
  transition: box-shadow 0.3s;
}
.pricing-card:hover {
  box-shadow: 0 0 0 2px var(--primary), 0 24px 72px rgba(0,71,171,0.18);
}
.pricing-badge-strip {
  background: var(--accent);
  color: #1a1f36;
  font-size: 0.83rem;
  font-weight: 700;
  padding: 0.6rem 1.5rem;
  text-align: center;
  letter-spacing: 0.03em;
}
.pricing-body {
  padding: 2.75rem 3rem;
  text-align: center;
}
@media (max-width: 576px) { .pricing-body { padding: 2rem 1.5rem; } }

.pricing-name {
  font-family: "Fraunces", serif;
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.2rem;
}
.pricing-subtitle {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.pricing-original {
  font-size: 0.88rem;
  color: #9ca3af;
  margin-bottom: 0.3rem;
}
.pricing-price-row {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
}
.pricing-currency { font-size: 1.35rem; font-weight: 700; color: var(--primary); line-height: 1.7; }
.pricing-value    { font-family: "Fraunces", serif; font-size: 3.5rem; font-weight: 700; color: var(--primary); line-height: 1; }
.pricing-period   { font-size: 0.9rem; color: var(--text-muted); line-height: 2.2; }
.pricing-note     { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 0.3rem; }

.pricing-divider { border: none; border-top: 1px solid var(--border); margin: 1.75rem 0; }

.pricing-features {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.5;
}
.pricing-feature i { color: var(--teal); font-size: 1rem; flex-shrink: 0; margin-top: 1px; }

.pricing-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  background: var(--primary);
  color: white;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.9rem 1.5rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: background 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
  box-shadow: 0 4px 16px rgba(0,71,171,0.3);
}
.pricing-cta:hover {
  background: var(--primary-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,71,171,0.4);
}
.pricing-footnote {
  margin-top: 1.1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.pricing-footnote i { color: var(--teal); }

/* ===================================================================
   DEPOIMENTOS
=================================================================== */
.section-depoimentos {
  padding: 90px 0;
  background: linear-gradient(145deg, #001a5c, #0047AB);
  position: relative;
  overflow: hidden;
}
.section-depoimentos::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}
.depo-card { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius); padding: 2rem; height: 100%; backdrop-filter: blur(10px); transition: background 0.22s ease; }
.depo-card:hover { background: rgba(255,255,255,0.11); }
.depo-stars { color: #f5c518; font-size: 0.85rem; margin-bottom: 1rem; }
.depo-text { font-size: 0.92rem; color: rgba(255,255,255,0.82); line-height: 1.75; margin-bottom: 1.5rem; font-style: italic; }
.depo-author { display: flex; align-items: center; gap: 0.75rem; }
.depo-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--accent); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.9rem; color: #002f2b; flex-shrink: 0; }
.depo-name { font-weight: 700; font-size: 0.85rem; color: white; }
.depo-role { font-size: 0.75rem; color: rgba(255,255,255,0.5); }

/* ===================================================================
   FAQ
=================================================================== */
.section-faq { padding: 90px 0; background: var(--bg); }
.section-faq .accordion-item { border: 1px solid var(--border); border-radius: var(--radius-sm) !important; margin-bottom: 0.5rem; overflow: hidden; }
.section-faq .accordion-button { font-weight: 600; font-size: 0.95rem; color: var(--text); background: var(--white); }
.section-faq .accordion-button:not(.collapsed) { color: var(--primary); background: var(--primary-light); box-shadow: none; }
.section-faq .accordion-button:focus { box-shadow: none; }
.section-faq .accordion-body { font-size: 0.9rem; color: var(--text-muted); line-height: 1.75; }

/* ===================================================================
   CONTATO
=================================================================== */
.section-contato { padding: 90px 0; background: var(--bg); }
.contato-wrapper { background: var(--white); border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--border); }
.contato-left { background: linear-gradient(145deg, var(--primary-dark), var(--primary)); padding: 3rem; color: white; height: 100%; }
.contato-left h3 { font-family: "Fraunces", serif; font-size: 1.7rem; margin-bottom: 1rem; }
.contato-left p { color: rgba(255,255,255,0.75); font-size: 0.9rem; line-height: 1.7; margin-bottom: 2rem; }
.contato-info-item { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.contato-info-icon { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; font-size: 0.95rem; flex-shrink: 0; }
.contato-info-text { font-size: 0.85rem; color: rgba(255,255,255,0.8); }
.contato-info-text a { color: rgba(255,255,255,0.8); text-decoration: none; }
.contato-info-text a:hover { color: white; }
.contato-right { padding: 3rem; }
.contato-right h4 { font-weight: 700; font-size: 1.3rem; margin-bottom: 0.4rem; color: var(--text); }
.contato-right .sub { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1.75rem; }
.form-label { font-size: 0.82rem; font-weight: 600; color: var(--text); margin-bottom: 0.4rem; }
.form-control { border: 1.5px solid var(--border); border-radius: var(--radius-sm); padding: 0.65rem 0.9rem; font-size: 0.88rem; color: var(--text); transition: border-color 0.2s, box-shadow 0.2s; font-family: inherit; }
.form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0,71,171,0.1); outline: none; }
.btn-submit { background: var(--primary); color: white; font-weight: 700; font-size: 0.9rem; padding: 0.75rem 1.75rem; border: none; border-radius: var(--radius-pill); transition: background 0.2s, transform 0.2s, box-shadow 0.2s; cursor: pointer; }
.btn-submit:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,71,171,0.35); }

/* ===================================================================
   FOOTER
=================================================================== */
footer { background: var(--text); color: rgba(255,255,255,0.65); padding: 60px 0 0; }
.footer-brand img { height: 36px; width: auto; filter: brightness(0) invert(1); margin-bottom: 0.75rem; }
.footer-brand p { font-size: 0.82rem; line-height: 1.6; max-width: 240px; }
.footer-heading { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.9); margin-bottom: 1rem; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { font-size: 0.85rem; color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--accent); }
.footer-contact-item { display: flex; align-items: center; gap: 0.6rem; font-size: 0.82rem; margin-bottom: 0.6rem; }
.footer-contact-item i { color: var(--accent); font-size: 0.9rem; }
.footer-contact-item a { color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--accent); }
.footer-social { display: flex; gap: 0.6rem; margin-top: 1rem; }
.footer-social a { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.07); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); font-size: 1rem; transition: background 0.2s, color 0.2s; text-decoration: none; }
.footer-social a:hover { background: var(--accent); color: #002f2b; }
.footer-bottom { margin-top: 3rem; border-top: 1px solid rgba(255,255,255,0.08); padding: 1.25rem 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.footer-bottom span { font-size: 0.78rem; }
.footer-bottom a { font-size: 0.78rem; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.footer-bottom a:hover { color: var(--accent); }

/* ===================================================================
   HERO FADE-UP ANIMATIONS
=================================================================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-fade-up { animation: fadeUp 0.6s ease forwards; opacity: 0; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* ===================================================================
   RESPONSIVE
=================================================================== */
@media (max-width: 767px) {
  .hero { padding: 70px 0 60px; }
  .sobre-card-float { position: static; margin-top: 1rem; }
  .contato-left  { padding: 2rem; }
  .contato-right { padding: 2rem; }

  .section-dores,
  .section-sobre,
  .section-pilares,
  .section-lgpd,
  .section-sistema-equipe,
  .section-formularios,
  .section-funciona,
  .section-apoio,
  .section-planos,
  .section-depoimentos,
  .section-faq,
  .section-contato { padding: 64px 0; }
}
