﻿:root {
  --green: #3f7d20;
  --green-dark: #153d21;
  --green-soft: #e8f5df;
  --lime: #b8df58;
  --ink: #1c2a20;
  --muted: #69756d;
  --paper: #fbfbf4;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.7;
}

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

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

h1,
h2 {
  font-family: "Libre Baskerville", Georgia, serif;
  font-weight: 700;
  line-height: 1.12;
}

h1 {
  color: var(--white);
  font-size: clamp(3rem, 7vw, 6.8rem);
  max-width: 780px;
}

h2 {
  color: var(--green-dark);
  font-size: clamp(2.1rem, 4vw, 4.3rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.2rem;
  font-weight: 800;
}

p {
  color: var(--muted);
}

section {
  padding: 110px 0;
}

.eyebrow {
  color: var(--lime);
  font-size: .95rem;
  font-weight: 800;
  letter-spacing: 0;
  margin-bottom: .75rem;
}

.eyebrow.dark {
  color: var(--green);
}

.btn {
  border-radius: 999px;
  font-weight: 800;
  padding: .95rem 1.75rem;
}


.btn-brand {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--green-dark);
}

.btn-brand:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--green-dark);
}

.btn-outline-brand {
  border-color: var(--green);
  color: var(--green);
}

.btn-outline-brand:hover {
  background: var(--green);
  color: var(--white);
}

.topbar {
  background: var(--green-dark);
  color: var(--white);
  padding: .7rem 0;
  font-size: .92rem;
}

.topbar-link {
  color: rgba(255, 255, 255, .9);
}
.topbar-link i {
  color: var(--lime);
  margin-right: .4rem;
}

.socials {
  display: flex;
  align-items: center;
  gap: .95rem;
}

.socials a {
  color: rgba(255, 255, 255, .85);
  transition: color .2s ease, transform .2s ease;
}

.socials a:hover {
  color: var(--lime);
  transform: translateY(-2px);
}

.main-nav {
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(21, 61, 33, .08);
  min-height: 88px;
  transition: box-shadow .2s ease, min-height .2s ease;
  z-index: 20;
}

.main-nav.is-sticky {
  position: fixed;
  inset: 0 0 auto;
  min-height: 74px;
  box-shadow: 0 16px 40px rgba(21, 61, 33, .14);
}

.navbar-brand,
.footer-brand {
  align-items: center;
  color: var(--green-dark);
  display: inline-flex;
  font-size: 1.65rem;
  font-weight: 900;
  gap: .65rem;
}

.logo-mark {
  align-items: center;
  background: var(--green);
  border-radius: 50%;
  color: var(--white);
  display: inline-flex;
  height: 46px;
  justify-content: center;
  width: 46px;
}

.nav-link {
  color: var(--green-dark);
  font-weight: 800;
  padding: 1rem !important;
}

.nav-link.active,
.nav-link:hover {
  color: var(--green);
}

.dropdown-menu {
  border: 0;
  border-radius: 6px;
  box-shadow: 0 18px 40px rgba(21, 61, 33, .14);
  padding: .75rem;
}

.dropdown-item {
  border-radius: 4px;
  font-weight: 700;
  padding: .75rem 1rem;
}

.dropdown-item:hover {
  background: var(--green-soft);
  color: var(--green);
}

.hero {
  background: url("https://images.unsplash.com/photo-1558904541-efa843a96f01?auto=format&fit=crop&w=1800&q=85") center/cover no-repeat;
  margin-top: 0;
  overflow: hidden;
  padding: 0;
  position: relative;
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(12, 42, 21, .88), rgba(12, 42, 21, .56), rgba(12, 42, 21, .18));
  inset: 0;
  position: absolute;
}

.hero .lead {
  color: rgba(255, 255, 255, .86);
  font-size: 1.16rem;
  margin: 1.5rem 0 2rem;
  max-width: 650px;
}

.play-link {
  align-items: center;
  color: var(--white);
  display: inline-flex;
  font-weight: 800;
  gap: .75rem;
}

.play-link span {
  align-items: center;
  background: var(--white);
  border-radius: 50%;
  color: var(--green);
  display: inline-flex;
  height: 54px;
  justify-content: center;
  width: 54px;
}

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

.feature-card,
.service-card,
.testimonial-card,
.blog-card {
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(21, 61, 33, .09);
  height: 100%;
}

.feature-card {
  border: 1px solid rgba(37, 38, 184, .12);
  padding: 2rem;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.feature-card:hover,
.type-card:hover,
.timeline-grid article:hover,
.notice-box:hover,
.support-box:hover {
  border-color: rgba(16, 210, 212, .28);
  box-shadow: 0 22px 46px rgba(37, 38, 184, .12);
  transform: translateY(-4px);
}

.feature-card.accent {
  background: var(--green-dark);
}

.feature-card.accent h3,
.feature-card.accent p,
.feature-card.accent a {
  color: var(--white);
}

.feature-icon {
  align-items: center;
  background: var(--green-soft);
  border-radius: 50%;
  color: var(--green);
  display: flex;
  font-size: 2rem;
  height: 72px;
  justify-content: center;
  margin-bottom: 1.25rem;
  width: 72px;
}

.feature-card a,
.service-card a,
.blog-card a,
.project-strip a {
  color: var(--green);
  font-weight: 800;
}

.about-section {
  background: linear-gradient(180deg, var(--paper), #eef7e8);
}

.image-stack {
  min-height: 600px;
  position: relative;
}

.image-stack img {
  border: 10px solid var(--white);
  border-radius: 8px;
  box-shadow: 0 26px 60px rgba(21, 61, 33, .18);
  object-fit: cover;
}

.image-stack .main-img {
  height: 520px;
  width: 78%;
}

.image-stack .small-img {
  height: 220px;
  position: absolute;
  right: 0;
  width: 46%;
}

.image-stack .top {
  top: 36px;
}

.image-stack .bottom {
  bottom: 12px;
}

.subheading {
  color: var(--green-dark);
  font-family: "Inter", Arial, sans-serif;
  font-size: 1.25rem;
  margin: 1rem 0;
}

.mini-feature {
  align-items: flex-start;
  display: flex;
  gap: 1rem;
}

.mini-feature i {
  color: var(--green);
  font-size: 2rem;
}

.mini-feature h4 {
  font-size: 1rem;
  font-weight: 900;
  margin-bottom: .15rem;
}

.mini-feature p {
  font-size: .92rem;
  margin: 0;
}

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

.skills-section h2,
.skills-section p {
  color: var(--white);
}

.skill {
  margin-top: 1.45rem;
}

.skill span,
.skill strong {
  color: var(--white);
  font-weight: 800;
}

.progress {
  background: rgba(255, 255, 255, .18);
  border-radius: 999px;
  height: 10px;
  margin-top: .65rem;
}

.progress-bar {
  background: var(--lime);
  border-radius: inherit;
  width: 0;
  transition: width 1.1s ease;
}

.photo-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}

.photo-grid img {
  aspect-ratio: 1 / .78;
  border-radius: 8px;
  object-fit: cover;
}

.photo-grid img:nth-child(2),
.photo-grid img:nth-child(3) {
  transform: translateY(34px);
}

.services-section {
  background: var(--paper);
}

.service-card,
.blog-card {
  overflow: hidden;
}

.service-card img,
.blog-card img {
  height: 270px;
  object-fit: cover;
  width: 100%;
}

.service-body,
.blog-body {
  padding: 1.6rem;
}

.service-body ul {
  border-bottom: 1px solid rgba(21, 61, 33, .12);
  color: var(--green);
  display: flex;
  font-weight: 800;
  gap: 1.5rem;
  list-style: none;
  margin: 0 0 1.2rem;
  padding: 0 0 1rem;
}

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

.process-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}

.process-grid article {
  background: var(--green-soft);
  border-radius: 8px;
  padding: 2rem;
}

.process-grid span {
  color: var(--green);
  display: block;
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.project-section {
  background: var(--green-dark);
  color: var(--white);
  padding-bottom: 0;
}

.project-section h2,
.project-section p {
  color: var(--white);
}

.project-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.project-strip article {
  align-items: end;
  background-position: center;
  background-size: cover;
  display: flex;
  min-height: 390px;
  overflow: hidden;
  padding: 1.5rem;
  position: relative;
}

.project-strip article::before {
  background: linear-gradient(180deg, transparent, rgba(14, 43, 22, .92));
  content: "";
  inset: 0;
  position: absolute;
}

.project-strip div {
  position: relative;
}

.project-strip h3 {
  color: var(--white);
  font-size: 1.35rem;
}

.project-strip a {
  color: var(--lime);
}

.testimonial-section {
  background: var(--paper);
}

.testimonial-card {
  padding: 1.5rem;
  text-align: center;
}

.testimonial-card img {
  border-radius: 50%;
  height: 78px;
  margin: 0 auto 1rem;
  object-fit: cover;
  width: 78px;
}

.testimonial-card h3 {
  margin-bottom: 0;
}

.testimonial-card span {
  color: var(--green);
  display: block;
  font-size: .9rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.stars {
  color: #f2be2d;
  font-weight: 900;
  letter-spacing: 2px;
}

.cta-section {
  background: linear-gradient(rgba(18, 61, 32, .82), rgba(18, 61, 32, .82)), url("https://images.unsplash.com/photo-1599685315640-554c95f5fc7d?auto=format&fit=crop&w=1800&q=85") center/cover no-repeat;
  color: var(--white);
}

.cta-inner {
  align-items: center;
  display: flex;
  gap: 2rem;
  justify-content: space-between;
}

.cta-inner h2,
.cta-inner p {
  color: var(--white);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

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

.blog-body p {
  color: var(--green);
  font-size: .9rem;
  font-weight: 800;
}

.blog-body h3 {
  font-size: 1.55rem;
}

.footer {
  background: #102b18;
  color: rgba(255, 255, 255, .78);
  padding: 90px 0 28px;
}

.footer p,
.footer li {
  color: rgba(255, 255, 255, .72);
}

.footer-brand {
  color: var(--white);
  margin-bottom: 1.2rem;
}

.footer h4 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 900;
  margin-bottom: .9rem;
}

.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer li {
  margin-bottom: .55rem;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .62);
  margin-top: 3rem;
  padding-top: 1.5rem;
  text-align: center;
}

.to-top {
  align-items: center;
  background: var(--lime);
  border: 0;
  border-radius: 50%;
  bottom: 24px;
  box-shadow: 0 12px 30px rgba(21, 61, 33, .25);
  color: var(--green-dark);
  display: flex;
  height: 46px;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  right: 24px;
  transition: opacity .2s ease, transform .2s ease;
  width: 46px;
  z-index: 30;
}

.to-top.show {
  opacity: 1;
  pointer-events: auto;
}
.program-intro{
  background-color:#42A9C1;
}
@media (max-width: 991.98px) {
  section {
    padding: 80px 0;
  }

  .main-nav.is-sticky {
    position: sticky;
  }

  .image-stack {
    min-height: auto;
  }

  .image-stack .main-img,
  .image-stack .small-img {
    height: 260px;
    position: static;
    width: 100%;
  }

  .image-stack {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr 1fr;
  }

  .image-stack .main-img {
    grid-column: 1 / -1;
  }

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

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

@media (max-width: 767.98px) {
  .topbar .container {
    justify-content: center !important;
    text-align: center;
  }

  .hero .row {
    min-height: 760px !important;
  }

  .photo-grid,
  .process-grid,
  .project-strip {
    grid-template-columns: 1fr;
  }

  .photo-grid img:nth-child(2),
  .photo-grid img:nth-child(3) {
    transform: none;
  }

  .project-strip article {
    min-height: 310px;
  }
}

@media (max-width: 575.98px) {
  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .image-stack {
    grid-template-columns: 1fr;
  }

  .service-body ul {
    align-items: flex-start;
    flex-direction: column;
    gap: .35rem;
  }
}

/* Hero aligned to the referenced Lawncare layout */
.site-header {
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 40;
}

.topbar {
  background: #f1ebd7;
  color: #14451f;
  padding: .82rem 0;
}

.topbar .container,
.main-nav .container {
  max-width: 1140px;
}

.topbar-link,
.topbar .socials a {
  color: #14451f;
  font-weight: 500;
}

.topbar-link i,
.topbar .socials a:hover {
  color: #14451f;
}

.main-nav {
  background: transparent;
  border-bottom: 0;
  min-height: 98px;
  padding: 0;
}

.main-nav .navbar-brand {
  color: #ffffff;
  font-size: 1.7rem;
  font-weight: 900;
  letter-spacing: 0;
}

.main-nav .logo-mark {
  background: rgba(185, 224, 83, .18);
  border: 3px solid #b8df58;
  color: #b8df58;
  height: 44px;
  width: 44px;
}

.main-nav .nav-link {
  color: #ffffff;
  font-size: .98rem;
  font-weight: 900;
  padding-left: 1.35rem !important;
  padding-right: 1.35rem !important;
}

.main-nav .nav-link.active,
.main-nav .nav-link:hover {
  color: #b8df58;
}

.main-nav.is-sticky {
  background: rgba(255, 255, 255, .97);
  min-height: 76px;
}

.main-nav.is-sticky .navbar-brand,
.main-nav.is-sticky .nav-link {
  color: #133f20;
}

.main-nav.is-sticky .nav-link.active,
.main-nav.is-sticky .nav-link:hover {
  color: #3f7d20;
}

.hero {
  background: url("https://source.unsplash.com/1800x1000/?woman,watering,plants,garden") center/cover no-repeat;
  min-height: 910px;
}

.hero-overlay {
  background: rgba(30, 83, 34, .78);
}

.hero-row {
  min-height: 910px;
  padding-bottom: 120px;
  padding-top: 135px;
}

.hero-content {
  margin-top: 34px;
}

.hero .eyebrow {
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: 999px;
  color: #ffffff;
  display: inline-block;
  font-size: 1.22rem;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 1.45rem;
  padding: .18rem 1.65rem .24rem;
}

.hero h1 {
  color: #ffffff;
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(3.25rem, 5.7vw, 5.8rem);
  font-weight: 900;
  line-height: 1.08;
  margin-left: auto;
  margin-right: auto;
  max-width: 880px;
}

.hero .lead {
  color: rgba(255, 255, 255, .94);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.65;
  margin: 1.75rem auto 2.05rem;
  max-width: 620px;
}

.hero .btn-brand {
  background: #b8df58;
  border-color: #b8df58;
  color: #173e1f;
  min-width: 176px;
  padding: .95rem 1.6rem;
}

.hero .btn-brand:hover {
  background: #ffffff;
  border-color: #ffffff;
}

.hero .play-link {
  font-size: 0;
}

.hero .play-link span {
  background: #f3ead4;
  color: #205b25;
  height: 60px;
  width: 60px;
}

.hero .play-link i {
  font-size: 1.35rem;
}

.hero-wave {
  bottom: -1px;
  height: 118px;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  z-index: 3;
}

.hero-wave svg {
  display: block;
  height: 100%;
  width: 100%;
}
.program-wave {
  height: 72px;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: -1px;
  z-index: 1;
}

.program-wave svg {
  display: block;
  height: 100%;
  width: 100%;
}

@media (max-width: 991.98px) {
  .site-header {
    position: relative;
  }

  .main-nav {
    background: #ffffff;
    min-height: 82px;
  }

  .main-nav .navbar-brand,
  .main-nav .nav-link {
    color: #133f20;
  }

  .main-nav .navbar-collapse {
    background: #ffffff;
    padding: 1rem 0;
  }

  .hero,
  .hero-row {
    min-height: 760px;
  }

  .hero-row {
    padding-top: 80px;
  }
}

@media (max-width: 575.98px) {
  .hero h1 {
    font-size: 3.1rem;
  }

  .hero .eyebrow {
    font-size: 1rem;
  }
}

body,
.hero h1,
.main-nav .navbar-brand,
.main-nav .nav-link {
  font-family: "Jost", Arial, sans-serif;
}

/* ConectaClima Jovem content update */
.program-page {
  --green: #10d2d4;
  --green-dark: #2526b8;
  --green-soft: #e5fbff;
  --lime: #ffc400;
  --blue: #42a9c1;
  --orange: #c429e6;
  --paper: #e8f8fb;
  background: #e8f8fb;
  font-family: "Jost", Arial, sans-serif;
}

.program-header .topbar {
  background: #e8f8fb;
  border-bottom: 1px solid rgba(37, 38, 184, .16);
}

.program-brand img {
  display: block;
  height: 78px;
  max-width: 220px;
  object-fit: contain;
  width: auto;
}

.program-header .main-nav {
  min-height: 104px;
}

.program-header .main-nav.is-sticky .program-brand img {
  height: 62px;
}

.program-hero {
  background: linear-gradient(120deg, rgba(37, 38, 184, .9), rgba(16, 210, 212, .58)), url("https://images.unsplash.com/photo-1542601906990-b4d3fb778b09?auto=format&fit=crop&w=1800&q=85") center/cover no-repeat;
  min-height: 860px;
}

.program-hero .hero-overlay {
  background: radial-gradient(circle at 50% 30%, rgba(255, 196, 0, .22), transparent 34%), rgba(37, 38, 184, .72);
}

.program-hero .hero-row {
  min-height: 860px;
}

.program-hero .eyebrow {
  background: rgba(16, 210, 212, .18);
  border-color: rgba(255, 196, 0, .72);
  color: #ffffff;
}

.program-hero h1 {
  font-size: clamp(3.4rem, 7vw, 6.8rem);
  letter-spacing: 0;
  text-transform: none;
}

.program-hero .lead {
  font-size: 1.22rem;
  max-width: 760px;
}

.program-page section:not(.hero) {
  padding: 90px 0;
}
.section-wave {
  height: 78px;
  margin-bottom: -1px;
  line-height: 0;
  margin-top: -78px;
  overflow: hidden;
  pointer-events: none;
  position: relative;
  z-index: 2;
}

.section-wave svg {
  display: block;
  height: 100%;
  width: 100%;
}

.section-wave + section {
  position: relative;
  z-index: 1;
}
.sponsor-wave {
  margin-bottom: -78px;
  margin-top: 0;
  z-index: 3;
}

.sponsor-wave + .sponsor-section {
  padding-top: 168px;
}

.info-panel,
.notice-box,
.stat-card,
.type-card {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(37, 38, 184, .09);
}

.info-panel {
  padding: 2.25rem;
}

.info-panel h2,
.timeline-section h2,
.criteria-section h2,
.selection-section h2,
.eligibility-section h2,
.project-types-section h2,
.expenses-section h2 {
  color: #2526b8;
  font-family: "Jost", Arial, sans-serif;
  font-weight: 900;
}

.accent-panel {
  background: linear-gradient(135deg, #e5fbff, #f8e8ff);
  border: 1px solid rgba(16, 210, 212, .2);
}

.stats-section {
  background: #2526b8;
}

.stat-card {
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .22);
  box-shadow: 0 18px 44px rgba(5, 8, 68, .22);
  min-height: 185px;
  padding: 2rem;
}

.stat-card span {
  color: #ffc400;
  display: block;
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: .8rem;
}

.stat-card p {
  color: rgba(255, 255, 255, .82);
  margin: 0;
}

.timeline-section,
.selection-section,
.expenses-section {
  background: #e8f8fb;
}

.timeline-grid {
  display: grid;
  gap: 1rem;
}

.timeline-grid article {
  background: #ffffff;
  border: 1px solid rgba(37, 38, 184, .12);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(37, 38, 184, .08);
  padding: 1.5rem 1.75rem 1.5rem 4.25rem;
  position: relative;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.timeline-grid article::before {
  background: #f8e8ff;
  border: 1px solid rgba(196, 41, 230, .24);
  border-radius: 50%;
  color: #c429e6;
  content: "\f293";
  display: grid;
  font-family: "bootstrap-icons";
  font-size: 1rem;
  height: 38px;
  left: 1.4rem;
  place-items: center;
  position: absolute;
  top: 1.45rem;
  width: 38px;
}

.timeline-grid span {
  color: #10d2d4;
  display: block;
  font-size: 1.35rem;
  font-weight: 900;
  margin-bottom: .35rem;
}

.timeline-grid p,
.notice-box p {
  margin-bottom: 0;
}

.criteria-section,
.project-types-section {
  background: #ffffff;
}

.criteria-section .feature-card {
  border-color: rgba(16, 210, 212, .22);
}

.criteria-section .feature-icon,
.type-card i {
  background: #e5fbff;
  color: #10d2d4;
}

.notice-box {
  border: 1px solid rgba(37, 38, 184, .12);
  padding: 2rem;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.notice-box h3 {
  color: #2526b8;
  font-size: 1.2rem;
  margin-top: 1.35rem;
}

.notice-box h3:first-child {
  margin-top: 0;
}

.eligibility-section {
  background: linear-gradient(180deg, #e5fbff, #ffffff);
}

.check-list {
  display: grid;
  gap: .85rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.check-list li {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(37, 38, 184, .07);
  color: #2f3652;
  font-weight: 500;
  padding: 1rem 1rem 1rem 3rem;
  position: relative;
}

.check-list li::before {
  align-items: center;
  background: #10d2d4;
  border-radius: 50%;
  color: #ffffff;
  content: "\f26e";
  display: flex;
  font-family: "bootstrap-icons";
  font-size: .9rem;
  height: 24px;
  justify-content: center;
  left: 1rem;
  position: absolute;
  top: 1rem;
  width: 24px;
}

.check-list.compact li {
  padding-bottom: .9rem;
  padding-top: .9rem;
}

.not-eligible,
.support-box {
  background: #f8e8ff;
  border: 1px solid rgba(196, 41, 230, .22);
  border-radius: 8px;
  color: #3b2450;
  margin-top: 1.5rem;
  padding: 1.25rem;
}

.support-box {
  background: #ffffff;
  border-color: rgba(16, 210, 212, .22);
  box-shadow: 0 12px 32px rgba(37, 38, 184, .07);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.support-box strong {
  color: #2526b8;
}

.type-card {
  border: 1px solid rgba(37, 38, 184, .12);
  height: 100%;
  padding: 1.75rem;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.type-card i {
  align-items: center;
  border-radius: 50%;
  display: flex;
  font-size: 1.8rem;
  height: 62px;
  justify-content: center;
  margin-bottom: 1.1rem;
  width: 62px;
}

.type-card h3 {
  color: #2526b8;
}


/* Brand color pass for the lower content sections */
.timeline-section {
  background: linear-gradient(135deg, #2526b8 0%, #1f67c8 52%, #10d2d4 100%);
  color: #ffffff;
}

.timeline-section h2,
.timeline-section p,
.timeline-section .eyebrow {
  color: #ffffff;
}

.timeline-section .eyebrow {
  color: #ffc400;
}

.timeline-grid article {
  background: rgba(255, 255, 255, .14);
  border-color: rgba(255, 255, 255, .22);
  box-shadow: 0 18px 44px rgba(13, 18, 101, .2);
  backdrop-filter: blur(6px);
}

.timeline-grid article::before {
  background: #ffc400;
  border-color: rgba(255, 255, 255, .45);
  color: #2526b8;
}

.timeline-grid span,
.timeline-grid p {
  color: #ffffff;
}

.criteria-section,
.project-types-section {
  background: linear-gradient(180deg, #e8f8fb 0%, #d8f4fb 100%);
}

.criteria-section .feature-card,
.type-card {
  background: linear-gradient(180deg, #ffffff 0%, #f1fcff 100%);
  border-color: rgba(16, 210, 212, .32);
  box-shadow: 0 18px 44px rgba(37, 38, 184, .1);
}

.selection-section {
  background: #42a9c1;
}

.selection-section h2,
.selection-section p {
  color: #10245f;
}

.selection-section .eyebrow {
  color: #2526b8;
}

.notice-box {
  background: rgba(255, 255, 255, .82);
  border-color: rgba(37, 38, 184, .18);
  box-shadow: 0 18px 44px rgba(37, 38, 184, .12);
  backdrop-filter: blur(6px);
}

.notice-box h3 {
  color: #2526b8;
}

.notice-box p {
  color: #25335f;
}

.eligibility-section {
  background: linear-gradient(135deg, #2526b8 0%, #303bc0 45%, #e5fbff 100%);
}

.eligibility-section h2,
.eligibility-section p,
.eligibility-section .eyebrow {
  color: #ffffff;
}

.eligibility-section .eyebrow {
  color: #ffc400;
}

.eligibility-section .not-eligible {
  background: rgba(255, 196, 0, .16);
  border-color: rgba(255, 196, 0, .42);
  color: #ffffff;
}

.check-list li {
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(16, 210, 212, .2);
  box-shadow: 0 14px 34px rgba(37, 38, 184, .1);
}

.expenses-section {
  background: #42a9c1;
}

.expenses-section h2,
.expenses-section p {
  color: #10245f;
}

.expenses-section .eyebrow {
  color: #2526b8;
}

.expenses-section .check-list li {
  background: rgba(255, 255, 255, .82);
  border-color: rgba(37, 38, 184, .18);
  box-shadow: 0 18px 44px rgba(37, 38, 184, .12);
  color: #25335f;
  backdrop-filter: blur(6px);
}

.expenses-section .check-list li::before {
  background: #2526b8;
  color: #ffffff;
}

.support-box {
  background: rgba(255, 255, 255, .82);
  border-color: rgba(37, 38, 184, .18);
  box-shadow: 0 18px 44px rgba(37, 38, 184, .12);
  color: #25335f;
  backdrop-filter: blur(6px);
}

.support-box strong {
  color: #2526b8;
}
.program-footer {
  background: #2526b8;
}

.program-footer-brand img {
  border-radius: 8px;
  display: block;
  max-width: 240px;
  padding: .75rem;
  width: 100%;
}

.program-page .to-top {
  background: #ffc400;
  color: #2526b8;
}

@media (max-width: 991.98px) {
  .program-header .site-header,
  .program-header {
    position: relative;
  }

  .program-brand img {
    height: 64px;
  }

  .program-hero,
  .program-hero .hero-row {
    min-height: 720px;
  }
}

@media (max-width: 575.98px) {
  .program-brand img {
    height: 54px;
    max-width: 170px;
  }

  .program-hero h1 {
    font-size: 3.35rem;
  }

  .program-hero .lead {
    font-size: 1.05rem;
  }
}

/* Logo swap for white navigation state */
.program-brand {
  position: relative;
}

.program-brand .brand-logo {
  display: block;
  height: 78px;
  max-width: 220px;
  object-fit: contain;
  width: auto;
}

.program-brand .brand-logo-dark {
  display: none;
}

.program-header .main-nav.is-sticky .brand-logo-light {
  display: none;
}

.program-header .main-nav.is-sticky .brand-logo-dark {
  display: block;
}

@media (max-width: 991.98px) {
  .program-brand .brand-logo-light {
    display: none;
  }

  .program-brand .brand-logo-dark {
    display: block;
  }

  .program-brand .brand-logo {
    height: 64px;
  }
}

@media (max-width: 575.98px) {
  .program-brand .brand-logo {
    height: 54px;
    max-width: 170px;
  }
}






.program-header .topbar {
  background: #42a9c1;
  color: #ffffff;
}

.program-header .topbar-link,
.program-header .topbar .socials a {
  color: #ffffff;
}

.program-header .topbar-link i,
.program-header .topbar .socials a:hover {
  color: #ffc400;
}

.program-header .main-nav.is-sticky .navbar-brand,
.program-header .main-nav.is-sticky .nav-link {
  color: #2526b8;
}

.program-header .main-nav.is-sticky .nav-link.active,
.program-header .main-nav.is-sticky .nav-link:hover {
  color: #10d2d4;
}

@media (max-width: 991.98px) {
  .program-header .main-nav .navbar-brand,
  .program-header .main-nav .nav-link {
    color: #2526b8;
  }

  .program-header .main-nav .nav-link.active,
  .program-header .main-nav .nav-link:hover {
    color: #10d2d4;
  }
}

.btn-edital {
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .72);
  color: #ffffff;
  cursor: not-allowed;
}

.btn-edital:hover {
  background: rgba(255, 196, 0, .18);
  border-color: #ffc400;
  color: #ffffff;
}

.sponsor-section {
  overflow: hidden;
  position: relative;
  background: linear-gradient(100deg, rgba(17, 18, 130, .96) 0%, rgba(37, 38, 184, .9) 34%, rgba(16, 121, 184, .72) 62%, rgba(16, 210, 212, .5) 100%), url("../img/jovens.jpg") center/cover no-repeat;
  padding: 120px 0 126px;
}

.sponsor-section > .container {
  position: relative;
  z-index: 2;
}

.sponsor-panel {
  align-items: center;
  border-radius: 8px;
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 280px);
  padding: 2rem;
}

.sponsor-stats {
  margin-top: 2.5rem;
}

.sponsor-stats .stat-card {
  backdrop-filter: blur(3px);
}

.sponsor-panel h2 {
  color: #ffffff;
  font-family: "Jost", Arial, sans-serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 900;
  text-shadow: 0 3px 18px rgba(5, 8, 68, .48);
}

.sponsor-panel p {
  color: var(--white);
  font-family: "Jost", Arial, sans-serif;

}


.sponsor-section .eyebrow.dark {
  color: #10d2d4;
  text-shadow: 0 2px 12px rgba(5, 8, 68, .45);
}

.sponsor-panel p {
  font-size: 1.03rem;
  font-weight: 600;
  max-width: 760px;
  text-shadow: 0 2px 12px rgba(5, 8, 68, .45);
}
.sponsor-panel img {
  max-height: 180px;
  object-fit: contain;
  width: 100%;
}

.news-section {
  background: #ffffff;
}

.news-card {
  background: #e8f8fb;
  border: 1px solid rgba(16, 210, 212, .22);
  border-radius: 8px;
  height: 100%;
  padding: 1.75rem;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.news-card:hover {
  border-color: rgba(196, 41, 230, .28);
  box-shadow: 0 18px 40px rgba(37, 38, 184, .1);
  transform: translateY(-4px);
}

.news-card span {
  color: #c429e6;
  display: block;
  font-weight: 900;
  margin-bottom: .75rem;
}

.news-card h3 {
  color: #2526b8;
  margin-bottom: .75rem;
}

.contact-section {
  background: #2526b8;
  color: #ffffff;
}

.contact-panel {
  align-items: center;
  display: flex;
  gap: 2rem;
  justify-content: space-between;
}

.contact-panel h2,
.contact-panel p {
  color: #ffffff;
}

.contact-panel .btn {
  max-width: 100%;
  overflow-wrap: anywhere;
  text-align: center;
}

.footer-sponsor img {
  border-radius: 8px;
  max-width: 96px;
  padding: .4rem;
  width: 100%;
}

@media (max-width: 991.98px) {
  .sponsor-panel {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .sponsor-panel img {
    justify-self: center;
    max-width: 240px;
  }

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

.btn-edital:disabled {
  opacity: 1;
}
.program-header .main-nav .nav-link {
  font-size: .9rem;
  padding-left: .55rem !important;
  padding-right: .55rem !important;
}

.news-page .site-header {
  position: relative;
}

.news-page .program-header .main-nav {
  background: #ffffff;
}

.news-page .program-header .main-nav .navbar-brand,
.news-page .program-header .main-nav .nav-link {
  color: #2526b8;
}

.news-page .program-header .main-nav .nav-link.active,
.news-page .program-header .main-nav .nav-link:hover {
  color: #10d2d4;
}

.news-page .program-brand .brand-logo-light {
  display: none;
}

.news-page .program-brand .brand-logo-dark {
  display: block;
}

.news-hero {
  background: linear-gradient(135deg, #e8f8fb, #ffffff);
  padding: 80px 0 70px;
}

.news-hero h1 {
  color: #2526b8;
  font-family: "Jost", Arial, sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  font-weight: 900;
  line-height: 1.05;
  margin-left: auto;
  margin-right: auto;
}

.news-hero p:not(.eyebrow) {
  font-size: 1.1rem;
  margin: 1rem auto 0;
  max-width: 620px;
}



