*{
  margin:0;
  padding:0;
  box-sizing: border-box;
}

:root {
  /* === Backgrounds === */
  --bg-dark:        #0A1628;
  --bg-white:       #ffffff;
  --bg-warm:        #B4651D;

  /* === Marca / Destaque === */
  --color-orange:        #B4651D;
  --color-orange-hover:  #cf6520;
  --color-teal:          #2d8a7c;

  /* === Texto === */
  --text-white:   #ffffff;
  --text-dark:    #1c1c2e;
  --text-body:    #555555;
  --text-muted:   #999999;
  --text-light:   #cccccc;
  --text-gray:  #EDE8E1;

  /* === Bordas === */
  --border-light:  rgba(255, 255, 255, 0.12);
  --border-gray:   #e0e0e0;

  --oxanium: 'Oxanium', sans-serif;
  --inter: 'Inter', sans-serif;
}


li{
  list-style: none;
}

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

.divider{
  background:var(--bg-dark);
  width:100%;
  height:99px;
}

.divider.top{
  border-radius: 0px 0px 0px 300px;
}

.divider.bottom{
  border-radius: 0px 300px 0px 0px;
}


.container{
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}


/*  ----------------------- header ------------------------ */


header{
  position: fixed;
  top: 60px;
  left: 0;
  width: 100%;
  z-index: 999;
  padding:16px 0;
  transition: background-color 0.35s ease, top 0.35s ease, box-shadow 0.35s ease;
}

header.scrolled{
  background: var(--bg-dark);
  top: 0;
  box-shadow: 0 2px 24px rgba(0,0,0,0.45);
}

header .header__logo img{
  height: 60px;
  width: auto;
  transition: height 0.35s ease;
}

header.scrolled .header__logo img{
  height: 38px;
}

.menu-toggle{
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: var(--text-white);
  margin-left: auto;
  align-items: center;
  justify-content: center;
}

header .header__inner{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap:83px;
}

header .header__inner .header__nav ul{
  display:flex;
  align-items: center;
  gap:51px;
}

header .header__inner .header__nav a{
  font-family: var(--inter);
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: 22px;
  color: var(--text-white);
}

header .header__inner .header__nav a.nav__link--active{
  color: var(--color-orange);
}


@media (max-width:980px){
  header .header__inner {
    gap: 40px;
  }
  header .header__inner .header__nav ul {
    gap: 28px;
  }
}

@media (max-width:768px){
  header .header__inner .header__nav {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
  header .header__logo img {
    height: 44px;
  }
}

@media (max-width:480px){
  header {
    top: 16px;
  }
  header .header__logo img {
    height: 36px;
  }
}

/* -------------------------------- footer --------------------------------- */

footer{
  background-color: #1A3A5D;
  padding:90px 0;
  background-image: url('../images/bg-footer.png');
  background-size: contain;
  background-repeat:no-repeat;
  background-position:center;
}

.footer .footer__inner{
  display:flex;
  justify-content:space-between;
  padding-bottom: 40px;
}

.footer__collumn{
  display:flex;
  justify-content:space-between;
  width:100%;
  max-width:630px;
}

footer .footer__brand .footer__logo{
  display:flex;
  margin:0 0 71px;
}

footer .footer__brand .footer__social{
  display:flex;
  flex-direction:column;
  gap:20px;
}

.footer__social h4{
  font-family: var(--oxanium);
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 140%;
  color: var(--color-orange);
}

.footer__social .icons{
  display:flex;
  gap:24px;
  align-items:center;
}


.footer__nav h4{
  font-family: var(--oxanium);
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 140%;
  color: var(--color-orange);
}

.footer__nav ul{
  display:flex;
  flex-direction:column;
  gap:20px;
  margin:20px 0 0;
}

.footer__nav ul li a{
  font-family: var(--inter);
  font-style: normal;
  font-weight: 300;
  font-size: 20px;
  line-height: 24px;
  color: var(--text-white);
}

.footer__contact h4{
  font-family: var(--oxanium);
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 140%;
  color: var(--color-orange);
}

.footer__contact .footer__contact-item{
  display:flex;
  align-items:center;
  gap:12px;
  margin:20px 0 0;
  font-family: var(--inter);
  font-style: normal;
  font-weight: 300;
  font-size: 20px; 
  line-height: 28px;
  color: var(--text-white);
}

footer .footer__bottom{
  margin:40px 0 0;
}

footer .footer__bottom .footer__bottom-inner{
  display:flex;
  justify-content:space-between;
  padding:40px 0 0;
  border-top:1px solid var(--bg-warm);
}

footer .footer__bottom .footer__bottom-inner a{
  text-decoration:underline;
  font-family: var(--inter);
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  text-decoration-line: underline;
  color: var(--text-gray);
}

footer .footer__bottom .footer__bottom-inner p{
  font-family: var(--inter);
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: var(--text-gray);
}


@media (max-width:980px){
  .footer .footer__inner {
    flex-direction: column;
    gap: 40px;
  }
  .footer__collumn {
    max-width: 100%;
  }
}

@media (max-width:768px){
  footer {
    padding: 60px 0;
  }
  .footer__collumn {
    flex-direction: column;
    gap: 32px;
  }
}

@media (max-width:480px){
  footer {
    padding: 40px 0;
  }
  footer .footer__bottom .footer__bottom-inner {
    flex-direction: column;
    gap: 12px;
    align-items: center;
    text-align: center;
  }
}


/* ------------------------------ home ---------------------------- */

section.home_hero{
  position: relative;
  background-image: url('../images/home-hero-bg.png');
  background-size: cover;
  background-position: top;
  display: flex;
  align-items: end;
  padding:386px 0 45px;
}

section.home_hero .hero__content h1{
  font-family: var(--oxanium);
  font-style: normal;
  font-weight: 400;
  font-size: 60px;
  line-height: 75px;
  color: var(--text-gray);
  width: 100%;
  max-width:840px;
}

section.home_hero .hero__content p{
  font-family: var(--inter);
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: var(--text-gray);
  margin: 16px 0 38px;
  width: 100%;
  max-width:770px;
}

section.home_hero .hero__content .hero__actions{
  width: 100%;
  max-width: 550px;
  background: var(--bg-warm);
  border-radius: 50px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding:22px 48px;
  gap:44px;
}

section.home_hero .hero__content .hero__actions p{
  font-family: var(--oxanium);
  font-style: normal;
  font-weight: 400;
  font-size: 23px;
  line-height: 24px;
  margin:0;
  flex:1;
  color: var(--text-white);
}

section.home_hero .hero__content .hero__actions a{
  background: var(--bg-white);
  font-family: var(--oxanium);
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  text-align: center;
  color: #0A1628;
  flex:1;
  padding: 12px 24px;
  border-radius:5px;
}

/* home_abordagem */

section.home_abordagem{
  display: flex;
  align-items: center;
  padding: 97px 0 80px;
  background-image: url('../images/home-abord-bg.png');
  background-size: contain;
  background-position: top right;
  background-color:var(--bg-dark);
  background-repeat: no-repeat;
  position: relative;
}

section.home_abordagem::before{
  content: '';
  position: absolute;
  width:100%;
  background:linear-gradient(180deg, rgba(10, 22, 40, 0) 0%, #0A1628 100%);;
  transform: matrix(1, 0, 0, -1, 0, 0);
  height:450px;
  top:0;
  z-index: 9;
}

section.home_abordagem .section-title{
  font-family: var(--oxanium);
  font-style: normal;
  font-weight: 400;
  font-size: 60px;
  line-height: 75px;
  color: var(--color-orange);
  margin:0;
  position: relative;
  z-index: 9;
}

section.home_abordagem .abordagem_header_bottom{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin:17px 0 46px;
  position: relative;
  z-index: 9;

}

section.home_abordagem .abordagem_header_bottom p{
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: var(--text-gray);
  max-width: 600px;
  width: 100%;
  margin:0;
}

section.home_abordagem .abordagem_header_bottom a{
  width: 100%;
  max-width: 200px;
  background: var(--bg-warm);
  border-radius: 5px;
  font-family: var(--oxanium);
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  text-align: center;
  color: var(--text-white);
  padding:12px 42px;
}

section.home_abordagem .abordagem__grid{
  display:flex;
  justify-content:space-between;
  gap:42px;
  position: relative;
  z-index: 99;
}

section.home_abordagem .abordagem__grid .abordagem__card{
  background: linear-gradient(135deg, rgba(26, 58, 93, 0.4) 0%, rgba(10, 22, 40, 0.4) 100%);
  border: 1px solid rgba(26, 58, 93, 0.5);
  backdrop-filter: blur(32.4px);
  border-radius: 20px 0px;
  padding:32px;
}

section.home_abordagem .abordagem__grid .abordagem__card h3{
  font-family: var(--oxanium);
  font-style: normal;
  font-weight: 600;
  font-size: 26px;
  line-height: 34px;
  color: var(--color-orange);
  margin:27px 0 16px;
}

section.home_abordagem .abordagem__grid .abordagem__card p{
  font-family: var(--inter);
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: var(--text-gray);
}

/* home_feature */

section.home_feature{
  padding:84px 0;
  position:relative;
}

section.home_feature img.bg-form{
  position:absolute;
  top:0;
  width:fit-content;
  height:100%;
  z-index:1;
  left:15%;
}

section.home_feature .feature__inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap:68px;
  position:relative;
  z-index:9;
}

section.home_feature .feature__inner .feature__image{
  width:100%;
  max-width:568px;
}

section.home_feature .feature__inner .feature__image img{
  width:100%;
}

section.home_feature .feature__inner .feature__content{
  width:100%;
  max-width:568px;
}

section.home_feature .feature__inner .feature__content h2{
  font-family: var(--oxanium);
  font-style: normal;
  font-weight: 400;
  font-size: 60px;
  line-height: 75px;
  color: var(--color-orange);
}

section.home_feature .feature__inner .feature__content p{
  font-family: var(--inter);
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: #1A3A5E;
  margin: 20px 0 27px;
}

section.home_feature .feature__inner .feature__content ul{
  display:flex;
  flex-wrap:wrap;
  padding:0 0 0 20px;
}

section.home_feature .feature__inner .feature__content li{
  font-family: var(--oxanium);
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: #1A3A5E;
  flex-grow: 0;
  width:100%;
  max-width:49%;
  list-style-type: disc;
}

section.home_feature .feature__inner .feature__content li::marker{
  color: var(--bg-warm);
}

section.home_feature .feature__inner .feature__content a{
  width: 100%;
  max-width: 200px;
  background: var(--bg-warm);
  border-radius: 5px;
  font-family: var(--oxanium);
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  text-align: center;
  color: var(--text-white);
  padding:12px 42px;
  display:block;
  margin:40px 0 0;
}

/* home_insights */

section.home_insights{
  background: var(--bg-dark);
  padding:10px 0 108px;
}

section.home_insights .section-title{
  font-family: var(--oxanium);
  font-style: normal;
  font-weight: 400;
  font-size: 60px;
  line-height: 75px;
  text-align: center;
  color: var(--color-orange);
  margin:0 0 40px;
}

section.home_insights .insights__grid{
  display:flex;
  align-items: stretch;
  gap:32px;
}

section.home_insights .insights__grid .insights__column{
  display:flex;
  flex-direction:column;
  gap:25px;
}

section.home_insights .insights__grid .insight-card--featured{
  width:100%;
  max-width:574px;
  background: linear-gradient(135deg, rgba(26, 58, 93, 0.6) 0%, rgba(10, 22, 40, 0.6) 100%);
  border: 1px solid rgba(26, 58, 93, 0.5);
  border-radius: 20px 0px;

}

section.home_insights .insights__grid .insight-card--featured .insight-card-image{
  width:100%;
  height:400px;
  position:relative;
}

section.home_insights .insights__grid .insight-card--featured .insight-card-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  position:relative;
  z-index:2;
  border-radius: 20px 0 0 0;
}

.insight-card__category{
  position:absolute;
  top:16px;
  left:16px;
  background: var(--bg-warm);
  border-radius: 0px 20px;
  color:var(--text-gray);
  font-family: var(--oxanium);
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  padding:6px 15px;
  z-index:9;
}
section.home_insights .insights__grid .insight-card--featured .insight-card-image .insight-card__overlay{
  position:absolute;
  bottom:0;
  left:0;
  background: linear-gradient(0deg, #0A1628 0%, rgba(6, 16, 31, 0.857143) 7.14%, rgba(4, 10, 21, 0.714286) 14.29%, rgba(2, 5, 13, 0.571429) 21.43%, rgba(1, 2, 6, 0.428571) 28.57%, rgba(0, 1, 2, 0.285714) 35.71%, rgba(0, 0, 0, 0.142857) 42.86%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0) 100%);
  width:100%;
  height:100%;
  z-index:9;
}


section.home_insights .insights__grid .insight-card--featured .insight-card__content{
  padding:32px;
}

section.home_insights .insights__grid .insight-card--featured .insight-card__content .date_time{
  display:flex;
  align-items:center;
  gap:16px;
}

section.home_insights .insights__grid .insight-card--featured .insight-card__content .date_time .date{
  display:flex;
  align-items:center;
  gap:8px;
  margin:0 0 21px;
}

section.home_insights .insights__grid .insight-card--featured .insight-card__content .date_time .date p{
  font-family: var(--inter);
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: rgba(180, 101, 29, 0.6);
  margin:0;
}


section.home_insights .insights__grid .insight-card--featured .insight-card__content h3{
  font-family: var(--oxanium);
  font-style: normal;
  font-weight: 600;
  font-size: 30px;
  line-height: 38px;
  color: var(--color-orange);
  margin:0 0 13px;
}

section.home_insights .insights__grid .insight-card--featured .insight-card__content p{
  font-family: var(--inter);
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: var(--text-gray);
  margin: 0 0 41px;
}

section.home_insights .insights__grid .insight-card--featured .insight-card__content a{
  display:flex;
  align-items:center;
  gap:8px;
  font-family: var(--oxanium);
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: var(--color-orange);
}

section.home_insights .insights__grid .insights__column .insight-card--small{
  padding:16px;
  display:flex;
  align-items:center;
  background: linear-gradient(135deg, rgba(26, 58, 93, 0.4) 0%, rgba(10, 22, 40, 0.4) 100%);
  border: 1px solid rgba(26, 58, 93, 0.5);
  border-radius: 20px 0px;
  width:100%;
  height:162px;
  gap:16px;
}

section.home_insights .insights__grid .insights__column .insight-card--small .insight-card__image{
  width:100%;
  max-width:128px;
  height:128px;
  border-radius: 20px 0;
}

section.home_insights .insights__grid .insights__column .insight-card--small .insight-card__image img{
  width:100%;
  object-fit:cover;
  border-radius: 20px 0;
  height:100%;
}


section.home_insights .insights__grid .insights__column .insight-card--small .insight-card__content h3{
  font-family: var(--oxanium);
  font-style: normal;
  font-weight: 600;
  font-size: 22px;
  line-height: 22px;
  color: var(--color-orange);
  margin:0;
}

section.home_insights .insights__grid .insights__column .insight-card--small .insight-card__content p{
  font-family: var(--item);
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: var(--text-gray);
  margin:0 0 12px;
}

section.home_insights .insights__grid .insights__column .insight-card--small .insight-card__content .date_time{
  display:flex;
  gap:12px;
  align-items:center;
}

section.home_insights .insights__grid .insights__column .insight-card--small .insight-card__content .date_time .date{
  display:flex;
  gap:5px;
  align-items:center;
}

section.home_insights .insights__grid .insights__column .insight-card--small .insight-card__content .date_time .date p{
  font-family: var(--inter);
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: rgba(180, 101, 29, 0.6);
  margin:0;
}


@media (max-width:980px){
  section.home_hero {
    padding: 260px 0 40px;
  }
  section.home_hero .hero__content h1 {
    font-size: 46px;
    line-height: 58px;
  }
  section.home_abordagem .abordagem__grid {
    gap: 24px;
  }
  section.home_feature .feature__inner {
    gap: 40px;
  }
  section.home_feature .feature__inner .feature__image,
  section.home_feature .feature__inner .feature__content {
    max-width: 48%;
  }
  section.home_insights .insights__grid {
    flex-direction: column;
  }
  section.home_insights .insights__grid .insight-card--featured {
    max-width: 100%;
  }
  .divider {
    height: 70px;
  }
  .divider.top {
    border-radius: 0 0 0 180px;
  }
  .divider.bottom {
    border-radius: 0 180px 0 0;
  }
}

@media (max-width:768px){
  section.home_hero {
    padding: 200px 0 40px;
  }
  section.home_hero .hero__content h1 {
    font-size: 36px;
    line-height: 46px;
    max-width: 100%;
  }
  section.home_hero .hero__content p {
    font-size: 16px;
    line-height: 24px;
    max-width: 100%;
  }
  section.home_hero .hero__content .hero__actions {
    flex-direction: column;
    max-width: 100%;
    gap: 16px;
    padding: 20px 24px;
    text-align: center;
    border-radius: 24px 0;
  }
  section.home_abordagem {
    padding: 60px 0;
  }
  section.home_abordagem .section-title {
    font-size: 40px;
    line-height: 52px;
  }
  section.home_abordagem .abordagem_header_bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
  }
  section.home_abordagem .abordagem__grid {
    flex-direction: column;
  }
  section.home_feature {
    padding: 60px 0;
  }
  section.home_feature .feature__inner {
    flex-direction: column;
  }
  section.home_feature .feature__inner .feature__image,
  section.home_feature .feature__inner .feature__content {
    max-width: 100%;
  }
  section.home_feature .feature__inner .feature__content h2 {
    font-size: 40px;
    line-height: 52px;
  }
  section.home_insights .section-title {
    font-size: 40px;
    line-height: 52px;
  }
  section.home_insights .insights__grid .insights__column .insight-card--small {
    height: auto;
  }
  .divider {
    height: 50px;
  }
  .divider.top {
    border-radius: 0 0 0 100px;
  }
  .divider.bottom {
    border-radius: 0 100px 0 0;
  }

  section.home_feature img.bg-form{
    left:0;
    width:100%;
  }
}

@media (max-width:480px){
  section.home_hero {
    padding: 160px 0 32px;
  }
  section.home_hero .hero__content h1 {
    font-size: 28px;
    line-height: 36px;
  }
  section.home_hero .hero__content .hero__actions p {
    font-size: 18px;
  }
  section.home_abordagem .section-title,
  section.home_feature .feature__inner .feature__content h2,
  section.home_insights .section-title {
    font-size: 32px;
    line-height: 42px;
  }
  section.home_abordagem .abordagem__grid .abordagem__card h3 {
    font-size: 22px;
  }
  section.home_insights .insights__grid .insights__column .insight-card--small {
    flex-direction: column;
    height: auto;
  }
  section.home_insights .insights__grid .insights__column .insight-card--small .insight-card__image {
    max-width: 100%;
    height: 180px;
  }
  .divider {
    height: 36px;
  }
  .divider.top {
    border-radius: 0 0 0 60px;
  }
  .divider.bottom {
    border-radius: 0 60px 0 0;
  }
}


/* ------------------- page quem somos ------------------ */


section.about_hero{
  background-image:url('../images/bg-hero-about.png');
  background-size:cover;
  background-repeat: no-repeat;
  background-position:center;
  height:100vh;
  display:flex;
  align-items:flex-end;
  padding:0 0 70px;
}

section.about_hero .hero__content{
  text-align:center;
  max-width:816px;
}

section.about_hero .hero__content h1{
  font-family: var(--oxanium);
  font-style: normal;
  font-weight: 400;
  font-size: 60px;
  line-height: 75px;
  text-align: center;
  color: var(--color-orange);
  margin:0 0 16px;
}

section.about_hero .hero__content p{
  font-family: var(--inter);
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  text-align: center;
  color: var(--text-gray);
}

section.about_content {
  background:var(--bg-dark);
  padding:48px 99px;
}

section.about_content .about-content__inner{
  display:flex;
  align-items:center;
  gap:101px;
}

section.about_content .about-content__inner .sobre-content__text{
  width:100%;
  max-width:602px;
}

section.about_content .about-content__inner .sobre-content__text h2{
  font-family:var(--oxanium);
  font-style: normal;
  font-weight: 400;
  font-size: 60px;
  line-height: 75px;
  color: var(--color-orange);
  margin:0 0 30px;
}

section.about_content .about-content__inner .sobre-content__text p{
  font-family: var(--inter);
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: var(--text-gray);
}

section.about_content .about-content__inner .about-content__aside{
  display: flex;
  width:100%;
  max-width:476px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 33px;
  background: linear-gradient(135deg, rgba(26, 58, 93, 0.6) 0%, rgba(10, 22, 40, 0.6) 100%);
  border: 1px solid rgba(26, 58, 93, 0.5);
  backdrop-filter: blur(32.4px);
  border-radius: 20px 0px;
}

section.about_content .about-content__inner .about-content__aside h3{
  font-style: normal;
  font-weight: 600;
  font-size: 26px;
  line-height: 34px;
  font-family:var(--oxanium);
  color: var(--color-orange);
  margin:0 0 20px;
}

section.about_content .about-content__inner .about-content__aside p{
  font-family: var(--inter);
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: var(--text-gray);
  margin:0 0 16px;
}

section.about_content .about-content__inner .about-content__aside p:last-child{
  margin:0;
}

/* about_mission */


section.about_mission{
  background:var(--bg-dark);
  padding:45px 0 99px;
}

section.about_mission .container{
  background: var(--bg-white);
  padding:60px 70px;
  border-radius: 20px 0;
}

section.about_mission .missao__card{
  text-align:center;
  width:100%;
  max-width:551px;
  margin:0 auto 46px;
}

section.about_mission .missao__card h2{
  font-family: var(--oxanium);
  font-style: normal;
  font-weight: 400;
  font-size: 60px;
  line-height: 75px;
  text-align: center;
  margin:0 0 17px;
  color:var(--color-orange);
}
section.about_mission .missao__card p{
  font-family: var(--inter);
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  text-align: center;
  color: var(--bg-dark)
}

section.about_mission .valores__grid{
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  gap:32px;
}

section.about_mission .valores__grid .valor-item{
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  gap: 10px;
  background: linear-gradient(135deg, rgba(180, 101, 29, 0) 0%, rgba(180, 101, 29, 0.1) 100%);
  border: 1px solid rgba(180, 101, 29, 0.5);
  backdrop-filter: blur(14.45px);
  /* Note: backdrop-filter has minimal browser support */
  border-radius: 20px 0px;
}

section.about_mission .valores__grid .valor-item h3{
  font-family: var(--oxanium);
  font-style: normal;
  font-weight: 600;
  font-size: 26px;
  line-height: 34px;
  color: var(--color-orange);
}

section.about_mission .valores__grid .valor-item p{
  font-family: var(--inter);
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: var(--bg-dark);
}

@media (max-width:980px){
  section.about_hero .hero__content h1 {
    font-size: 48px;
    line-height: 62px;
  }
  section.about_content {
    padding: 48px 40px;
  }
  section.about_content .about-content__inner {
    gap: 50px;
  }
  section.about_mission .valores__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width:768px){
  section.about_hero .hero__content h1 {
    font-size: 40px;
    line-height: 52px;
  }
  section.about_content {
    padding: 40px 20px;
  }
  section.about_content .about-content__inner {
    flex-direction: column;
    gap: 32px;
  }
  section.about_content .about-content__inner .sobre-content__text,
  section.about_content .about-content__inner .about-content__aside {
    max-width: 100%;
  }
  section.about_mission .container {
    padding: 40px 24px;
  }
  section.about_mission .missao__card h2 {
    font-size: 40px;
    line-height: 52px;
  }
  section.about_mission .valores__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width:480px){
  section.about_hero .hero__content h1 {
    font-size: 32px;
    line-height: 42px;
  }
  section.about_content .about-content__inner .sobre-content__text h2 {
    font-size: 32px;
    line-height: 42px;
  }
  section.about_mission .missao__card h2 {
    font-size: 32px;
    line-height: 42px;
  }
}


/* ----------------- Page areas de atuacao ------------------------- */


section.area_hero{
  background-image:url('../images/bg-hero-area.png');
  background-size:cover;
  background-repeat: no-repeat;
  background-position:center;
  height:100vh;
  display:flex;
  align-items:flex-end;
  padding:0 0 70px;
}

section.area_hero .hero__content{
  text-align:center;
  max-width:816px;
}

section.area_hero .hero__content h1{
  font-family: var(--oxanium);
  font-style: normal;
  font-weight: 400;
  font-size: 60px;
  line-height: 75px;
  text-align: center;
  color: var(--color-orange);
  margin:0 0 16px;
}

section.area_hero .hero__content p{
  font-family: var(--inter);
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  text-align: center;
  color: var(--text-gray);
}


section.areas{
  background:var(--bg-dark);
  padding: 0 0 111px;
}

section.areas .areas__grid{
  display:grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap:33px;
}

section.areas .areas__grid .area-card{
  background: linear-gradient(135deg, rgba(26, 58, 93, 0.4) 0%, rgba(10, 22, 40, 0.4) 100%);
  border: 1px solid rgba(26, 58, 93, 0.5);
  border-radius: 14px;
  padding:32px;
  width:100%;
  max-width:371px;
  position:relative;
}

section.areas .areas__grid .area-card h3{
  font-family: var(--oxanium);
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  color: var(--text-gray);
  margin:27px 0 0;
}

section.areas .areas__grid .area-card p{
  font-family: var(--inter);
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: var(--text-gray);
  margin:14px 0 0;
}

section.areas .areas__grid .area-card h6{
  font-family: var(--oxanium);
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 16px;
  text-transform: uppercase;
  color: #B4651D;
  margin:42px 0 12px;
}

section.areas .areas__grid .area-card ul{
  padding:0 0 0 20px;
  display:flex;
  flex-direction:column;
  gap:6px;
}

section.areas .areas__grid .area-card ul li{
  list-style-type: disc;
  font-family: var(--inter);
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: var(--text-gray);
}

section.areas .areas__grid .area-card ul li::marker{
  color:var(--color-orange);
}

section.areas .areas__grid .area-card .icon-bottom{
  position:absolute;
  bottom:16px;
  right:16px;
}

section.area_process{
  background:var(--bg-warm);
  padding:100px 0;
}

section.area_process .section-title{
  font-family: var(--oxanium);
  font-style: normal;
  font-weight: 600;
  font-size: 60px;
  line-height: 48px;
  text-align: center;
  color: var(--text-gray);
  margin:0 0 16px;
}

section.area_process p.processo__subtitle{
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  text-align: center;
  color: var(--text-gray);
  margin:0 0 34px;
}

section.area_process .processo__timeline{
  display:flex;

}

section.area_process .processo__timeline .processo__step{
  display:flex;
  justify-content:center;
  flex-direction:column;
  align-items:center;
  text-align:center;
  position:relative
}

section.area_process .processo__timeline .processo__step::before{
  content:'';
  width:100%;
  height:2px;
  background:var(--bg-white);
  position:absolute;
  top:40px;
  display:block;
  right: -50%;
  z-index: 1;
}

section.area_process .processo__timeline .processo__step:last-child::before{
  display:none;
}

section.area_process .processo__timeline .processo__step .processo__step-number{
  background:var(--bg-white);
  width:80px;
  height:80px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  font-family: var(--oxanium);
  font-style: normal;
  font-weight: 700;
  font-size: 30px;
  line-height: 36px;
  text-align: center;
  color: #1A3A5D;
  margin:0 0 24px;
  position:relative;
  z-index:2;
} 

section.area_process .processo__timeline .processo__step h4{
  font-family: var(--oxanium);
  font-style: normal;
  font-weight: 600;
  font-size: 22px;
  line-height: 30px;
  text-align: center;
  color: var(--text-gray);
  margin:0 0 12px;
}

section.area_process .processo__timeline .processo__step  p{
  font-family: var(--inter);
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  text-align: center;
  color: var(--text-gray);
}

@media (max-width:980px){
  section.area_hero .hero__content h1 {
    font-size: 48px;
    line-height: 62px;
  }
  section.areas .areas__grid {
    grid-template-columns: 1fr 1fr;
  }
  section.areas .areas__grid .area-card {
    max-width: 100%;
  }
  section.area_process .processo__timeline {
    flex-wrap: wrap;
    gap: 40px 20px;
  }
  section.area_process .processo__timeline .processo__step {
    flex: 1 1 calc(33.33% - 20px);
    min-width: 180px;
  }
}

@media (max-width:768px){
  section.area_hero .hero__content h1 {
    font-size: 40px;
    line-height: 52px;
  }
  section.areas .areas__grid {
    grid-template-columns: 1fr;
  }
  section.area_process .section-title {
    font-size: 40px;
    line-height: 52px;
  }
  section.area_process .processo__timeline .processo__step {
    flex: 1 1 calc(50% - 20px);
  }
  section.area_process .processo__timeline .processo__step::before {
    display: none;
  }
}

@media (max-width:480px){
  section.area_hero .hero__content h1 {
    font-size: 32px;
    line-height: 42px;
  }
  section.area_process .section-title {
    font-size: 32px;
    line-height: 42px;
  }
  section.area_process .processo__timeline .processo__step {
    flex: 1 1 100%;
  }
}


/* ─────────────────── Scroll reveal ─────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: none;
}


/* ─────────────────── Mobile menu ─────────────────── */

body.menu-open {
  overflow: hidden;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
}

.mobile-menu.is-open {
  pointer-events: all;
}

.mobile-menu__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu.is-open .mobile-menu__overlay {
  opacity: 1;
}

.mobile-menu__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 85vw);
  background: var(--bg-dark);
  border-left: 1px solid var(--border-light);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.mobile-menu.is-open .mobile-menu__panel {
  transform: translateX(0);
}

.mobile-menu__close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-white);
  align-self: flex-end;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu__logo img {
  height: 40px;
  width: auto;
}

.mobile-menu__nav ul {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-menu__nav a {
  font-family: var(--inter);
  font-weight: 300;
  font-size: 20px;
  line-height: 26px;
  color: var(--text-white);
  transition: color 0.2s;
}

.mobile-menu__nav a:hover,
.mobile-menu__nav a.nav__link--active {
  color: var(--color-orange);
}