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

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

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: #f4f8ff;
  min-height: 100vh;
  color: #334;
}

img { display: block; max-width: 100%; }

a { text-decoration: none; }

/* ── DIVIDER ── */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 16px 0 0;
}
.divider-line { height: 2px; width: 48px; background: #F5A623; border-radius: 2px; }
.divider-dot  { width: 8px; height: 8px; border-radius: 50%; background: #F5A623; }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, #0a3d72 0%, #1B6EC2 60%, #1a7fd4 100%);
  padding: 80px 24px 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-watermark {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 70%; max-width: 720px;
  opacity: .07;
  pointer-events: none;
  user-select: none;
  filter: brightness(0) invert(1);
}
.hero-inner { position: relative; max-width: 780px; margin: 0 auto; }
.hero-label {
  color: #F5A623;
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  margin-bottom: 14px;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
}
.hero h1 span { color: #F5A623; }
.hero-quote {
  display: inline-block;
  border-top: 2px solid #F5A623;
  border-bottom: 2px solid #F5A623;
  padding: 18px 32px;
  max-width: 640px;
}
.hero-quote p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: rgba(255,255,255,0.92);
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  line-height: 1.6;
}

/* ── GOLD BAR ── */
.gold-bar { height: 5px; background: #F5A623; }

/* ── DOCS SECTION ── */
.docs-section { padding: 72px 24px; background: #fff; }
.container { max-width: 1080px; margin: 0 auto; }
.container-sm { max-width: 800px; margin: 0 auto; }

.docs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.doc-card {
  background: #f7faff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(27,110,194,0.10);
  border: 1px solid #dae8fb;
  display: flex;
  flex-direction: column;
}
.doc-card-img {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: linear-gradient(160deg,#eef5ff,#fff);
}
.doc-card-img img { max-height: 100%; max-width: 100%; object-fit: contain; }
.doc-card-body { padding: 20px 22px 24px; border-top: 1px solid #dae8fb; }
.doc-card-body h3 {
  font-family: 'Playfair Display', serif;
  color: #0d4f94;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.doc-card-body p { color: #556; font-size: 0.87rem; line-height: 1.65; }

/* ── SECURITY SECTION ── */
.security-section { padding: 72px 24px; background: #f4f8ff; }
.security-intro { text-align: center; color: #445; max-width: 640px; margin: 0 auto 16px; font-size: 0.95rem; line-height: 1.7; }
.section-title {
  font-family: 'Playfair Display', serif;
  color: #0d4f94;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
}
.security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(440px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.security-card {
  display: flex;
  gap: 22px;
  background: #fff;
  border-radius: 16px;
  padding: 26px 28px;
  border: 1px solid #dae8fb;
  align-items: flex-start;
}
.security-thumb {
  flex-shrink: 0;
  width: 110px; height: 88px;
  border-radius: 10px;
  overflow: hidden;
  background: #e8f1fb;
}
.security-thumb img { width: 100%; height: 100%; object-fit: cover; }
.security-text { flex: 1; }
.security-bar { width: 36px; height: 4px; border-radius: 2px; background: #F5A623; margin-bottom: 10px; }
.security-text h3 {
  font-family: 'Playfair Display', serif;
  color: #0d4f94;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.security-text p { color: #445; font-size: 0.88rem; line-height: 1.7; }

/* ── DESIGN + SEGURANÇA ── */
.ds-section { background: #fff; }
.ds-grid {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}
.ds-left {
  background: linear-gradient(160deg, #0a3d72 0%, #1B6EC2 100%);
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.ds-tag {
  color: #F5A623;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-left: 4px solid #F5A623;
  padding-left: 12px;
}
.ds-left h2 {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 700;
  line-height: 1.3;
}
.ds-left p { color: rgba(255,255,255,0.82); font-size: 0.95rem; line-height: 1.75; }
.ds-left img { width: 100%; max-width: 360px; border-radius: 12px; box-shadow: 0 20px 60px rgba(0,0,0,0.35); }
.ds-right {
  background: #f7faff;
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-left: 5px solid #F5A623;
}
.ds-right .ds-img { border-radius: 12px; overflow: hidden; box-shadow: 0 8px 32px rgba(27,110,194,0.15); }
.ds-right .ds-img img { width: 100%; max-height: 260px; object-fit: cover; }
.ds-right h2 {
  font-family: 'Playfair Display', serif;
  color: #0d4f94;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 700;
  line-height: 1.3;
}
.ds-right p { color: #445; font-size: 0.95rem; line-height: 1.75; }

/* ── BANNER LIDERANÇA ── */
.banner-section {
  background: linear-gradient(135deg, #1B6EC2 0%, #0d4f94 100%);
  padding: 72px 24px;
  text-align: center;
}
.banner-inner { max-width: 720px; margin: 0 auto; }
.banner-badge {
  display: inline-block;
  background: #F5A623;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 99px;
  padding: 5px 18px;
  margin-bottom: 20px;
}
.banner-section h2 {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
}
.banner-section p { color: rgba(255,255,255,0.85); font-size: 1rem; line-height: 1.8; }

/* ── VALIDADE ── */
.validade-section { padding: 72px 24px; background: #fff; }
.validade-subtitle { text-align: center; color: #556; font-size: 0.95rem; margin: 12px 0 0; }
.validade-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.val-card {
  background: #f7faff;
  border-radius: 16px;
  padding: 24px 26px;
  border: 1px solid #dae8fb;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.val-card-header { display: flex; align-items: center; gap: 14px; }
.val-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #F5A623;
  color: #fff;
  font-weight: 900;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.val-card h3 { color: #0d4f94; font-weight: 800; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.05em; }
.val-card p { color: #445; font-size: 0.87rem; line-height: 1.7; }

/* ── MEC / ACCORDIONS ── */
.mec-section { padding: 72px 24px; background: #f4f8ff; }
.accordion-list { display: flex; flex-direction: column; gap: 12px; }
.accordion {
  border: 1px solid #dae8fb;
  border-radius: 12px;
  overflow: hidden;
}
.accordion-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: #fff;
  border: none;
  cursor: pointer;
  text-align: left;
  color: #0d4f94;
  font-weight: 700;
  font-size: 0.95rem;
  gap: 12px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: background 0.2s;
}
.accordion-btn.open { background: #f0f7ff; }
.accordion-btn.no-arrow { cursor: default; justify-content: center; }
.accordion-icon { width: 18px; height: 18px; flex-shrink: 0; color: #F5A623; transition: transform 0.2s; }
.accordion-icon.open { transform: rotate(180deg); }
.accordion-body { display: none; padding: 16px 24px 24px; background: #fff; }
.accordion-body.open { display: block; }
.accordion-body p { color: #445; font-size: 0.9rem; line-height: 1.75; margin-bottom: 12px; }
.accordion-body p:last-child { margin-bottom: 0; }
.highlight-box {
  color: #0d4f94;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.75;
  margin-bottom: 12px;
  padding: 12px 16px;
  background: #f0f7ff;
  border-radius: 10px;
  border-left: 4px solid #F5A623;
}

/* ── PROVA ── */
.prova-section { padding: 72px 24px; background: #fff; }
.prova-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.prova-card { background: #f7faff; border-radius: 18px; padding: 36px; border: 1px solid #dae8fb; }
.prova-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.prova-icon.blue { background: linear-gradient(135deg,#1B6EC2,#0d4f94); }
.prova-icon.orange { background: linear-gradient(135deg,#F5A623,#d4890f); }
.prova-card h3 {
  font-family: 'Playfair Display', serif;
  color: #0d4f94;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 14px;
}
.prova-card h3 span { color: #F5A623; }
.prova-card p { color: #445; font-size: 0.9rem; line-height: 1.75; margin-bottom: 12px; }
.prova-card p:last-child { margin-bottom: 0; }

/* ── INFORMAÇÕES ── */
.info-section { padding: 72px 24px; background: #f4f8ff; }
.info-subtitle { text-align: center; color: #556; font-size: 0.92rem; line-height: 1.7; max-width: 640px; margin: 12px auto 0; }
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.info-card { border-radius: 18px; overflow: hidden; border: 1px solid #dae8fb; box-shadow: 0 4px 18px rgba(27,110,194,0.08); }
.info-card-header {
  padding: 16px 24px;
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.info-card-header.blue-grad { background: linear-gradient(135deg,#1B6EC2,#0d4f94); }
.info-card-header.blue-grad-rev { background: linear-gradient(135deg,#0d4f94,#1B6EC2); }
.info-card-body { background: #fff; padding: 24px 28px; }
.check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid #f0f4fa;
}
.check-circle {
  width: 20px; height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.check-circle.orange { background: #F5A623; }
.check-circle.blue   { background: #1B6EC2; }
.check-item span.label { color: #334; font-size: 0.88rem; }

.verso-col { display: flex; flex-direction: column; gap: 20px; }
.logo-card {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #dae8fb;
  box-shadow: 0 4px 18px rgba(27,110,194,0.08);
  background: #fff;
  padding: 24px 28px;
  text-align: center;
}
.logo-card img { max-width: 220px; width: 100%; height: auto; margin: 0 auto 16px; }
.logo-card p {
  font-family: 'Playfair Display', serif;
  color: #0d4f94;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
}

/* ── ABED ── */
.abed-section { padding: 56px 24px; background: #fff; text-align: center; }
.abed-section img { max-width: 180px; width: 100%; height: auto; margin: 0 auto; }

/* ── ENCERRAMENTO ── */
.closing-section {
  background: linear-gradient(135deg, #0a3d72 0%, #1B6EC2 100%);
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.closing-watermark {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 70%; max-width: 720px;
  opacity: .07;
  pointer-events: none;
  user-select: none;
  filter: brightness(0) invert(1);
}
.closing-inner { position: relative; max-width: 680px; margin: 0 auto; }
.closing-section h2 {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 20px;
}
.closing-section h2 span { color: #F5A623; }
.closing-section p { color: rgba(255,255,255,0.82); font-size: 1rem; line-height: 1.8; margin-bottom: 36px; }
.cta-btn {
  display: inline-block;
  background: #F5A623;
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  padding: 18px 44px;
  border-radius: 99px;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(245,166,35,0.40);
  transition: transform 0.2s;
}
.cta-btn:hover { transform: translateY(-2px); }

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
  .security-grid { grid-template-columns: 1fr; }
  .ds-grid { grid-template-columns: 1fr; }
  .ds-right { border-left: none; border-top: 5px solid #F5A623; }
  .ds-left, .ds-right { padding: 40px 24px; }
  .prova-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .hero-quote { padding: 14px 18px; }
}
