/* ========================================
   PROSESP — ADESÃO
======================================== */

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

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

  --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;
}


button,
a {
  -webkit-tap-highlight-color: transparent;
}


.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.94);

  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: 30px;
}


.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);
}



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

.hero {
  padding: 110px 0 100px;

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


.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 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(52px, 6vw, 80px);
  line-height: 0.98;

  letter-spacing: -0.045em;
}


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

  margin: 28px 0 0;

  color: var(--text);

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

  font-weight: 500;
}


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

  margin: 18px 0 0;

  color: var(--muted);

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


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

  gap: 12px;

  margin-top: 34px;
}



/* ========================================
   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 CARD
======================================== */

.hero-card {
  padding: 38px;

  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: inline-block;

  margin-bottom: 18px;

  color: #CFE3F0;

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

  text-transform: uppercase;
}


.hero-card h2 {
  margin: 0;

  font-size: 28px;
  line-height: 1.25;
}


.hero-card ul {
  display: grid;

  gap: 16px;

  margin: 28px 0 0;

  padding: 0;

  list-style: none;
}


.hero-card li {
  position: relative;

  padding-left: 24px;

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

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


.hero-card li::before {
  content: "✓";

  position: absolute;

  left: 0;

  color: var(--yellow);

  font-weight: 700;
}



/* ========================================
   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-left {
  margin-left: 0;

  text-align: left;
}


.section-heading h2,
.content-grid h2,
.split-layout h2,
.assistance-grid h2,
.privacy-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: 16px;
  line-height: 1.7;
}


.content-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);

  gap: 90px;
}


.prose p {
  margin: 0 0 18px;

  color: var(--muted);

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


.prose strong {
  color: var(--text);
}



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

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

  gap: 18px;
}


.step-card {
  padding: 30px;

  background: var(--white);

  border: 1px solid var(--line);
  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: 19px;
}


.step-card p {
  margin: 0;

  color: var(--muted);

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



/* ========================================
   CHECKLIST
======================================== */

.split-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;

  align-items: start;

  gap: 90px;
}


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

  gap: 12px;
}


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

  gap: 12px;

  padding: 18px;

  background: var(--soft);

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

  color: #3E464E;

  font-size: 14px;
}


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

  font-weight: 700;
}



/* ========================================
   MENSALIDADE
======================================== */

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

  color: var(--white);
}


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

  align-items: center;

  gap: 80px;
}


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


.membership-section h2,
.final-cta h2 {
  margin: 0 0 24px;

  color: var(--white);

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

  letter-spacing: -0.035em;
}


.membership-section p {
  max-width: 680px;

  margin: 0 0 16px;

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

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


.notice-card {
  padding: 34px;

  background: var(--white);

  color: var(--text);

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


.notice-label {
  display: inline-flex;

  margin-bottom: 16px;

  padding: 7px 11px;

  background: #E8F3EA;

  color: var(--green);

  border-radius: 999px;

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

  text-transform: uppercase;
}


.notice-card h3 {
  margin: 0 0 14px;

  color: var(--blue);

  font-size: 24px;
}


.notice-card p {
  margin: 0;

  color: var(--muted);

  font-size: 14px;
}


.notice-divider {
  height: 1px;

  margin: 24px 0;

  background: var(--line);
}


.notice-card .notice-small {
  margin-bottom: 10px;

  font-size: 12px;
}



/* ========================================
   DEPENDENTES
======================================== */

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

  gap: 14px;
}


.simple-card {
  padding: 24px;

  background: var(--soft);

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


.simple-card h3 {
  margin: 0;

  color: var(--blue);

  font-size: 17px;
}


.simple-card p {
  margin: 10px 0 0;

  color: var(--muted);

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


.small-note {
  margin: 18px 0 0;

  color: var(--muted);

  font-size: 12px;
}



/* ========================================
   BENEFITS
======================================== */

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

  gap: 18px;
}


.benefit-card {
  display: flex;
  flex-direction: column;

  min-height: 310px;

  padding: 30px;

  background: var(--white);

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


.benefit-type {
  margin-bottom: 28px;

  color: var(--green);

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

  text-transform: uppercase;
}


.benefit-card h3 {
  margin: 0 0 12px;

  color: var(--blue);

  font-size: 21px;
  line-height: 1.3;
}


.benefit-card p {
  margin: 0;

  color: var(--muted);

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


.benefit-details {
  display: grid;

  gap: 8px;

  margin-top: auto;
  padding-top: 24px;
}


.benefit-details span {
  color: #535C65;

  font-size: 12px;
}


.benefit-details strong {
  color: var(--text);
}


.benefit-warning {
  margin-top: 22px;

  padding: 24px 28px;

  background: #E9F3EB;

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


.benefit-warning strong {
  color: var(--green);
}


.benefit-warning p {
  margin: 6px 0 0;

  color: #4D5B50;

  font-size: 13px;
}



/* ========================================
   ASSISTÊNCIA
======================================== */

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


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

  gap: 90px;
}


.assistance-content p {
  margin: 0 0 16px;

  color: var(--muted);

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



/* ========================================
   CANCELAMENTO
======================================== */

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

  gap: 16px;
}


.cancel-card {
  padding: 28px;

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


.cancel-card > span {
  display: block;

  margin-bottom: 30px;

  color: var(--green);

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


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

  color: var(--blue);

  font-size: 17px;
}


.cancel-card p {
  margin: 0;

  color: var(--muted);

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


.cancel-note {
  margin: 22px 0 0;

  padding: 22px;

  background: var(--soft);

  color: var(--muted);

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

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



/* ========================================
   PRIVACIDADE
======================================== */

.privacy-section {
  background: var(--green);

  color: var(--white);
}


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

  align-items: center;

  gap: 90px;
}


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


.privacy-grid p {
  max-width: 640px;

  margin: 20px 0 0;

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

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


.privacy-links {
  display: grid;

  gap: 12px;
}


.privacy-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 20px 22px;

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

  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-sm);

  color: var(--white);

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

  transition: background 0.2s ease;
}


.privacy-links a:hover {
  background: rgba(255, 255, 255, 0.2);
}



/* ========================================
   IDENTIFICAÇÃO
======================================== */

.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;
}



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

.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;
}


.final-cta p {
  max-width: 650px;

  margin: 16px 0 0;

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

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



/* ========================================
   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, 0.72);

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


.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, 0.72);

  font-size: 12px;

  transition: color 0.2s ease;
}


.footer-column a:hover {
  color: #FFFFFF;
}


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

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


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

  font-size: 11px;
}



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

@media (max-width: 1024px) {

  .main-nav {
    display: none;
  }


  .hero-grid,
  .membership-grid,
  .split-layout,
  .privacy-grid,
  .assistance-grid,
  .content-grid {
    grid-template-columns: 1fr;

    gap: 50px;
  }


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


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


  .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: 120px;
  }


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

    padding: 0 14px;

    font-size: 11px;
  }


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


  .hero-grid {
    gap: 40px;
  }


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


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


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


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


  .hero-card {
    padding: 28px;
  }


  .section {
    padding: 70px 0;
  }


  .section-heading h2,
  .content-grid h2,
  .split-layout h2,
  .assistance-grid h2,
  .privacy-grid h2 {
    font-size: 34px;
  }


  .steps-grid,
  .benefits-grid,
  .cancel-grid,
  .dependent-grid,
  .check-list {
    grid-template-columns: 1fr;
  }


  .benefit-card {
    min-height: auto;
  }


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


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


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

    gap: 34px;
  }


  .institution-card {
    padding: 28px;
  }


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

    gap: 6px;
  }

}