:root {
  --primary: #1E6A9F;
  --dark: #3A404B;
  --dark-card: #333942;
  --footer: #0E1417;
  --soft: #E8E8F0;
  --soft-card: #F3F4F9;
  --white: #FFFFFF;
  --black: #000000;
  --line: #E3E6EC;

  --radius-button: 16px;
  --radius-card: 24px;
  --radius-image: 28px;

  --main: 1416px;
  --wide: 1560px;
  --gap: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Poppins", Arial, sans-serif;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.main-container {
  width: min(var(--main), calc(100% - 48px));
  margin-inline: auto;
}
.wide-container {
  width: min(var(--wide), calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 80px;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(10px);
}
.header-inner {
  height: 80px;
  width: min(1845px, calc(100% - 60px));
  margin: auto;
  display: flex;
  align-items: center;
  gap: 52px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.brand-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo img {
  width: 112px;
  height: auto;
  max-height: 58px;
  display: block;
}

.brand-mark {
  width: 42px;
  height: 42px;
  background: var(--primary);
  color: white;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 22px;
}
.brand-name { font-size: 20px; }
.main-nav {
  display: flex;
  align-items: center;
  gap: 52px;
  font-size: 15px;
  font-weight: 500;
}
.main-nav a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.header-action {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
}
.header-user-icon {
  width: 22px;
  height: 22px;
}
.header-user-icon svg,
.icon-wrap svg,
.avatar-icon svg,
.product-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero {
  height: 745px;
  position: relative;
  overflow: hidden;
  color: var(--white);
}
.hero-bg {
  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.48) 0%,
      rgba(0, 0, 0, 0.34) 28%,
      rgba(0, 0, 0, 0.14) 48%,
      rgba(0, 0, 0, 0) 68%
    ),
    url("./assets/hero-consignado.png");

  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.hero-inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: center;
}
.hero-copy 
{ max-width: 620px;
  margin-left: 0;
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--primary);
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
}
.eyebrow.light { color: var(--white); }
.eyebrow.light-blue { color: #7DCCFF; }
.eyebrow.dark { color: var(--black); }

.salary-banner .eyebrow {
  color: #FFFFFF;
}

.salary-banner h2 {
  color: #FFFFFF;
}

.salary-banner p {
  color: #FFFFFF;
}

.hero h1 {
  margin: 0;
  max-width: 620px;

  font-size: 48px;
  line-height: 1.08;
  font-weight: 700;

  letter-spacing: -0.035em;
}
.hero-lead {
  margin: 24px 0 10px;
  max-width: 640px;
  font-size: 18px;
  line-height: 1.55;
}
.hero-legal {
  margin: 0 0 28px;
  font-size: 12px;
  line-height: 18px;
  opacity: .9;
}

.btn {
  border: 0;
  min-height: 56px;
  padding: 0 28px;
  border-radius: var(--radius-button);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  cursor: pointer;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
}
.btn-light {
  background: var(--white);
  color: var(--black);
}
.hero-btn { width: 288px; }

.section { padding: 96px 0; }
.two-cols {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 630px;
  gap: 90px;
  align-items: center;
}
.section-copy h2,
.dark-copy h2,
.products-heading h2,
.accordion-section h2,
.contact-strip h2,
.salary-banner h2 {
  margin: 0;
  font-size: clamp(36px, 2.7vw, 50px);
  line-height: 1.08;
  letter-spacing: -.035em;
}
.section-copy p:not(.eyebrow):not(.microcopy),
.dark-copy p:not(.eyebrow),
.salary-banner p {
  font-size: 17px;
  line-height: 1.6;
  max-width: 700px;
}
.section-copy .btn { margin-top: 16px; }
.microcopy {
  margin-top: 18px;
  font-size: 12px;
  line-height: 18px;
  color: #535B66;
}
.intro-section { min-height: 800px; display: flex; align-items: center; }
.portrait-card {
  margin: 0;
  width: 630px;
  height: 600px;
  overflow: hidden;
  border-radius: var(--radius-image);
  background: var(--primary);
}
.portrait-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

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

.benefits-section .dark-card {
  position: relative;

  background: #FFFFFF;
  color: #1A1A1A;

  border-radius: 24px;

  overflow: hidden;
}

.benefits-section .dark-card::before {
  content: "";

  position: absolute;
  top: 0;
  left: 0;
  right: 0;

  height: 5px;

  background: #2E813F;
}

.benefits-section .dark-card h3 {
  color: #1E6A9F;
}


.benefits-section .dark-card h3 {
  color: #1E6A9F;
}

.benefits-section .dark-card p {
  color: #4B535B;
}

.benefits-section .icon-wrap.light {
  width: 48px;
  height: 48px;

  padding: 10px;

  border-radius: 14px;

  background: rgba(46, 129, 63, 0.10);
  color: #2E813F;
}

/* PROSESP — seção de benefícios */
.benefits-section {
  background: #1E6A9F;
  color: #FFFFFF;
}

.benefits-section .eyebrow {
  color: #FFFFFF;
}

.benefits-section .dark-copy h2 {
  color: #FFFFFF;
}

.benefits-section .dark-copy > p:last-child {
  color: rgba(255, 255, 255, 0.88);
}

.benefits-section { min-height: 530px; display: flex; align-items: center; }
.benefits-layout,
.use-layout {
  display: grid;
  grid-template-columns: 600px 1fr;
  gap: 120px;
  align-items: center;
}
.cards-row {
  display: flex;
  gap: var(--gap);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.cards-row::-webkit-scrollbar,
.products-track::-webkit-scrollbar { display: none; }

.info-card {
  flex: 0 0 264px;
  min-height: 370px;
  border-radius: var(--radius-card);
  padding: 36px 32px;
  scroll-snap-align: start;
}
.info-card h3 {
  margin: 30px 0 12px;
  font-size: 20px;
  line-height: 1.35;
}
.info-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}
.dark-card { background: var(--dark-card); color: white; }
.light-card { background: var(--soft-card); color: var(--black); }
.icon-wrap {
  display: block;
  width: 42px;
  height: 42px;
}
.icon-wrap.light { color: var(--white); }

.how-section { min-height: 1023px; display: flex; align-items: center; }
.how-grid {
  display: grid;
  grid-template-columns: 420px 340px 1fr;
  gap: 90px;
  align-items: center;
}
.phone-wrap {
  display: grid;
  place-items: center;
}
.phone-wrap img {
  width: 310px;
  max-height: 650px;
  object-fit: contain;
  display: block;
}
.timeline {
  position: relative;
  display: grid;
  gap: 38px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: #DCE9F4;
}
.timeline-step {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 20px;
  position: relative;
}
.step-num {
  width: 40px;
  height: 40px;
  border: 2px solid var(--primary);
  color: var(--primary);
  background: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 600;
  z-index: 1;
}
.timeline-step h3 {
  margin: 2px 0 6px;
  font-size: 20px;
}
.timeline-step p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: #535B66;
}

.faq-cards-section {
  background: var(--soft);
  min-height: 578px;
  display: flex;
  align-items: center;
}
.faq-cards-layout {
  display: grid;
  grid-template-columns: 620px 1fr;
  gap: 120px;
  align-items: center;
}
.compact { max-width: 580px; }
.carousel-shell { min-width: 0; }
.carousel-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 18px;
}
.round-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #C9D0D8;
  background: white;
  cursor: pointer;
}
.round-btn.inverse {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,.25);
}

.salary-banner {
  background: #1E6A9F;
  color: #FFFFFF;
  min-height: 323px;
  display: flex;
  align-items: center;
}
.salary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.salary-banner h2 { max-width: 590px; }
.salary-cta-wrap p { margin-top: 0; }
.salary-cta {
  width: min(576px, 100%);
  min-height: 56px;

  border: 2px solid #FFFFFF;
  border-radius: var(--radius-button);

  color: #FFFFFF;

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

  padding: 0 18px 0 24px;

  font-weight: 600;

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

.salary-cta:hover {
  background: #FFFFFF;
  color: #1E6A9F;
}
.wa-dot {
  width: 32px;
  height: 32px;

  border-radius: 50%;

  background: #FFFFFF;
  color: #1E6A9F;

  display: grid;
  place-items: center;
}

.use-section {
  min-height: 578px;
  display: flex;
  align-items: center;
}
.use-track .info-card { flex-basis: 264px; }

.eligibility-section {
  min-height: 1125px;
  padding-bottom: 0;
  overflow: hidden;
}
.eligibility-grid {
  min-height: 1029px;
  display: grid;
  grid-template-columns: 620px 1fr;
  gap: 40px;
  align-items: end;
}
.eligibility-copy {
  align-self: center;
  padding-bottom: 80px;
}
.eligibility-copy h2 {
  margin: 0 0 36px;
  font-size: clamp(38px, 2.7vw, 50px);
  line-height: 1.08;
}
.eligibility-list {
  display: grid;
  gap: 24px;
}
.eligibility-item {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 16px;
  font-weight: 500;
}
.avatar-icon {
  width: 42px;
  height: 42px;
  color: var(--primary);
  flex: 0 0 auto;
}
.eligibility-person {
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.eligibility-person img {
  width: min(633px, 100%);
  max-height: 1018px;
  object-fit: contain;
  object-position: center bottom;
}

.products-section {
  min-height: 634px;
  display: flex;
  align-items: center;
}
.products-heading {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 48px;
}
.products-track {
  width: min(1176px, 100%);
  margin-inline: auto;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-card {
  min-height: 370px;

  background: var(--dark-card);

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

  padding: 34px 30px;
}
.product-icon {
  width: 44px;
  height: 44px;
  color: white;
  display: block;
}
.product-card h3 {
  margin: 28px 0 12px;
  font-size: 19px;
}
.product-card p {
  color: #D7DCE2;
  font-size: 14px;
  line-height: 1.55;
}
.product-card a {
  display: inline-block;
  margin-top: 30px;
  color: #7DCCFF;
  font-weight: 600;
}
.products-actions {
  width: min(1176px, 100%);
  margin-inline: auto;
}

.accordion-section {
  min-height: 651px;
  display: flex;
  align-items: center;
}
.accordion-section h2 {
  max-width: 900px;
  margin-bottom: 36px;
}
.accordion details {
  border-top: 1px solid var(--line);
}
.accordion details:last-child {
  border-bottom: 1px solid var(--line);
}
.accordion summary {
  list-style: none;
  min-height: 75px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 500;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after {
  content: "+";
  color: var(--primary);
  font-size: 22px;
}
.accordion details[open] summary::after { content: "−"; }
.accordion details p {
  margin: -6px 0 24px;
  color: #535B66;
  max-width: 900px;
}

.contact-strip {
  background: #151B1F;
  color: white;
  padding: 54px 0;
}
.contact-strip-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.contact-strip h2 { font-size: 34px; }

.site-footer {
  background: var(--footer);
  color: #F2F5F7;
  padding: 86px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 70px;
}
.footer-grid h3 {
  margin: 0 0 20px;
  font-size: 15px;
}
.footer-grid a,
.footer-grid p {
  display: block;
  margin: 0 0 12px;
  color: #C4CBD0;
  font-size: 13px;
  line-height: 1.6;
}
.footer-logo { color: white; margin-bottom: 18px; }
.social-row {
  display: flex;
  gap: 12px;
  margin: 24px 0;
}
.social-row a {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 10px;
  color: white;
}
.qr-placeholder {
  width: 128px;
  height: 128px;
  background:
    linear-gradient(90deg,#000 12%,transparent 12% 24%,#000 24% 36%,transparent 36% 48%,#000 48% 60%,transparent 60% 72%,#000 72% 84%,transparent 84%),
    linear-gradient(#000 12%,#fff 12% 24%,#000 24% 36%,#fff 36% 48%,#000 48% 60%,#fff 60% 72%,#000 72% 84%,#fff 84%);
  border: 8px solid white;
  color: transparent;
}
.footer-bottom {
  margin-top: 70px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: #818B92;
}

.cookie-banner {
  position: fixed;
  z-index: 2000;
  left: 32px;
  right: 32px;
  bottom: 24px;
  min-height: 78px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(0,0,0,.16);
  padding: 14px 18px 14px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.cookie-banner p {
  margin: 0;
  font-size: 12px;
  line-height: 1.4;
  color: #313841;
}
.cookie-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cookie-link {
  border: 0;
  background: transparent;
  color: #178DD9;
  cursor: pointer;
  font-size: 12px;
}
.cookie-btn {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 12px;
}
.cookie-banner.is-hidden { display: none; }

@media (max-width: 1439px) {
  .main-container,
  .wide-container { width: calc(100% - 64px); }
  .header-inner { width: calc(100% - 40px); gap: 30px; }
  .main-nav { gap: 28px; }
  .two-cols { grid-template-columns: 1fr 520px; gap: 60px; }
  .portrait-card { width: 520px; height: 520px; }
  .benefits-layout,
  .faq-cards-layout,
  .use-layout { grid-template-columns: 500px 1fr; gap: 70px; }
  .how-grid { grid-template-columns: 360px 300px 1fr; gap: 50px; }
}

@media (max-width: 1023px) {
  .site-header { height: 72px; }
  .header-inner { height: 72px; }
  .main-nav { display: none; }
  .header-action span:last-child { display: none; }

  .hero { height: auto; min-height: 680px; }
  .hero-bg {
    background-position: 62% center;
  }
  .hero-inner { min-height: 680px; align-items: flex-end; padding-bottom: 70px; }
  .hero-copy { max-width: 600px; }

  .section { padding: 76px 0; }
  .two-cols,
  .benefits-layout,
  .faq-cards-layout,
  .use-layout,
  .salary-grid,
  .eligibility-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .intro-section,
  .benefits-section,
  .how-section,
  .faq-cards-section,
  .use-section,
  .products-section,
  .accordion-section { min-height: 0; }

  .portrait-card {
    width: 100%;
    height: auto;
    aspect-ratio: 1.05 / 1;
  }

  .how-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }
  .phone-wrap { order: 2; }
  .timeline { order: 3; }
  .how-copy { order: 1; }

  .salary-banner { padding: 68px 0; }
  .eligibility-section { min-height: 0; padding-bottom: 0; }
  .eligibility-grid { min-height: 0; }
  .eligibility-copy { padding-bottom: 0; }
  .eligibility-person img { width: min(560px, 88vw); }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 50px; }
}

@media (max-width: 767px) {
  .main-container,
  .wide-container { width: calc(100% - 48px); }
  .header-inner { width: calc(100% - 32px); }
  .brand-mark { width: 38px; height: 38px; }
  .brand-name { font-size: 18px; }

  .hero { min-height: 720px; }
  .hero-bg {
    background-position: 66% center;
  }
  .hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.05) 30%, rgba(0,0,0,.68) 86%);
  }
  .hero h1 {
    font-size: 38px;
    line-height: 1.08;
  }
  .hero-lead { font-size: 16px; }
  .hero-btn { width: 100%; }

  .section { padding: 64px 0; }
  .section-copy h2,
  .dark-copy h2,
  .products-heading h2,
  .accordion-section h2,
  .salary-banner h2 {
    font-size: 32px;
    line-height: 1.12;
  }
.benefits-section .dark-copy h2 {
  font-size: 44px;
  line-height: 1.08;
  max-width: 560px;
}

.benefits-section .dark-copy > p:last-child {
  max-width: 580px;
}

  .info-card { flex-basis: 286px; }
  .products-track { width: 100%; }
  .product-card { flex-basis: 286px; }

  .salary-cta { width: 100%; }
  .eligibility-person img { width: 100%; }

  .contact-strip-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-grid { grid-template-columns: 1fr; }
  .cookie-banner {
    left: 16px;
    right: 16px;
    bottom: 16px;
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
    padding: 18px;
  }
  .cookie-actions {
    width: 100%;
    margin-left: 0;
  }
  .cookie-actions .btn { flex: 1; }
}

.eligibility-intro {
  max-width: 590px;
  margin: 0 0 36px;

  font-size: 17px;
  line-height: 1.6;

  color: #444B53;
}

.convenios-intro {
  max-width: 760px;
  margin: 20px auto 0;

  color: #D7DCE2;

  font-size: 16px;
  line-height: 1.6;

  text-align: center;
}

@media (max-width: 1023px) {
  .products-track {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .products-track {
    grid-template-columns: 1fr;
  }
}

.faq-intro {
  max-width: 760px;
  margin: 18px 0 36px;

  font-size: 16px;
  line-height: 1.6;

  color: #535B66;
}

.footer-prosesp-logo {
  display: inline-block;
  margin-bottom: 22px;
}

.footer-prosesp-logo img {
  width: 150px;
  height: auto;
  display: block;
}

/* ========================================
   PROSESP — SEÇÃO CONVÊNIOS
   Escopo exclusivo: #convenios
======================================== */


/* Fundo da seção */

#convenios {
  background: #1E6A9F;
  color: #FFFFFF;
}


/* Eyebrow */

#convenios .eyebrow {
  color: #FFFFFF;
}


/* Título principal */

#convenios .products-heading h2 {
  color: #FFFFFF;
}


/* Texto introdutório */

#convenios .convenios-intro {
  color: rgba(255, 255, 255, 0.86);
}


/* Grid dos cards */

#convenios .products-track {
  gap: 24px;
}


/* Cards */

#convenios .product-card {
  position: relative;

  background: #FFFFFF;
  color: #171A1D;

  border-radius: 24px;

  overflow: hidden;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}


/* Pequeno detalhe verde */

#convenios .product-card::before {
  content: "";

  position: absolute;
  top: 0;
  left: 0;
  right: 0;

  height: 5px;

  background: #2E813F;
}


/* Hover */

#convenios .product-card:hover {
  transform: translateY(-4px);

  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.12);
}


/* Ícones */

#convenios .product-icon {
  width: 48px;
  height: 48px;

  padding: 10px;

  border-radius: 14px;

  background: #EEF6F0;
  color: #2E813F;
}


/* Título dos cards */

#convenios .product-card h3 {
  color: #1E6A9F;
}


/* Texto dos cards */

#convenios .product-card p {
  color: #535B66;
}

/* ========================================
   PROSESP — FOOTER
   Azul principal + branco + verde de destaque
======================================== */

.site-footer {
  position: relative;

  background: #1E6A9F;
  color: #FFFFFF;
}


/* Faixa verde de destaque */

.site-footer::before {
  content: "";

  position: absolute;
  top: 0;
  left: 0;
  right: 0;

  height: 5px;

  background: #2E813F;
}


/* Card branco da logo no footer */

.site-footer .footer-prosesp-logo {
  width: 180px;
  height: 120px;

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

  margin-bottom: 22px;

  padding: 16px;

  background: #FFFFFF;

  border-radius: 20px;

  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);

}


/* Logo */

.site-footer .footer-prosesp-logo img {
  width: 145px;
  height: auto;

  display: block;
}


/* Texto institucional abaixo da logo */

.site-footer .footer-brand > p {
  color: rgba(255, 255, 255, 0.82);
}


/* Títulos das colunas */

.site-footer .footer-grid h3 {
  color: #FFFFFF;
  font-weight: 700;
}


/* Links */

.site-footer .footer-grid a {
  color: rgba(255, 255, 255, 0.82);

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

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


/* Textos gerais */

.site-footer .footer-grid p {
  color: rgba(255, 255, 255, 0.82);
}


/* Redes sociais */

.site-footer .social-row a {
  color: #FFFFFF;

  border: 1px solid rgba(255, 255, 255, 0.40);

  background: transparent;
}

.site-footer .social-row a:hover {
  background: #2E813F;
  border-color: #2E813F;
  color: #FFFFFF;
}


/* Linha inferior */

.site-footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.20);

  color: rgba(255, 255, 255, 0.68);
}


/* Copyright */

.site-footer .footer-bottom small {
  color: rgba(255, 255, 255, 0.68);
}

/* ========================================
   PROSESP — CTA ANTES DO FOOTER
   Escopo exclusivo: .contact-strip
======================================== */

.contact-strip {
  background: #2E813F;
  color: #FFFFFF;
}


/* Texto pequeno */

.contact-strip .eyebrow {
  color: #FFFFFF;
}


/* Título */

.contact-strip h2 {
  color: #FFFFFF;
}


/* Botão */

.contact-strip .btn-primary {
  background: #FFFFFF;
  color: #1E6A9F;

  border: 2px solid #FFFFFF;

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


.contact-strip .btn-primary:hover {
  background: #1E6A9F;
  color: #FFFFFF;

  border-color: #1E6A9F;

  transform: translateY(-2px);
}
