/* =============================================
   ATUALIDADES HOJE — style.css
   Visual: Dark header · Teal + Laranja · Outfit
   ============================================= */

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

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

:root {
  --primary:   #0d9488;   /* teal */
  --primary-d: #0f766e;
  --accent:    #f97316;   /* laranja */
  --accent-d:  #ea580c;
  --green:     #16a34a;
  --yellow:    #ca8a04;
  --dark:      #1e293b;   /* slate escuro */
  --dark-2:    #0f172a;
  --bg:        #f0fdfa;   /* teal clarinho */
  --white:     #ffffff;
  --gray-100:  #f1f5f9;
  --gray-200:  #e2e8f0;
  --gray-600:  #475569;
  --gray-800:  #1e293b;
  --text:      #0f172a;
  --radius:    6px;
  --radius-lg: 12px;
  --shadow:    0 2px 16px rgba(13,148,136,.10);
}

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

/* ── HEADER ── dark/slate */
header {
  background: var(--dark);
  border-bottom: none;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.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: 800;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: -.01em;
}
.logo span {
  color: var(--primary);
  font-weight: 500;
  font-size: .92rem;
  letter-spacing: 0;
}

nav { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
nav a {
  padding: 7px 13px;
  border-radius: var(--radius);
  font-size: .88rem;
  color: #94a3b8;
  font-weight: 500;
  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,.07); text-decoration: none; }
nav a.active { background: var(--primary); color: var(--white); }

/* ── HERO ── teal gradient diferente */
.hero {
  background: linear-gradient(135deg, #134e4a 0%, #0d9488 60%, #0891b2 100%);
  color: var(--white);
  padding: 80px 24px 90px;
  text-align: left;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  pointer-events: none;
}
.hero::before {
  content: '';
  position: absolute;
  right: 80px;
  bottom: -120px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(249,115,22,.12);
  pointer-events: none;
}
.hero-inner {
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero h1 {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
  max-width: 680px;
  letter-spacing: -.02em;
}
.hero h1 em {
  font-style: normal;
  color: #fcd34d;
}
.hero p {
  font-size: 1.05rem;
  opacity: .88;
  max-width: 580px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.btn-group { display: flex; gap: 12px; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 50px;      /* pill — diferente dos outros sites */
  font-weight: 700;
  font-size: .97rem;
  cursor: pointer;
  border: none;
  transition: transform .15s, box-shadow .15s, filter .15s;
  min-height: 48px;
  min-width: 48px;
  letter-spacing: .01em;
}
.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(--accent); color: var(--white); }
.btn-green   { background: var(--green); color: var(--white); }
.btn-teal    { background: var(--primary); color: var(--white); }

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

/* títulos com barra lateral — diferente do centralizado dos outros sites */
.section-title {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 10px;
  padding-left: 16px;
  border-left: 4px solid var(--accent);
  letter-spacing: -.01em;
}
.section-sub {
  color: var(--gray-600);
  margin-bottom: 40px;
  max-width: 600px;
  padding-left: 20px;
  font-size: .98rem;
}

/* ── CARDS — layout horizontal com ícone à esquerda ── */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 20px; }
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--primary);   /* esquerda, não topo */
  transition: transform .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(13,148,136,.18); }
.card-icon {
  font-size: 1.8rem;
  margin-bottom: 14px;
  width: 52px;
  height: 52px;
  background: #f0fdfa;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.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(--accent); font-size: .93rem; }
.card-link:hover { text-decoration: underline; }

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

/* ── TRANSPARENCY ── diferente: teal em vez de gray-800 */
.transparency {
  background: linear-gradient(135deg, #134e4a 0%, #1e293b 100%);
  color: var(--white);
  padding: 56px 24px;
}
.transparency h2 { font-size: 1.6rem; font-weight: 800; margin-bottom: 12px; padding-left: 16px; border-left: 4px solid var(--accent); }
.transparency > p { opacity: .8; max-width: 700px; margin-bottom: 12px; padding-left: 20px; }
.transp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 16px;
  margin-top: 32px;
  max-width: 960px;
}
.transp-item {
  background: rgba(255,255,255,.07);
  border-radius: var(--radius-lg);
  padding: 20px;
  font-size: .93rem;
  border: 1px solid rgba(255,255,255,.1);
  transition: background .2s;
}
.transp-item:hover { background: rgba(255,255,255,.11); }
.transp-item .icon { font-size: 1.6rem; margin-bottom: 10px; }

/* ── STEPS ── quadrado em vez de círculo */
.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);
  border-left: none;
  border-top: none;
  position: relative;
}
.step-num {
  background: var(--accent);       /* laranja em vez de azul */
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: var(--radius);    /* quadrado, não círculo */
  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; }
th:first-child { border-left: 4px solid var(--primary); }
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 var(--accent);
  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; }

/* ── 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::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 18px;
  background: var(--primary);
  border-radius: 2px;
  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: #f0fdfa; }
.faq details p, .faq details ul {
  color: var(--gray-600);
  font-size: .93rem;
  padding: 0 24px 18px 42px;
  line-height: 1.7;
}
.faq details ul { padding-left: 64px; }
.faq details[open] summary { border-bottom: 1px solid var(--gray-200); background: #f0fdfa; }

/* ── 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: var(--shadow);
  text-align: center;
  border-bottom: 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 ── teal-dark */
footer {
  background: var(--dark-2);
  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 #1e293b;
}
.footer-col h4 { color: var(--primary); font-size: .95rem; 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; display: block; }
.footer-col a:hover { color: var(--primary); 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: 800; 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: 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(--dark);
  border-bottom: 1px solid #334155;
  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: #64748b; }
.breadcrumb li + li::before { content: '›'; color: #475569; }
.breadcrumb a { color: var(--primary); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb [aria-current="page"] { color: #94a3b8; font-weight: 600; }

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

/* ── COOKIE CONSENT BANNER ── */
.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: #5eead4; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.btn-cookie-accept {
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 50px;
  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: 50px;
  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: 56px 20px 64px; text-align: center; }
  .hero h1 { font-size: 1.75rem; }
  .hero p { margin-left: auto; margin-right: auto; }
  .btn-group { justify-content: center; }
  .section-title { font-size: 1.4rem; }
  .section-sub { padding-left: 0; }
  .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; }
  .transparency h2 { padding-left: 12px; }
  .transparency > p { padding-left: 0; }
}
