/* =============================================
   GUIA INFORMATIVO — style.css
   Visual: Azul · Plus Jakarta Sans · Header branco
   ============================================= */

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

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary:   #1a56db;
  --primary-d: #1e40af;
  --accent:    #0891b2;
  --green:     #16a34a;
  --yellow:    #ca8a04;
  --red:       #dc2626;
  --dark:      #1e293b;
  --bg:        #f8fafc;
  --white:     #ffffff;
  --gray-100:  #f1f5f9;
  --gray-200:  #e2e8f0;
  --gray-600:  #475569;
  --gray-800:  #1e293b;
  --text:      #0f172a;
  --radius:    8px;
  --radius-lg: 12px;
  --shadow:    0 2px 16px rgba(26,86,219,.09);
}

body {
  font-family: 'Plus Jakarta Sans', 'Segoe UI', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
}

a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; }

/* ── DISCLAIMER BANNER ── */
.disclaimer-bar {
  background: #78350f;
  border-bottom: 3px solid #fbbf24;
  text-align: center;
  padding: 10px 20px;
  font-size: .85rem;
  font-weight: 600;
  color: #fef3c7;
  letter-spacing: .01em;
}
.disclaimer-bar span { color: #fde68a; font-weight: 700; }
.disclaimer-bar .cnpj-tag {
  display: inline-block;
  background: rgba(255,255,255,.15);
  border-radius: 4px;
  padding: 1px 8px;
  margin-left: 10px;
  font-size: .8rem;
  color: #fde68a;
  font-weight: 600;
}

/* ── HEADER ── */
header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 12px rgba(0,0,0,.06);
}
.header-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
}
.logo {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo span {
  color: var(--gray-600);
  font-weight: 500;
  font-size: .88rem;
}

nav { display: flex; align-items: center; gap: 2px; flex-wrap: wrap; }
nav a {
  padding: 6px 12px;
  border-radius: var(--radius);
  font-size: .87rem;
  color: var(--gray-600);
  font-weight: 600;
  transition: color .2s, background .2s;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
nav a:hover { color: var(--primary); background: #eff6ff; text-decoration: none; }
nav a.active { background: #eff6ff; color: var(--primary); }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, #1e40af 0%, #1a56db 60%, #0891b2 100%);
  color: var(--white);
  padding: 72px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 100px;
  background: var(--bg);
  border-radius: 50%;
  pointer-events: none;
}
.hero-inner {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: .82rem;
  font-weight: 700;
  margin-bottom: 22px;
  color: #bfdbfe;
}
.hero h1 {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -.02em;
}
.hero h1 strong { color: #bfdbfe; }
.hero p {
  font-size: 1.05rem;
  opacity: .9;
  max-width: 560px;
  margin: 0 auto 14px;
  line-height: 1.7;
}
.hero-disclaimer {
  display: inline-block;
  background: rgba(220,38,38,.25);
  border: 1px solid rgba(252,165,165,.4);
  border-radius: var(--radius);
  padding: 8px 18px;
  font-size: .84rem;
  font-weight: 700;
  color: #fecaca;
  margin-bottom: 28px;
}
.btn-group { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  border: none;
  transition: transform .15s, box-shadow .15s, filter .15s;
  min-height: 48px;
  min-width: 48px;
  font-family: inherit;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.22); text-decoration: none; filter: brightness(1.05); }
.btn-white   { background: var(--white); color: var(--primary); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.6); }
.btn-primary { background: var(--primary); color: var(--white); }
.btn-green   { background: var(--green); color: var(--white); }

/* ── SECTION ── */
.section { padding: 64px 24px; }
.section-alt { background: var(--white); }
.container { max-width: 1140px; margin: 0 auto; }
.section-title {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 10px;
  text-align: center;
  letter-spacing: -.01em;
}
.section-sub {
  color: var(--gray-600);
  margin-bottom: 40px;
  text-align: center;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  font-size: .97rem;
}

/* ── CARDS ── */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--primary);
  transition: transform .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(26,86,219,.15); }
.card-icon { font-size: 1.8rem; margin-bottom: 14px; }
.card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; color: var(--dark); }
.card p { color: var(--gray-600); font-size: .93rem; margin-bottom: 16px; flex: 1; }
.card-link { font-weight: 700; color: var(--primary); font-size: .93rem; }
.card-link:hover { text-decoration: underline; }

/* ── INFO BOX ── */
.info-box {
  background: #eff6ff;
  border-left: 4px solid var(--primary);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 24px 0;
}
.info-box.warning { background: #fffbeb; border-color: var(--yellow); }
.info-box.success { background: #f0fdf4; border-color: var(--green); }
.info-box.danger  { background: #fef2f2; border-color: var(--red); }
.info-box h4 { font-weight: 700; margin-bottom: 8px; color: var(--dark); font-size: 1rem; }

/* ── TRANSPARENCY ── */
.transparency {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  color: var(--white);
  padding: 56px 24px;
}
.transparency h2 { font-size: 1.6rem; font-weight: 800; margin-bottom: 10px; text-align: center; }
.transparency > p { opacity: .8; max-width: 700px; margin: 0 auto 10px; text-align: center; }
.transp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 16px;
  margin-top: 32px;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
.transp-item {
  background: rgba(255,255,255,.06);
  border-radius: var(--radius-lg);
  padding: 20px;
  font-size: .93rem;
  border: 1px solid rgba(255,255,255,.09);
  transition: background .2s;
  text-align: center;
}
.transp-item:hover { background: rgba(255,255,255,.10); }
.transp-item .icon { font-size: 1.7rem; margin-bottom: 10px; }

/* ── STEPS ── */
.steps { display: flex; flex-direction: column; gap: 16px; }
.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
}
.step-num {
  background: var(--primary);
  color: var(--white);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}
.step-body h3 { font-weight: 700; margin-bottom: 6px; color: var(--dark); }
.step-body p  { color: var(--gray-600); font-size: .93rem; }

/* ── TABLE ── */
.table-wrap { overflow-x: auto; margin: 24px 0; border-radius: var(--radius-lg); }
table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
th { background: var(--dark); color: var(--white); padding: 14px 16px; text-align: left; font-size: .93rem; font-weight: 700; }
td { padding: 12px 16px; border-bottom: 1px solid var(--gray-200); font-size: .93rem; }
tr:last-child td { border-bottom: none; }
tr:nth-child(even) td { background: var(--gray-100); }

/* ── ALERT ── */
.alert {
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-left: 4px solid #ea580c;
  border-radius: var(--radius);
  padding: 18px 20px;
  margin: 20px 0;
  color: #7c2d12;
  font-size: .93rem;
}
.alert strong { display: block; margin-bottom: 8px; font-size: 1rem; }

/* ── AVISO PUBLICIDADE ── */
.ad-notice {
  background: #f8fafc;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 12px 18px;
  font-size: .82rem;
  color: var(--gray-600);
  text-align: center;
  margin: 20px 0;
}
.ad-notice strong { color: var(--dark); }

/* ── FAQ ACCORDION ── */
.faq { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }
.faq details {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid var(--gray-200);
}
.faq details summary {
  font-weight: 700;
  color: var(--dark);
  padding: 18px 24px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 48px;
  user-select: none;
  transition: background .15s;
}
.faq details summary::-webkit-details-marker { display: none; }
.faq details summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--primary);
  flex-shrink: 0;
  margin-left: 12px;
}
.faq details[open] summary::after { content: '−'; }
.faq details summary:hover { background: #eff6ff; }
.faq details p, .faq details ul {
  color: var(--gray-600);
  font-size: .93rem;
  padding: 0 24px 18px 24px;
  line-height: 1.7;
}
.faq details ul { padding-left: 44px; }
.faq details[open] summary { border-bottom: 1px solid var(--gray-200); background: #eff6ff; }

/* ── CONTACT GRID ── */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; margin-top: 30px; }
.contact-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  text-align: center;
  border-top: 3px solid var(--primary);
}
.contact-item .icon { font-size: 2rem; margin-bottom: 12px; }
.contact-item h4 { font-weight: 700; margin-bottom: 8px; color: var(--dark); }
.contact-item p, .contact-item a { color: var(--gray-600); font-size: .93rem; }

/* ── FOOTER ── */
footer {
  background: var(--dark);
  color: #94a3b8;
  padding: 56px 24px 28px;
  border-top: 4px solid var(--primary);
}
.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid #334155;
}
.footer-col h4 { color: #60a5fa; font-size: .93rem; font-weight: 700; margin-bottom: 14px; text-transform: uppercase; letter-spacing: .06em; }
.footer-col p, .footer-col a { font-size: .87rem; color: #64748b; line-height: 2.1; display: block; }
.footer-col a:hover { color: #60a5fa; text-decoration: none; }
.footer-bottom {
  max-width: 1140px;
  margin: 24px auto 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: .78rem;
  color: #334155;
}

/* ── LEGAL PAGES ── */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 24px;
}
.legal-content h1 { font-size: 1.9rem; margin-bottom: 8px; font-weight: 800; color: var(--dark); }
.legal-content .date { color: var(--gray-600); font-size: .87rem; margin-bottom: 36px; padding-bottom: 20px; border-bottom: 2px solid var(--gray-200); }
.legal-content h2 { font-size: 1.12rem; font-weight: 700; margin: 28px 0 10px; color: var(--primary); padding-left: 12px; border-left: 3px solid var(--primary); }
.legal-content p { margin-bottom: 14px; color: var(--gray-600); }
.legal-content ul { margin: 10px 0 14px 20px; color: var(--gray-600); }
.legal-content ul li { margin-bottom: 6px; }
.legal-content a { color: var(--primary); }

/* ── BREADCRUMB ── */
.breadcrumb {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 10px 24px;
  font-size: .83rem;
}
.breadcrumb ol {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  flex-wrap: wrap;
}
.breadcrumb li { display: flex; align-items: center; gap: 6px; color: var(--gray-600); }
.breadcrumb li + li::before { content: '›'; color: var(--gray-600); }
.breadcrumb a { color: var(--primary); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb [aria-current="page"] { color: var(--dark); font-weight: 600; }

/* ── OFFICIAL LINKS ── */
.official-links {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-left: 4px solid var(--green);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin: 28px 0;
}
.official-links h4 { font-weight: 700; color: #166534; margin-bottom: 12px; }
.official-links p  { color: var(--gray-600); font-size: .9rem; margin-bottom: 12px; }
.official-links ul { padding-left: 20px; }
.official-links ul li { margin-bottom: 8px; font-size: .9rem; color: var(--gray-600); }
.official-links ul a { color: #166534; font-weight: 700; }

/* ── COOKIE CONSENT ── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #0f172a;
  color: #e2e8f0;
  padding: 16px 24px;
  z-index: 9999;
  display: none;
  border-top: 3px solid var(--primary);
}
.cookie-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-inner p { font-size: .87rem; line-height: 1.5; flex: 1; min-width: 200px; }
.cookie-inner p a { color: #60a5fa; }
.cookie-btns { display: flex; gap: 8px; flex-shrink: 0; flex-wrap: wrap; }
.btn-cookie-accept {
  background: var(--primary); color: var(--white); border: none;
  border-radius: var(--radius); padding: 10px 22px; font-size: .87rem; font-weight: 700;
  cursor: pointer; min-height: 48px; min-width: 48px; font-family: inherit;
}
.btn-cookie-reject {
  background: transparent; color: #64748b; border: 1px solid #334155;
  border-radius: var(--radius); padding: 10px 18px; font-size: .87rem;
  cursor: pointer; min-height: 48px; min-width: 48px; font-family: inherit;
}
.btn-cookie-accept:hover { background: var(--primary-d, #1e40af); }
.btn-cookie-reject:hover { color: #e2e8f0; border-color: #475569; }

/* ── TOUCH TARGETS ── */
.btn { min-height: 48px; min-width: 48px; }
nav a { min-height: 44px; display: inline-flex; align-items: center; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero { padding: 52px 20px 64px; }
  .hero h1 { font-size: 1.75rem; }
  .section-title { font-size: 1.4rem; }
  .header-inner { flex-direction: column; height: auto; padding: 14px 20px; gap: 10px; }
  nav { justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cookie-inner { flex-direction: column; align-items: flex-start; }
  .hero::after { width: 500px; height: 70px; }
}
