/* =========================
   VARIAVEIS (compativel com --amber-* e --cor-*)
   ========================= */

:root{
  /* Paleta nova (page) */
  --amber-100:#E9E5D6;
  --amber-400:#C4AC64;
  --teal-900:#0E4656;
  --white:#ffffff;
  --gray-50:#F2F3F2;
  --gray-200:#C7C7C7;
  --text:#18333a;

  /* Aliases p/ NAO quebrar menu/footer se usarem --cor-* */ 
  --cor-Amber100: var(--amber-100);
  --cor-Amber400: var(--amber-400);
  --cor-Skyblue800: var(--teal-900);
  --cor-White: var(--white);
  --cor-Gray50: var(--gray-50);
  --cor-Gray200: var(--gray-200);

  /* Tokens */
  --radius-12: 12px;
  --radius-16: 16px;
  --radius-20: 20px;

  --shadow-1: 0 10px 26px rgba(0,0,0,.06);
  --shadow-2: 0 18px 44px rgba(0,0,0,.12);

  --border-1: 1px solid rgba(0,0,0,.08);
  --border-2: 1px solid rgba(0,0,0,.12);

  --blue-50:#EEF5FF;
  --blue-100:#EFF6FF;
  --blue-200:#BFDBFE;
  --blue-600:#2563EB;
  --blue-900:#1E3A8A;
  --green-25:#F0FDF4;
  --green-50:#E9F8ED;
  --green-100:#E8F8EE;
  --green-200:#BBF7D0;
  --green-300:#DCFCE7;
  --green-600:#16A34A;
  --green-650:#1F9D4C;
  --green-700:#1F7A3B;
  --amber-50:#FEFCE8;
  --amber-100-soft:#FFF7D6;
  --amber-200:#FEF08A;
  --amber-500:#F59E0B;
  --amber-700:#9A6A00;
  --gray-25:#F7F9FB;
  --gray-75:#F6F6F6;
  --gray-90:#ECECEC;
  --gray-100:#F2F2F2;
  --gray-150:#F0F0EE;
  --gray-300:#E5E7EB;
  --gray-350:#D1D5DB;
  --gray-600:#6B6B6B;
  --slate-600:#475569;
  --slate-700:#425466;
  --orange-600:#EA580C;
  --teal-800:#114361;
  --teal-950:#0D3F4E;

  --amber-150:#EFE6D2;
  --amber-110:#FFF4DB;
  --amber-125:#FFF3CC;
  --amber-130:#E9E4D6;
  --amber-450:#C8A957;
  --amber-550:#F29B2A;
  --amber-600:#F2B632;
  --blue-25:#F7FBFD;
  --blue-120:#E6F0FF;
  --blue-150:#DBE8FF;
  --blue-500:#3B82F6;
  --green-120:#E6F7EE;
  --green-130:#DFF3EA;
  --green-150:#DFF7E7;
  --green-500:#2BB673;
  --green-750:#1C8F6B;
  --mint-100:#DFF7F0;
  --orange-200:#FBE7D6;
  --orange-500:#ED8936;
  --orange-700:#B86822;
  --purple-100:#EFE8FF;
  --purple-400:#9F7AEA;
  --purple-500:#8B5CF6;
  --red-600:#C13D3D;
  --slate-500:#6B7C86;
  --teal-500:#38B2AC;
  --yellow-400:#F6E05E;
  --gray-80:#F3F6F7;
}

/* =========================
   BASE
   ========================= */

* {
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
}

body{
  margin:0;
  font-family:"Inter", sans-serif;
  color: var(--text);
  background: var(--white);
}

/* =========================
   FOOTER
   ========================= */

footer {
  background: #EC8A34;
  color: #ffffff;
  text-align: center;
  padding: 16px 0;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0;
  font-weight: 500;
}

footer p {
  margin: 0;
}

/* =========================
   RULES & AGENDA
   ========================= */

.rules-section {
  padding: 80px 0 100px;
  background: #ffffff;
}

.rules-header {
  text-align: center;
  margin-bottom: 40px;
}

.rules-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
}

.rules-underline {
  display: inline-block;
  width: 64px;
  height: 3px;
  background: #2563eb;
  border-radius: 999px;
  margin-bottom: 10px;
}

.rules-header p {
  color: #6b7280;
  margin: 0;
}

.rules-accordion {
  max-width: 720px;
  margin: 0 auto;
}

.rule-item {
  background: #eef7fb;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
}

.rule-toggle {
  width: 100%;
  border: none;
  background: transparent;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  color: #0f172a;
}

.rule-toggle i {
  color: #1d4ed8;
}

.rule-content {
  padding: 0 20px 18px;
  color: #4b5563;
  font-size: 14px;
  line-height: 22px;
}

@media (max-width: 768px) {
  .rules-section {
    padding: 64px 0 80px;
  }

  .rules-accordion {
    padding: 0 16px;
  }
}

/* =========================
   AGENDA TIMELINE
   ========================= */

.agenda-section {
  padding: 70px 0 110px;
  background: #f7fbff;
  position: relative;
  overflow: hidden;
}

.agenda-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/icone-04.png") no-repeat center / contain;
  pointer-events: none;
  z-index: 0;
}

.agenda-header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.agenda-header h2 {
  font-size: 28px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
}

.agenda-underline {
  display: inline-block;
  width: 48px;
  height: 3px;
  background: #2563eb;
  border-radius: 999px;
}

.timeline {
  position: relative;
  margin: 0 auto;
  z-index: 1;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 32px;
  bottom: 125px;
  width: 2px;
  background: #cbd5e1;
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 0 32px 65px;
}

.timeline-item.left {
  left: 0;
  text-align: right;
  padding-right: 96px;
}

.timeline-item.right {
  left: 50%;
  text-align: left;
  padding-left: 96px;
}

.timeline-dot {
  position: absolute;
  top: 10px;
  left: 100%;
  right: auto;
  transform: translateX(-50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb 0%, #4f46e5 100%);
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 20px;
  z-index: 2;
}

.timeline-item.right .timeline-dot {
  left: 0%;
  right: auto;
}

.timeline-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 20px 24px;
  width: 432px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.15);
  text-align: left;
  position: relative;
  z-index: 1;
}

.timeline-item.left .timeline-card {
  margin-left: auto;
  margin-right: 0;
}

.timeline-item.right .timeline-card {
  margin-left: 0;
}

.timeline-item.left .timeline-card h4 {
  text-align: right;
}

.timeline-card h4 {
  font-size: 30px;
  line-height: 36px;
  letter-spacing: -0.5px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #2563eb;
}

.timeline-list {
  margin: 0;
  padding: 0;
  list-style: none;
  color: #334155;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: -0.5px;
}

.timeline-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
}

.timeline-list i {
  color: #2563eb;
  font-size: 16px;
  line-height: 16px;
  margin-top: 4px;
}

.timeline-card--highlight {
  background: linear-gradient(135deg, #F59E0B 0%, #EAB308 100%);
  color: #ffffff;
  border: 2px solid #FACC15;
}

.timeline-card--highlight h4,
.timeline-card--highlight ul {
  color: #ffffff;
}

.timeline-card--highlight .timeline-list i {
  color: #ffffff;
}

.dot-blue { background: linear-gradient(135deg, #2563eb 0%, #4f46e5 100%); }
.dot-purple { background: linear-gradient(135deg, #7c3aed 0%, #9333ea 100%); }
.dot-magenta { background: linear-gradient(135deg, #db2777 0%, #c026d3 100%); }
.dot-red { background: linear-gradient(135deg, #ef4444 0%, #f97316 100%); }
.dot-orange { background: linear-gradient(135deg, #f97316 0%, #f59e0b 100%); }
.dot-yellow { background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%); }

.theme-blue .timeline-card h4 { color: #2563eb; }
.theme-purple .timeline-card h4 { color: #4F46E5; }
.theme-magenta .timeline-card h4 { color: #9333EA; }
.theme-red .timeline-card h4 { color: #E11D48; }
.theme-orange .timeline-card h4 { color: #EA580C; }
.theme-yellow .timeline-card h4 { color: #EA580C; }

.theme-blue .timeline-list i { color: #2563eb; }
.theme-purple .timeline-list i { color: #4F46E5; }
.theme-magenta .timeline-list i { color: #9333EA; }
.theme-red .timeline-list i { color: #E11D48; }
.theme-orange .timeline-list i { color: #EA580C; }
.theme-yellow .timeline-list i { color: #EA580C; }

@media (max-width: 768px) {
  .timeline {
    padding-left: 16px;
  }

  .timeline::before {
    left: 12px;
  }

  .timeline-item,
  .timeline-item.left,
  .timeline-item.right {
    width: 100%;
    left: 0;
    padding-left: 32px;
    text-align: left;
  }

  .timeline-dot {
    left: 3px;
    right: auto;
  }
}

/* =========================
   NAVBAR
   ========================= */

#menu {
  background: #ffffff;
  box-shadow: 0 6px 18px rgba(9, 18, 43, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  padding: 18px 0;
}

.navbar .logo {
  height: 40px;
  width: auto;
}

.navbar-nav {
  gap: 18px;
}

.navbar .nav-link {
  color: #949495;
  font-weight: 500;
  padding: 0;
  border-radius: 999px;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  height: 28px;
  box-sizing: border-box;
}

.navbar .nav-link:hover {
  color: #0f172a;
  background: rgba(37, 99, 235, 0.08);
}

.navbar .nav-link.active {
  background: #2a3f9f;
  color: #ffffff;
  box-shadow: 0 8px 16px rgba(42, 63, 159, 0.25);
  padding: 4px 14px;
}

/* =========================
   HERO
   ========================= */

.hero {
  background: radial-gradient(circle at top left, #162450 0%, #0b1226 55%, #0a1021 100%);
  color: #ffffff;
  padding: 80px 0 120px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.15);
  border: 1px solid rgba(56, 189, 248, 0.35);
  color: #7dd3fc;
  margin-bottom: 22px;
  position: relative;
}

.hero-pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #38bdf8;
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.2);
}

.hero h1 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(2.4rem, 3vw + 1.5rem, 3.8rem);
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 18px;
}

.hero-highlight {
  color: #48b6ff;
}

.hero-lead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 28px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  justify-content: center;
}

.btn-hero {
  padding: 12px 22px;
  font-weight: 600;
  border-radius: 10px;
}

.btn-primary.btn-hero {
  background: #1d9bf0;
  border-color: #1d9bf0;
  box-shadow: 0 12px 24px rgba(29, 155, 240, 0.25);
}

.btn-primary.btn-hero:hover {
  background: #1283d6;
  border-color: #1283d6;
}

.btn-outline-light.btn-hero {
  border-color: rgba(255, 255, 255, 0.4);
  color: #ffffff;
}

.btn-outline-light.btn-hero:hover {
  background: rgba(255, 255, 255, 0.12);
}

.hero-partners {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #ffffff;
  border-radius: 32px;
  padding: 22px 36px;
  box-shadow: 0 20px 48px rgba(3, 7, 18, 0.35);
  width: 100%;
  flex-wrap: wrap;
  margin-left: auto;
  margin-right: auto;
  justify-content: space-around;
  margin-top: 10px;
}

.hero-partners img {
  width: auto;
  height: 40px;
  object-fit: contain;
}

.hero-partners img:nth-child(1) {
  width: 292px;
  height: 64px;
}

.hero-partners img:nth-child(2) {
  width: 380px;
  height: 54px;
}

.hero-partners img:nth-child(3) {
  width: 282px;
  height: 128px;
}

@media (max-width: 992px) {
  .hero {
    padding: 64px 0 96px;
  }

  .hero-lead {
    max-width: 520px;
  }

  .hero-partners {
    width: 100%;
    justify-content: center;
    gap: 24px;
  }
}

@media (max-width: 576px) {
  .navbar .nav-link {
    padding: 8px 12px;
  }

  .hero-partners img {
    height: 32px;
  }
}

/* =========================
   ABOUT SECTION
   ========================= */

.about-section {
  padding: 80px 0 90px;
  background: #ffffff;
}

.about-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 36px;
}

.about-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #e6eef9;
  color: #1d4ed8;
  font-size: 22px;
  margin-bottom: 14px;
}

.about-header h2 {
  font-size: clamp(1.8rem, 1.2rem + 1.2vw, 2.4rem);
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 10px;
}

.about-header p {
  color: #6b7280;
  margin: 0;
  line-height: 1.6;
}

.about-grid h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 16px;
}

.about-grid p {
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 16px;
}

.about-illustration {
  width: min(520px, 90%);
  height: auto;
}

@media (max-width: 992px) {
  .about-section {
    padding: 64px 0 72px;
  }

  .about-grid {
    gap: 28px;
  }
}

/* =========================
   BENEFITS SECTION
   ========================= */

.benefits-section {
  padding: 10px 0 90px;
  background: #ffffff;
}

.benefits-card {
  position: relative;
  background: linear-gradient(135deg, #0c4a8a 0%, #1f6fb8 100%);
  border-radius: 18px;
  padding: 32px 48px 34px;
  color: #ffffff;
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(10, 50, 110, 0.25);
  margin-bottom: 28px;
}

.benefits-title {
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 22px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 47px 32px;
  position: relative;
  z-index: 1;
  padding: 25px;
}

.benefit-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  min-height: 72px;
  padding: 6px 0;
}

.benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 48px;
}

.benefit-icon i {
  font-size: 25px;
  line-height: 28px;
}

.benefit-item h4 {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.5px;
  font-weight: 600;
  margin: 0 0 4px;
}

.benefit-text {
  width: 420px;
  max-width: 100%;
  margin-top: 2px;
}

.benefit-item p {
  margin: 0;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.5px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.82);
}

.benefits-watermark {
  position: absolute;
  right: 8px;
  top: 22px;
  width: 140px;
  height: auto;
  pointer-events: none;
}

.info-cards {
  background: #f6f6f6;
  border-radius: 18px;
  padding: 28px 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  text-align: center;
}

.info-card {
  padding: 8px 10px;
}

.info-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0c4a8a;
  color: #ffffff;
  margin-bottom: 12px;
}

.info-icon i {
  font-size: 30px;
  line-height: 36px;
}

.info-card:nth-child(2) .info-icon {
  background: #1d6fd7;
}

.info-card:nth-child(3) .info-icon {
  background: #07b0e0;
}

.info-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #1f2937;
}

.info-card p {
  font-size: 0.8rem;
  color: #6b7280;
  margin: 0;
}

@media (max-width: 992px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .info-cards {
    grid-template-columns: 1fr;
  }

  .benefits-watermark {
    display: none;
  }
}

/* =========================
   COMPETITION SECTION
   ========================= */

.competition-section {
  padding: 70px 0 90px;
  background: #ffffff;
}

.section-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 28px;
}

.section-header h2 {
  font-size: clamp(1.9rem, 1.3rem + 1.2vw, 2.6rem);
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 8px;
}

.section-header p {
  color: #6b7280;
  margin-bottom: 10px;
}

.section-lead {
  color: #4b5563;
  line-height: 1.7;
  margin-top: 40px !important;
}

.structure-card {
  position: relative;
  background: linear-gradient(135deg, #0c4a8a 0%, #1f6fb8 100%);
  border-radius: 18px;
  padding: 64px;
  color: #ffffff;
  box-shadow: 0 24px 60px rgba(12, 60, 135, 0.25);
  overflow: hidden;
}

.structure-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.structure-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.structure-header h3 {
  margin: 0;
  font-size: 36px;
  line-height: 48px;
  letter-spacing: -0.5px;
  font-weight: 700;
}

.structure-lead {
  color: rgba(255, 255, 255, 0.85);
  margin: 32px 0 48px 0;
  line-height: 1.5;
}

.phases-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  position: relative;
  z-index: 1;
  margin-top: 30px;
}

.phase-card {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 33px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.phase-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.phase-title {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: flex-start;
}

.phase-number {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #ffffff;
  color: #1f2937;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 48px;
}

.phase-title h4 {
  margin: 0;
  font-size: 30px;
  line-height: 36px;
  letter-spacing: -0.5px;
  font-weight: 700;
}

.phase-tag {
  display: inline-block;
  color: #ffec99;
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 11px;
}

.phase-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.88rem;
  line-height: 1.6;
}

.structure-watermark {
    position: absolute;
    right: 12px;
    top: 0px;
    width: 160px;
    height: auto;
    pointer-events: none;
}

@media (max-width: 992px) {
  .phases-grid {
    grid-template-columns: 1fr;
  }

  .structure-watermark {
    display: none;
  }
}

/* =========================
   LOGISTICS SECTION
   ========================= */

.logistics-section {
  padding: 0 0 70px;
  background: #ffffff;
}

.logistics-section .container {
  padding-left: 70px;
  padding-right: 70px;
}

.logistics-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
}

.logistics-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: #0c4a8a;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.logistics-icon i {
  font-size: 30px;
  line-height: 32px;
}

.logistics-header h2 {
  margin: 0;
  font-size: 36px;
  line-height: 48px;
  letter-spacing: -0.5px;
  font-weight: 700;
  color: #111827;
}

.logistics-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.logistics-card {
  background: #f4f8ff;
  border-radius: 12px;
  padding: 18px 18px 20px;
  border: 1px solid #e6eef9;
  min-height: 165px;
}

.logistics-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: #0c4a8a;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.logistics-card-icon i {
  font-size: 25px;
  line-height: 28px;
}

.logistics-card h4 {
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.5px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #111827;
}

.logistics-card p {
  margin: 0;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: -0.5px;
  color: #4b5563;
}

/* =========================
   ELIGIBILITY SECTION
   ========================= */

.eligibility-section {
  padding: 0 0 90px;
  background: #ffffff;
}

.eligibility-card {
  position: relative;
  background: linear-gradient(135deg, #0c4a8a 0%, #1f6fb8 100%);
  border-radius: 18px;
  padding: 64px;
  color: #ffffff;
  box-shadow: 0 24px 60px rgba(12, 60, 135, 0.25);
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
}

.eligibility-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
}

.eligibility-badge {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: #f4b400;
  color: #111827;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.eligibility-badge i {
  font-size: 18px;
  line-height: 32px;
}

.eligibility-title h3 {
  margin: 0;
  font-size: 36px;
  line-height: 48px;
  letter-spacing: -0.5px;
  font-weight: 700;
}

.eligibility-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  position: relative;
  z-index: 1;
}

.eligibility-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.eligibility-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #ffffff;
  color: #111827;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex: 0 0 32px;
}

.eligibility-item h4 {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 700;
  color: #ffce4b;
}

.eligibility-item p {
  margin: 0;
  font-size: 13px;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.88);
}

.eligibility-watermark {
  position: absolute;
  right: 12px;
  top: 12px;
  width: 140px;
  height: auto;
  pointer-events: none;
}

@media (max-width: 992px) {
  .logistics-grid {
    grid-template-columns: 1fr;
  }

  .eligibility-grid {
    grid-template-columns: 1fr;
  }

  .eligibility-watermark {
    display: none;
  }
}

/* =========================
   MISSION SECTION
   ========================= */

.mission-section {
  padding: 70px 0 90px;
  background: #ffffff;
}

.mission-section .container {
  padding-left: 70px;
  padding-right: 70px;
}

.mission-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.mission-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: #0c4a8a;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.mission-header h2 {
  margin: 0;
  font-size: 36px;
  line-height: 48px;
  letter-spacing: -0.5px;
  font-weight: 700;
  color: #111827;
}

.mission-text p {
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.5px;
  color: #4b5563;
  margin-bottom: 16px;
}

/* =========================
   TEAMS SECTION
   ========================= */

.teams-section {
  padding: 79px 0 100px;
  background: #F2F2F3;
}

.teams-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 34px;
}

.teams-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 10px;
}

.teams-header p {
  font-size: 15px;
  line-height: 22px;
  color: #6b7280;
  margin-bottom: 8px;
}

.teams-subtitle {
  font-size: 12px;
  color: #94a3b8;
}

.team-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e7eb;
  padding: 22px;
  margin-bottom: 80px;
}

.team-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.team-icon {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
}

.team-icon-img {
  width: 45px;
  height: 40px;
  object-fit: contain;
}

.team-label {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.3px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  display: block;
  margin-bottom: 2px;
}

.team-header h3 {
  margin: 0;
  font-size: 36px;
  line-height: 48px;
  letter-spacing: -0.5px;
  font-weight: 700;
  color: #ffffff;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 25px;
  margin-bottom: 48px;
}

.team-item {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.5px;
  font-weight: 500;
  color: #334155;
}

.team-item-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #dbeafe;
  color: #2563eb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex: 0 0 40px;
}

.team-item-icon i {
  font-size: 16px;
  line-height: 24px;
}

.team-members {
  background: #F9FAFB;
  border-radius: 12px;
  border: 1px dashed #d1d5db;
  padding: 18px 170px;
  text-align: center;
  font-size: 13px;
  color: #6b7280;
}

.team-desc {
  color: #4b5563;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.5px;
  margin-bottom: 32px;
}

.team-card--primary {
  border: none;
  padding: 0;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.18);
}

.team-card--primary .team-header {
  background: linear-gradient(135deg, #0c4a8a 0%, #1f6fb8 100%);
  padding: 40px 48px;
  margin: 0;
}

.team-card--primary .team-grid {
  margin-top: 6px;
}

.team-body {
  padding: 48px;
}

.team-members h4 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.5px;
  font-weight: 500;
  color: #374151;
}

.team-members p {
  margin: 0 0 6px;
  line-height: 24px;
  font-size: 16px;
  letter-spacing: -0.5px;
  font-style: italic;
  font-weight: 400;
}

.team-email {
  margin: 0;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.5px;
  font-style: italic;
  font-weight: 700;
}

.team-email a {
  color: #1d4ed8;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.5px;
  font-style: normal;
  font-weight: 400;
  text-decoration: underline;
}

/* =========================
   FAQ
   ========================= */

.faq-section {
  padding: 70px 0 100px;
  background: #f7fbff url("../img/icone-04.png") no-repeat center / contain;
  position: relative;
  overflow: hidden;
}

.faq-header {
  text-align: center;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.faq-header h2 {
  font-size: 36px;
  line-height: 40px;
  letter-spacing: -0.5px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 6px;
}

.faq-underline {
  display: inline-block;
  width: 56px;
  height: 3px;
  background: #2563eb;
  border-radius: 999px;
  margin-bottom: 8px;
}

.faq-header p {
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.5px;
  font-weight: 400;
  color: #64748b;
  margin: 0;
}

.faq-group {
  max-width: 896px;
  margin: 0 auto 26px;
  position: relative;
  z-index: 1;
}

.faq-group h3 {
  font-size: 18px;
  line-height: 32px;
  letter-spacing: -0.5px;
  font-weight: 700;
  color: #334155;
  margin: 12px 0;
}

.faq-item {
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  margin-bottom: 12px;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
}

.faq-toggle {
  width: 100%;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.5px;
  font-weight: 600;
  color: #0f172a;
}

.faq-toggle i {
  color: #2563eb;
  transition: transform 0.2s ease;
}

.faq-content {
  padding: 0 18px 14px;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.5px;
  font-weight: 400;
  color: #374151;
  display: none;
}

.faq-item.open .faq-content {
  display: block;
}

.faq-item.open .faq-toggle i {
  transform: rotate(180deg);
}

@media (max-width: 768px) {
  .faq-section {
    padding: 60px 0 80px;
  }

  .faq-group {
    padding: 0 16px;
  }
}

/* =========================
   CONTACT SECTION
   ========================= */

.contact-section {
  padding: 80px 0 59px;
  background: #ffffff;
}

.contact-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 32px;
}

.contact-header h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111827;
}

.contact-header p {
  font-size: 14px;
  line-height: 22px;
  color: #64748b;
  margin: 0;
}

.contact-block {
  margin: 0 auto 90px;
}

.block-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 35px;
}

.block-icon {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  background: linear-gradient(135deg, #1E40AF 0%, #2563EB 100%);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.contact-block + .contact-block .block-icon {
  background: linear-gradient(135deg, #0EA5E9 0%, #2563EB 100%);
}

.block-title h3 {
  margin: 0;
  font-size: 24px;
  line-height: 40px;
  letter-spacing: -0.5px;
  font-weight: 700;
  color: #111827;
}

.block-lead {
  font-size: 18px;
  line-height: 30px;
  letter-spacing: -0.5px;
  color: #6b7280;
  margin-bottom: 32px;
}

.block-icon i {
  font-size: 24px;
  line-height: 32px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-card {
  background: #f7fbff;
  border: 1px solid #dbeafe;
  border-radius: 10px;
  padding: 16px;
  display: flex;
  justify-content: center;
}

.contact-card-title {
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.5px;
  font-weight: 600;
  color: #334155;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.contact-card-title i {
  color: #2563EB;
}

.contact-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1d4ed8;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 16px;
  border-radius: 8px;
  text-decoration: none;
}

.contact-chip i {
  font-size: 16px;
}

.links-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.link-card {
  display: flex;
  gap: 12px;
  background: #ffffff;
  border-radius: 10px;
  padding: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
}

.link-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #e0e7ff;
  color: #1d4ed8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex: 0 0 48px;
}

.link-icon i {
  font-size: 17.5px;
  line-height: 28px;
}

.link-card h4 {
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.5px;
  font-weight: 700;
  margin: 0 0 4px;
  color: #111827;
}

.link-card p {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.5px;
  color: #64748b;
  margin: 0 0 8px;
}

.link-cta {
  font-size: 12px;
  font-weight: 600;
  color: #1d4ed8;
  text-decoration: none;
  display: inline-flex;
  gap: 6px;
  align-items: center;
}

@media (max-width: 768px) {
  .contact-section {
    padding: 64px 0 80px;
  }

  .contact-grid,
  .links-grid {
    grid-template-columns: 1fr;
  }
}

.team-lead {
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.5px;
  color: #4b5563;
  margin-bottom: 48px;
}

.team-note {
  background: linear-gradient(180deg, #FFFBE8 0%, #FFF7ED 100%);
  border-radius: 12px;
  padding: 40px;
  margin: 18px 0;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.5px;
  color: #374151;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  border-left: 4px solid #f59e0b;
}

.team-note h4 {
  margin: 0 0 8px;
  font-size: 30px;
  line-height: 36px;
  letter-spacing: -0.5px;
  font-weight: 700;
  color: #111827;
}

.team-note a {
  color: #1d4ed8;
  text-decoration: underline;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.5px;
  font-weight: 400;
}

.team-note strong {
  font-weight: 600;
  color: #B45309;
}

.team-note-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #f59e0b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 44px;
}

.team-note-icon-img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.governance-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 18px;
}

.governance-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 40px;
  border-radius: 12px;
  background: #f4f7ff;
  border-left: 4px solid #7c3aed;
}

.governance-card--purple {
  background: linear-gradient(180deg, #FAF5FF 0%, #EEF2FF 100%);
  border-left-color: #9333EA;
}

.governance-card--blue {
  background: linear-gradient(180deg, #EEF2FF 0%, #EFF6FF 100%);
  border-left-color: #4F46E5;
}

.governance-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #7c3aed;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex: 0 0 48px;
}

.governance-icon i {
  font-size: 20px;
  line-height: 28px;
}

.governance-card--blue .governance-icon {
  background: #4f46e5;
}

.governance-card h4 {
  margin: 0 0 6px;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.5px;
  font-weight: 700;
  color: #111827;
}

.governance-card p {
  margin: 0;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.5px;
  color: #4b5563;
}

@media (max-width: 992px) {
  .teams-section .container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .team-grid,
  .governance-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   ACCESS SECTION
   ========================= */

.access-section {
  position: relative;
  padding: 80px 0 110px;
  background: linear-gradient(135deg, #0c4a8a 0%, #1f6fb8 100%);
  overflow: hidden;
}

.access-section::before,
.access-section::after {
  content: "";
  position: absolute;
  opacity: 1;
  pointer-events: none;
  z-index: 1;
}

.access-section::before {
  width: 341px;
  height: 882px;
  left: -34px;
  top: 30px;
  background: url("../img/form-esquerdo.png") no-repeat center / contain;
}

.access-section::after {
  width: 310px;
  height: 454px;
  right: -19px;
  top: 30px;
  background: url("../img/form-direita.png") no-repeat center / contain;
}

.access-section h2 {
  text-align: center;
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 28px;
}

.access-card {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(4, 14, 35, 0.35);
  padding: 48px;
  max-width: 896px;
  width: 100%;
  border: 1px solid #E5E7EB;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.access-form .form-group {
  margin-bottom: 16px;
}

.access-form label {
  display: block;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.5px;
  font-weight: 400;
  color: #475569;
  margin-bottom: 6px;
}

.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  color: #4b5563;
}

.radio-group input {
  margin-right: 6px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.form-control {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 13px;
  outline: none;
}

.form-control:focus {
  border-color: #1d4ed8;
  box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.12);
}

.form-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 12px;
  color: #6b7280;
  margin: 10px 0 18px;
}

.form-check input {
  margin-top: 3px;
}

.btn-submit {
  width: 100%;
  background: #0b7ec6;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 12px 16px;
  font-weight: 600;
  font-size: 13px;
}

.access-footer {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #94a3b8;
  margin: 48px -48px -48px;
  padding: 16px 32px 20px;
  border-top: 1px solid #e5e7eb;
  background: #f8fafc;
  border-radius: 0 0 14px 14px;
}

@media (max-width: 768px) {
  .access-section::before,
  .access-section::after {
    display: none;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* =========================
   RESPONSIVE (TABLET & MOBILE)
   ========================= */

@media (max-width: 992px) {
  .navbar {
    padding: 12px 0;
  }

  .navbar-nav {
    gap: 8px;
  }

  .hero {
    padding: 60px 0 80px;
  }

  .hero h1 {
    font-size: clamp(2rem, 3.2vw + 1rem, 2.8rem);
  }

  .hero-partners {
    padding: 16px 18px;
    gap: 16px;
  }

  .benefits-section,
  .competition-section,
  .logistics-section,
  .eligibility-section,
  .mission-section,
  .teams-section,
  .access-section {
    padding-left: 0;
    padding-right: 0;
  }

  .logistics-section .container,
  .mission-section .container,
  .teams-section .container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .benefits-grid,
  .phases-grid,
  .info-cards,
  .logistics-grid,
  .eligibility-grid,
  .team-grid,
  .governance-list {
    grid-template-columns: 1fr;
  }

  .access-card {
    max-width: 720px;
  }
}

@media (max-width: 768px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-partners {
    width: 100%;
    justify-content: center;
  }

  .benefits-card,
  .structure-card,
  .eligibility-card,
  .team-card--primary,
  .access-card {
    border-radius: 12px;
  }

  .access-card {
    padding: 24px;
    min-height: auto;
  }

  .access-footer {
    margin: 20px -24px -24px;
    padding: 12px 20px 16px;
  }

  .btn-submit {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 2rem;
    line-height: 1.15;
  }

  .hero-lead {
    font-size: 0.95rem;
  }

  .team-header h3 {
    font-size: 28px;
    line-height: 36px;
  }

  .team-label {
    font-size: 14px;
    line-height: 20px;
  }

  .team-icon {
    width: 64px;
    height: 64px;
  }

  .team-icon-img {
    width: 36px;
    height: 32px;
  }

  .team-body {
    padding: 24px;
  }

  .team-members {
    padding: 12px 14px;
  }

  .hero-partners {
    padding: 12px 16px;
    gap: 12px;
    border-radius: 20px;
    flex-direction: column;
    align-items: center;
  }

  .hero-partners img {
    max-width: 100%;
    height: auto;
  }

  .benefits-card,
  .structure-card,
  .eligibility-card {
    padding: 24px;
  }

  .benefits-title {
    font-size: 1.1rem;
  }

  .benefit-text {
    width: 100%;
  }

  .eligibility-title h3 {
    font-size: 26px;
    line-height: 34px;
  }

  .eligibility-badge {
    width: 48px;
    height: 48px;
  }

  .structure-header h3 {
    font-size: 28px;
    line-height: 36px;
  }

  .phase-card {
    padding: 20px;
  }

  .phase-number {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
  }

  .phase-title h4 {
    font-size: 24px;
    line-height: 32px;
  }
}
.timeline-card--highlight h4 {
  color: #ffffff !important;
}

.timeline-card--highlight .timeline-list {
  color: #ffffff !important;
}

.timeline-card--highlight .timeline-list i {
  color: #ffffff !important;
}

.wpcf7-form-control-wrap {
  display: block;
}

.radio-group .wpcf7-list-item {
  margin: 0 10px 0 0;
}

.radio-group .wpcf7-list-item-label {
  margin-left: 4px;
}

.form-check .wpcf7-list-item {
  margin: 0;
}


.page-content p:empty {
  display: none;
  margin: 0;
  padding: 0;
}

.page-content p:empty::before {
  content: none;
}


.page-content p {
  margin: 0;
}

.page-content p:empty,
.page-content p:blank {
  display: none !important;
  height: 0 !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.page-content p:empty::before,
.page-content p:blank::before {
  content: none !important;
}


.hero h1 {
  margin-bottom: 16px;
  line-height: 1.05;
}

.hero .hero-lead {
  margin-top: 0;
  margin-bottom: 20px;
}

.hero .hero-actions {
  margin-top: 0;
  gap: 12px;
}


.access-form label {
  margin-bottom: 12px;
}

.access-form .form-group {
  margin-bottom: 22px;
}


.access-form .form-group {
  margin-bottom: 28px;
}


.access-form .form-group {
  margin-bottom: 28px !important;
}

.access-form label {
  margin-bottom: 12px !important;
}


.access-card .form-group {
  margin-bottom: 28px !important;
}

.access-card label {
  margin-bottom: 12px !important;
}


.page-content p {
  margin: 0 0 16px;
}

.page-content p:last-child {
  margin-bottom: 0;
}


.page-content .wp-block-html div {
  margin: 0 0 16px;
}

.page-content .wp-block-html div:empty {
  display: none;
}

.page-content .wp-block-html p strong {
  display: block;
  margin-bottom: 6px;
}

.choices {
  width: 100%;
}

.choices__inner {
  min-height: 40px;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 13px;
  background: #fff;
}

.choices__list--single {
  padding: 4px 6px;
}

.choices__input {
  font-size: 13px;
}

.choices__list--dropdown {
  border-radius: 6px;
}
