/* =============================================
   FOCO EM DIA — style.css
   Visual: Violeta + Esmeralda · Nunito · Header gradiente
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&display=swap');

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

:root {
  --primary:   #7c3aed;   /* violeta */
  --primary-d: #6d28d9;
  --accent:    #059669;   /* esmeralda */
  --accent-d:  #047857;
  --green:     #16a34a;
  --yellow:    #ca8a04;
  --dark:      #1e1b4b;   /* indigo escuro */
  --dark-2:    #0f0c29;
  --bg:        #f5f3ff;   /* lavanda clarinho */
  --white:     #ffffff;
  --gray-100:  #f1f5f9;
  --gray-200:  #e2e8f0;
  --gray-600:  #475569;
  --gray-800:  #1e293b;
  --text:      #1e1b4b;
  --radius:    8px;
  --radius-lg: 16px;
  --shadow:    0 2px 20px rgba(124,58,237,.10);
}

body {
  font-family: 'Nunito', '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: #2e1065;
  border-bottom: 3px solid var(--accent);
  text-align: center;
  padding: 10px 20px;
  font-size: .88rem;
  font-weight: 700;
  color: #ddd6fe;
  letter-spacing: .01em;
}
.disclaimer-bar span {
  color: #6ee7b7;
  margin-right: 4px;
}

/* ── HEADER ── gradiente indigo → violeta */
header {
  background: linear-gradient(135deg, #1e1b4b 0%, #4c1d95 60%, #7c3aed 100%);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 24px rgba(124,58,237,.35);
}
.header-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: -.01em;
}
.logo span {
  color: #a7f3d0;
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: 0;
}

nav { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
nav a {
  padding: 7px 13px;
  border-radius: 50px;
  font-size: .88rem;
  color: #c4b5fd;
  font-weight: 700;
  transition: color .2s, background .2s;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
nav a:hover { color: var(--white); background: rgba(255,255,255,.12); text-decoration: none; }
nav a.active { background: rgba(255,255,255,.18); color: var(--white); }

/* ── HERO ── centrado com gradiente violeta e linhas diagonais */
.hero {
  background: linear-gradient(160deg, #1e1b4b 0%, #4c1d95 50%, #7c3aed 100%);
  color: var(--white);
  padding: 88px 24px 96px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 48px,
    rgba(255,255,255,.03) 48px,
    rgba(255,255,255,.03) 50px
  );
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 120px;
  background: var(--bg);
  border-radius: 50%;
  pointer-events: none;
}
.hero-inner {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero h1 {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -.02em;
}
.hero h1 em {
  font-style: normal;
  color: #6ee7b7;    /* esmeralda claro */
}
.hero p {
  font-size: 1.08rem;
  opacity: .88;
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.btn-group { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: .97rem;
  cursor: pointer;
  border: none;
  transition: transform .15s, box-shadow .15s, filter .15s;
  min-height: 48px;
  min-width: 48px;
  letter-spacing: .02em;
  font-family: inherit;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.25); text-decoration: none; filter: brightness(1.07); }
.btn-white   { background: var(--white); color: var(--primary); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.55); }
.btn-primary { background: var(--primary); color: var(--white); }
.btn-green   { background: var(--accent); color: var(--white); }

/* ── SECTION ── */
.section { padding: 72px 24px; }
.section-alt { background: var(--white); }
.container { max-width: 1140px; margin: 0 auto; }

/* títulos centrados com underline esmeralda */
.section-title {
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 10px;
  text-align: center;
  letter-spacing: -.02em;
  position: relative;
  padding-bottom: 16px;
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
}
.section-sub {
  color: var(--gray-600);
  margin-bottom: 44px;
  text-align: center;
  font-size: .98rem;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

/* ── CARDS — sem borda lateral, sombra forte + ícone círculo */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 24px; }
.card {
  background: linear-gradient(180deg, #f5f3ff 0%, var(--white) 35%);
  border-radius: var(--radius-lg);
  padding: 32px 26px 28px;
  box-shadow: 0 4px 24px rgba(124,58,237,.12);
  border: 1px solid #ede9fe;
  transition: transform .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 12px 36px rgba(124,58,237,.20); }
.card-icon {
  font-size: 1.6rem;
  margin-bottom: 16px;
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 10px; color: var(--dark); }
.card p { color: var(--gray-600); font-size: .93rem; margin-bottom: 16px; flex: 1; }
.card-link { font-weight: 800; color: var(--accent); font-size: .93rem; }
.card-link:hover { text-decoration: underline; }

/* ── INFO BOX ── */
.info-box {
  background: #f5f3ff;
  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: #ecfdf5; border-color: var(--accent); }
.info-box h4 { font-weight: 800; margin-bottom: 8px; color: var(--dark); }

/* ── TRANSPARENCY ── esmeralda escuro */
.transparency {
  background: linear-gradient(135deg, #064e3b 0%, #065f46 60%, #047857 100%);
  color: var(--white);
  padding: 60px 24px;
}
.transparency h2 {
  font-size: 1.65rem;
  font-weight: 900;
  margin-bottom: 12px;
  text-align: center;
  position: relative;
  padding-bottom: 16px;
}
.transparency h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 3px;
  background: #6ee7b7;
  border-radius: 2px;
}
.transparency > p { opacity: .8; max-width: 700px; margin: 12px auto 0; text-align: center; }
.transp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 16px;
  margin-top: 36px;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
.transp-item {
  background: rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 22px;
  font-size: .93rem;
  border: 1px solid rgba(255,255,255,.12);
  transition: background .2s;
  text-align: center;
}
.transp-item:hover { background: rgba(255,255,255,.13); }
.transp-item .icon { font-size: 1.8rem; margin-bottom: 12px; }

/* ── STEPS ── círculo violeta */
.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: 0 2px 16px rgba(124,58,237,.08);
  border: 1px solid #ede9fe;
}
.step-num {
  background: linear-gradient(135deg, var(--primary), #a855f7);
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1rem;
  flex-shrink: 0;
}
.step-body h3 { font-weight: 800; 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: 0 4px 20px rgba(124,58,237,.10); }
th { background: linear-gradient(135deg, #1e1b4b, #4c1d95); color: var(--white); padding: 14px 16px; text-align: left; font-size: .93rem; font-weight: 800; }
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: #f5f3ff; }

/* ── ALERT ── */
.alert {
  background: #fef3c7;
  border: 1px solid #fde68a;
  border-left: 4px solid var(--yellow);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin: 20px 0;
  color: #78350f;
  font-size: .93rem;
}
.alert strong { display: block; margin-bottom: 8px; font-size: 1rem; }

/* ── 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: 0 2px 12px rgba(124,58,237,.08);
  overflow: hidden;
  border: 1px solid #ede9fe;
}
.faq details summary {
  font-weight: 800;
  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::before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--primary);
  border-radius: 50%;
  margin-right: 14px;
  flex-shrink: 0;
}
.faq details summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--accent);
  transition: transform .2s;
  flex-shrink: 0;
  margin-left: 12px;
}
.faq details[open] summary::after { content: '−'; }
.faq details summary:hover { background: #f5f3ff; }
.faq details p, .faq details ul {
  color: var(--gray-600);
  font-size: .93rem;
  padding: 0 24px 18px 48px;
  line-height: 1.7;
}
.faq details ul { padding-left: 68px; }
.faq details[open] summary { border-bottom: 1px solid #ede9fe; background: #f5f3ff; }

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

/* ── FOOTER ── indigo escuro */
footer {
  background: var(--dark-2, #0f0c29);
  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 #1e1b4b;
}
.footer-col h4 { color: #a78bfa; font-size: .95rem; font-weight: 800; margin-bottom: 14px; text-transform: uppercase; letter-spacing: .06em; }
.footer-col p, .footer-col a { font-size: .87rem; color: #64748b; line-height: 2; display: block; }
.footer-col a:hover { color: #a78bfa; 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: .8rem;
  color: #334155;
}

/* ── LEGAL PAGES ── */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 24px;
}
.legal-content h1 { font-size: 2rem; margin-bottom: 8px; font-weight: 900; color: var(--dark); }
.legal-content .date { color: var(--gray-600); font-size: .88rem; margin-bottom: 36px; padding-bottom: 20px; border-bottom: 2px solid var(--gray-200); }
.legal-content h2 { font-size: 1.15rem; font-weight: 800; 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 ── lavanda claro */
.breadcrumb {
  background: #ede9fe;
  border-bottom: 1px solid #ddd6fe;
  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: #6d28d9; }
.breadcrumb li + li::before { content: '›'; color: #a78bfa; }
.breadcrumb a { color: var(--primary); font-weight: 700; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb [aria-current="page"] { color: #4c1d95; font-weight: 800; }

/* ── OFFICIAL LINKS ── */
.official-links {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin: 28px 0;
}
.official-links h4 { font-weight: 800; color: var(--accent-d); 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: var(--accent-d); font-weight: 700; }

/* ── COOKIE CONSENT BANNER ── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1e1b4b;
  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: #a78bfa; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.btn-cookie-accept {
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  padding: 10px 22px;
  font-size: .87rem;
  font-weight: 800;
  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); }
.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: 60px 20px 72px; }
  .hero h1 { font-size: 1.8rem; }
  .hero::after { width: 500px; height: 80px; }
  .section-title { font-size: 1.45rem; }
  .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; }
}
