/* ========================================
   PROSESP — CAMPANHA
======================================== */

:root {
  --blue: #1E6A9F;
  --blue-dark: #15547E;
  --blue-soft: #EEF5F9;

  --green: #2E813F;
  --green-dark: #246833;
  --green-soft: #EAF4EC;

  --yellow: #F7EC24;

  --white: #FFFFFF;

  --text: #171A1D;
  --muted: #5E6872;
  --line: #E1E6EA;

  --soft: #F5F8FA;

  --container: 1180px;

  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 30px;
}


* {
  box-sizing: border-box;
}


html {
  scroll-behavior: smooth;
}


body {
  margin: 0;

  font-family: "Poppins", Arial, sans-serif;

  background: var(--white);
  color: var(--text);

  -webkit-font-smoothing: antialiased;
}


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


a {
  color: inherit;
  text-decoration: none;
}


.container {
  width: min(
    var(--container),
    calc(100% - 48px)
  );

  margin-inline: auto;
}



/* ========================================
   HEADER
======================================== */

.site-header {
  position: sticky;
  top: 0;

  z-index: 100;

  background: rgba(255, 255, 255, 0.95);

  border-bottom: 1px solid rgba(0, 0, 0, 0.06);

  backdrop-filter: blur(16px);
}


.header-inner {
  min-height: 84px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 28px;
}


.brand img {
  width: 145px;
}


.main-nav {
  display: flex;
  align-items: center;

  gap: 28px;
}


.main-nav a {
  color: #48515A;

  font-size: 14px;
  font-weight: 500;

  transition: color 0.2s ease;
}


.main-nav a:hover {
  color: var(--blue);
}


.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 46px;

  padding: 0 20px;

  background: var(--blue);

  color: var(--white);

  border-radius: var(--radius-sm);

  font-size: 13px;
  font-weight: 600;

  transition:
    background 0.2s ease,
    transform 0.2s ease;
}


.header-cta:hover {
  background: var(--green);

  transform: translateY(-1px);
}



/* ========================================
   BUTTONS
======================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 54px;

  padding: 0 24px;

  border-radius: 16px;

  font-size: 14px;
  font-weight: 600;

  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}


.btn:hover {
  transform: translateY(-2px);
}


.btn-primary {
  background: var(--blue);
  color: var(--white);
}


.btn-primary:hover {
  background: var(--green);
}


.btn-secondary {
  background: var(--white);
  color: var(--blue);

  border: 1px solid #CAD6DE;
}


.btn-secondary:hover {
  border-color: var(--blue);
}


.btn-white {
  background: var(--white);
  color: var(--blue);
}


.btn-white:hover {
  background: #F4F8FA;
}



/* ========================================
   HERO
======================================== */

.hero {
  padding: 110px 0 100px;

  background:
    linear-gradient(
      135deg,
      #F8FBFD 0%,
      #EEF5F9 100%
    );
}


.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;

  align-items: center;

  gap: 80px;
}


.eyebrow,
.section-eyebrow {
  display: inline-block;

  margin-bottom: 16px;

  color: var(--green);

  font-size: 13px;
  font-weight: 700;

  letter-spacing: 0.04em;

  text-transform: uppercase;
}


.hero h1 {
  max-width: 760px;

  margin: 0;

  color: var(--blue);

  font-size: clamp(50px, 6vw, 78px);
  line-height: 0.98;

  letter-spacing: -0.045em;
}


.hero-lead {
  max-width: 700px;

  margin: 28px 0 0;

  color: var(--text);

  font-size: 21px;
  line-height: 1.5;

  font-weight: 500;
}


.hero-description {
  max-width: 700px;

  margin: 18px 0 0;

  color: var(--muted);

  font-size: 15px;
  line-height: 1.75;
}


.hero-actions {
  display: flex;
  flex-wrap: wrap;

  gap: 12px;

  margin-top: 34px;
}



/* ========================================
   HERO CARD
======================================== */

.hero-card {
  padding: 36px;

  background: var(--blue);

  color: var(--white);

  border-radius: var(--radius-lg);

  box-shadow:
    0 30px 70px rgba(30, 106, 159, 0.18);
}


.hero-card-label {
  display: block;

  margin-bottom: 26px;

  color: #CFE3F0;

  font-size: 11px;
  font-weight: 700;

  text-transform: uppercase;
}


.hero-stat {
  padding: 18px 0;

  border-top: 1px solid rgba(255, 255, 255, 0.16);
}


.hero-stat strong {
  display: block;

  color: var(--white);

  font-size: 24px;
}


.hero-stat span {
  display: block;

  margin-top: 4px;

  color: rgba(255, 255, 255, 0.74);

  font-size: 12px;
  line-height: 1.5;
}



/* ========================================
   CLARIFICATION
======================================== */

.clarification {
  padding: 22px 0;

  background: var(--green);
}


.clarification-inner {
  display: flex;
  align-items: center;

  gap: 24px;

  color: var(--white);
}


.clarification strong {
  flex: 0 0 auto;

  font-size: 13px;
}


.clarification p {
  margin: 0;

  color: rgba(255, 255, 255, 0.86);

  font-size: 12px;
  line-height: 1.6;
}



/* ========================================
   SECTIONS
======================================== */

.section {
  padding: 100px 0;
}


.section-white {
  background: var(--white);
}


.section-soft {
  background: var(--soft);
}


.section-heading {
  max-width: 760px;

  margin: 0 auto 54px;

  text-align: center;
}


.section-heading h2,
.content-grid h2,
.participation-grid h2,
.selection-grid h2,
.delivery-grid h2,
.association-grid h2 {
  margin: 0;

  color: var(--blue);

  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.1;

  letter-spacing: -0.035em;
}


.section-heading p,
.section-description {
  margin: 18px 0 0;

  color: var(--muted);

  font-size: 15px;
  line-height: 1.7;
}


.content-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;

  gap: 90px;
}


.prose p {
  margin: 0 0 18px;

  color: var(--muted);

  font-size: 15px;
  line-height: 1.8;
}



/* ========================================
   STEPS
======================================== */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  gap: 18px;
}


.step-card {
  padding: 30px;

  background: var(--soft);

  border-radius: var(--radius-md);
}


.step-number {
  display: block;

  margin-bottom: 34px;

  color: var(--green);

  font-size: 13px;
  font-weight: 700;
}


.step-card h3 {
  margin: 0 0 10px;

  color: var(--blue);

  font-size: 18px;
}


.step-card p {
  margin: 0;

  color: var(--muted);

  font-size: 12px;
  line-height: 1.65;
}



/* ========================================
   PARTICIPAÇÃO
======================================== */

.participation-grid {
  display: grid;
  grid-template-columns: 1fr 0.7fr;

  align-items: center;

  gap: 80px;
}


.participation-button {
  margin-top: 28px;
}


.participation-card {
  padding: 38px;

  background: var(--blue);

  color: var(--white);

  border-radius: var(--radius-lg);
}


.participation-card > span {
  color: #CFE3F0;

  font-size: 11px;
  text-transform: uppercase;
}


.participation-card strong {
  display: block;

  margin: 12px 0 28px;

  font-size: 32px;
}


.participation-card p {
  margin: 0 0 6px;

  color: rgba(255,255,255,.75);

  font-size: 12px;
}


.participation-card a {
  font-weight: 700;
}



/* ========================================
   CHECK LIST
======================================== */

.check-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);

  gap: 12px;
}


.check-list > div {
  display: flex;
  align-items: flex-start;

  gap: 12px;

  padding: 18px;

  background: var(--soft);

  border-radius: var(--radius-sm);

  color: #3E464E;

  font-size: 13px;
  line-height: 1.5;
}


.check-list span {
  color: var(--green);

  font-weight: 700;
}



/* ========================================
   SELECTION
======================================== */

.selection-section {
  background: var(--blue);

  color: var(--white);
}


.selection-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;

  align-items: center;

  gap: 80px;
}


.selection-grid h2 {
  color: var(--white);
}


.section-eyebrow-light {
  color: #A9D9B2;
}


.selection-grid > div > p {
  max-width: 650px;

  color: rgba(255,255,255,.82);

  font-size: 15px;
  line-height: 1.75;
}


.selection-card {
  padding: 34px;

  background: var(--white);

  color: var(--text);

  border-radius: var(--radius-lg);
}


.selection-number {
  color: var(--green);

  font-size: 11px;
  font-weight: 700;

  text-transform: uppercase;
}


.selection-card h3 {
  margin: 12px 0 14px;

  color: var(--blue);

  font-size: 24px;
}


.selection-card p {
  margin: 0;

  color: var(--muted);

  font-size: 13px;
  line-height: 1.7;
}


.selection-divider {
  height: 1px;

  margin: 24px 0;

  background: var(--line);
}


.selection-card > strong {
  display: block;

  margin-bottom: 8px;

  color: var(--green);

  font-size: 12px;
}



/* ========================================
   BENEFIT
======================================== */

.benefit-highlight {
  display: grid;
  grid-template-columns: .7fr 1.3fr;

  overflow: hidden;

  margin-bottom: 28px;

  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}


.benefit-value {
  padding: 42px;

  background: var(--green);

  color: var(--white);
}


.benefit-value span {
  font-size: 11px;

  text-transform: uppercase;
}


.benefit-value strong {
  display: block;

  margin: 10px 0 4px;

  font-size: 42px;
}


.benefit-value p {
  margin: 0;

  color: rgba(255,255,255,.8);

  font-size: 12px;
}


.benefit-content {
  padding: 42px;
}


.benefit-content h3 {
  margin: 0 0 14px;

  color: var(--blue);

  font-size: 25px;
}


.benefit-content p {
  margin: 0;

  color: var(--muted);

  font-size: 14px;
  line-height: 1.75;
}


.options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  gap: 16px;
}


.options-grid article {
  padding: 26px;

  background: var(--soft);

  border-radius: var(--radius-md);
}


.options-grid span {
  color: var(--green);

  font-size: 11px;
  font-weight: 700;
}


.options-grid h3 {
  margin: 22px 0 8px;

  color: var(--blue);

  font-size: 17px;
}


.options-grid p {
  margin: 0;

  color: var(--muted);

  font-size: 12px;
  line-height: 1.6;
}



/* ========================================
   DEADLINE
======================================== */

.deadline-card {
  margin-top: 28px;

  padding: 24px;

  background: var(--blue-soft);

  border-left: 4px solid var(--blue);
  border-radius: var(--radius-sm);
}


.deadline-card strong {
  color: var(--blue);
}


.deadline-card p {
  margin: 8px 0 0;
}



/* ========================================
   INFO BOX
======================================== */

.info-box {
  display: grid;
  grid-template-columns: .8fr 1.2fr;

  gap: 80px;

  padding: 44px;

  background: var(--soft);

  border-radius: var(--radius-lg);
}


.info-box h2 {
  margin: 0;

  color: var(--blue);

  font-size: 36px;
}


.info-box p {
  margin: 0 0 16px;

  color: var(--muted);

  font-size: 14px;
  line-height: 1.75;
}



/* ========================================
   DELIVERY
======================================== */

.delivery-section {
  background: var(--green-soft);
}


.delivery-grid {
  display: grid;
  grid-template-columns: 1fr .7fr;

  align-items: center;

  gap: 80px;
}


.delivery-grid > div > p {
  max-width: 650px;

  color: var(--muted);

  line-height: 1.75;
}


.delivery-grid aside {
  padding: 30px;

  background: var(--white);

  border-radius: var(--radius-md);
}


.delivery-grid aside strong {
  color: var(--green);
}


.delivery-grid aside p {
  margin: 10px 0 0;

  color: var(--muted);

  font-size: 13px;
  line-height: 1.7;
}



/* ========================================
   ASSOCIATION
======================================== */

.association-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;

  gap: 90px;
}


.text-link {
  display: inline-block;

  margin-top: 12px;

  color: var(--blue);

  font-size: 13px;
  font-weight: 600;
}



/* ========================================
   REGULATION
======================================== */

.regulation-section {
  background: var(--soft);
}


.regulation-heading {
  max-width: 900px;

  margin-bottom: 50px;
}


.regulation-heading h2 {
  margin: 0;

  color: var(--blue);

  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.1;
}


.regulation-meta {
  display: flex;
  flex-wrap: wrap;

  gap: 10px;

  margin-top: 24px;
}


.regulation-meta span {
  padding: 8px 12px;

  background: var(--white);

  border: 1px solid var(--line);
  border-radius: 999px;

  color: var(--muted);

  font-size: 11px;
}


.regulation-document {
  max-width: 900px;

  padding: 48px;

  background: var(--white);

  border-radius: var(--radius-lg);
}


.regulation-document section {
  padding-bottom: 38px;
  margin-bottom: 38px;

  border-bottom: 1px solid var(--line);
}


.regulation-document section:last-child {
  padding-bottom: 0;
  margin-bottom: 0;

  border-bottom: 0;
}


.regulation-document h3 {
  margin: 0 0 16px;

  color: var(--blue);

  font-size: 22px;
}


.regulation-document p {
  margin: 0 0 14px;

  color: var(--muted);

  font-size: 14px;
  line-height: 1.8;
}


.regulation-document ul {
  margin: 18px 0 0;

  padding-left: 22px;
}


.regulation-document li {
  margin-bottom: 8px;

  color: var(--muted);

  font-size: 14px;
  line-height: 1.65;
}


.regulation-document li::marker {
  color: var(--green);
}



/* ========================================
   INSTITUTION
======================================== */

.institution-card {
  max-width: 900px;

  padding: 44px;

  background: var(--soft);

  border-radius: var(--radius-lg);
}


.institution-card h2 {
  margin: 0;

  color: var(--blue);

  font-size: 40px;
}


.institution-card > p {
  margin: 8px 0 30px;

  color: var(--muted);
}


.institution-card dl {
  display: grid;

  gap: 16px;

  margin: 0;
}


.institution-card dl > div {
  display: grid;
  grid-template-columns: 160px 1fr;

  gap: 20px;

  padding-top: 16px;

  border-top: 1px solid var(--line);
}


.institution-card dt {
  color: var(--muted);

  font-size: 12px;
}


.institution-card dd {
  margin: 0;

  color: var(--text);

  font-size: 13px;
  font-weight: 500;
}



/* ========================================
   FINAL CTA
======================================== */

.final-cta {
  padding: 80px 0;

  background: var(--blue);
}


.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 50px;
}


.final-cta h2 {
  max-width: 700px;

  margin: 0;

  color: var(--white);

  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.1;
}


.final-cta p {
  margin: 16px 0 0;

  color: rgba(255,255,255,.8);

  font-size: 14px;
}



/* ========================================
   FOOTER
======================================== */

.site-footer {
  padding: 70px 0 26px;

  background: #165A88;

  color: var(--white);
}


.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;

  gap: 50px;
}


.footer-brand img {
  width: 145px;

  padding: 12px;

  background: var(--white);

  border-radius: 16px;
}


.footer-brand p {
  max-width: 280px;

  margin: 20px 0 0;

  color: rgba(255,255,255,.72);

  font-size: 12px;
}


.footer-column {
  display: flex;
  flex-direction: column;

  gap: 12px;
}


.footer-column strong {
  margin-bottom: 6px;

  font-size: 13px;
}


.footer-column a {
  color: rgba(255,255,255,.72);

  font-size: 12px;
}


.footer-column a:hover {
  color: var(--white);
}


.footer-bottom {
  margin-top: 50px;
  padding-top: 24px;

  border-top: 1px solid rgba(255,255,255,.16);
}


.footer-bottom small {
  color: rgba(255,255,255,.6);

  font-size: 11px;
}



/* ========================================
   TABLET
======================================== */

@media (max-width: 1024px) {

  .main-nav {
    display: none;
  }


  .hero-grid,
  .participation-grid,
  .selection-grid,
  .content-grid,
  .delivery-grid,
  .association-grid {
    grid-template-columns: 1fr;

    gap: 50px;
  }


  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }


  .options-grid {
    grid-template-columns: repeat(2, 1fr);
  }


  .info-box {
    grid-template-columns: 1fr;

    gap: 40px;
  }


  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}



/* ========================================
   MOBILE
======================================== */

@media (max-width: 767px) {

  .container {
    width: calc(100% - 32px);
  }


  .header-inner {
    min-height: 72px;
  }


  .brand img {
    width: 118px;
  }


  .header-cta {
    min-height: 42px;

    padding: 0 13px;

    font-size: 10px;
  }


  .hero {
    padding: 72px 0 64px;
  }


  .hero h1 {
    font-size: 46px;
  }


  .hero-lead {
    font-size: 18px;
  }


  .hero-actions {
    flex-direction: column;
  }


  .hero-actions .btn {
    width: 100%;
  }


  .hero-card {
    padding: 28px;
  }


  .clarification-inner {
    align-items: flex-start;
    flex-direction: column;

    gap: 8px;
  }


  .section {
    padding: 70px 0;
  }


  .steps-grid,
  .check-list,
  .options-grid {
    grid-template-columns: 1fr;
  }


  .benefit-highlight {
    grid-template-columns: 1fr;
  }


  .benefit-value,
  .benefit-content {
    padding: 30px;
  }


  .regulation-document {
    padding: 28px 22px;
  }


  .regulation-document h3 {
    font-size: 19px;
  }


  .info-box {
    padding: 28px 22px;
  }


  .institution-card {
    padding: 28px;
  }


  .institution-card dl > div {
    grid-template-columns: 1fr;

    gap: 6px;
  }


  .final-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }


  .final-cta .btn {
    width: 100%;
  }


  .footer-grid {
    grid-template-columns: 1fr;

    gap: 34px;
  }

}