.banner{
    background-color: var(--bandeira);
    background-image:
      radial-gradient(ellipse at 18% 55%, rgba(126, 186, 138, 0.28) 0%, rgba(126, 186, 138, 0) 52%),
      linear-gradient(90deg, rgba(0, 60, 78, 0.88) 0%, rgba(0, 60, 78, 0.42) 48%, rgba(10, 30, 36, 0.18) 100%),
      url('../images/belcondo/BELCONDO-hero.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh
}
.banner-content{
    align-items: center;
    justify-content: flex-start !important;
    height: 100%;
}
.banner-content p{
    margin-top: 56px;
}
.banner-text{
    width: 719px;
}
.banner-text a{
    margin-top: 56px;
}

.who-we-are, .process, .numbers, .comparison, .testimonials{
    padding: 75px 0;
}
.who-we-are-content, .process, .numbers-content, .comparison-content, .testimonials-content{
    text-align: center;
}
.section-title{
    width: 986px;
    margin: 24px auto;
}

.section-text{
    width: 991px;
    margin: auto
}

.benefits-showcase {
    position: relative;
    min-height: 320vh;
    overflow: visible;
  }
  
  .benefits-showcase * {
    box-sizing: border-box;
  }
  
  .benefits-showcase__sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
  }
  
  .benefits-showcase__container {
    width: 100%;
    display: grid;
    grid-template-columns: 48% 48%;
    gap: 4%;
  }
  
  .benefit-menu {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }
  
  .benefit-menu__item {
    appearance: none;
    border: 0;
    background: transparent;
    padding: 0;
    text-align: left;
    display: grid;
    grid-template-columns: 4px 1fr;
    gap: 18px;
    align-items: start;
    cursor: pointer;
    opacity: 0.38;
    transition: opacity .35s ease;
  }
  
  .benefit-menu__item.is-active {
    opacity: 1;
  }
  
  .benefit-menu__bar {
    width: 3px;
    height: 44px;
    border-radius: 999px;
    background: transparent;
    transition: background .35s ease;
  }
  
  .benefit-menu__item.is-active .benefit-menu__bar {
    background: var(--menta);
  }
  
  .benefit-menu__content {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  
  .benefit-menu__content p {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #d1d1d8;
    margin: 0;
    transition: color .35s ease;
  }
  
  .benefit-menu__content h3 {
    transition: color .35s ease;
  }
  
  .benefit-menu__item.is-active .benefit-menu__content p {
    color: var(--menta);
  }
  
  .benefit-menu__item:not(.is-active) .benefit-menu__content h3 {
    color: rgba(45,45,58,.52);
  }
  
  .benefit-visual__image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1.7 / 1;
    border-radius: 20px;
    overflow: hidden;
    background: #ddd;
  }
  
  .benefit-visual__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.03);
    transition: opacity .45s ease, transform .65s ease;
  }
  
  .benefit-visual__image.is-active {
    opacity: 1;
    transform: scale(1);
  }
  
  .benefit-visual__texts {
    position: relative;
    margin-top: 18px;
    min-height: 95px;
  }
  
  .benefit-visual__text {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity .35s ease, transform .35s ease;
    color: #9b9bab;
    font-size: 16px;
    line-height: 1.55;
  }
  
  .benefit-visual__text.is-active {
    opacity: 1;
    transform: translateY(0);
  }
  
  .benefit-visual__footer {
    margin-top: 24px;
    display: flex;
    justify-content: flex-end;
  }
  
  .benefit-visual__link {
    color: var(--bandeira);
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
  }

@media screen and (orientation:portrait) {
  .benefits-showcase__sticky {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 120px 0 0;
    box-sizing: border-box;
  }

  .benefits-showcase__container {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
    width: 100%;
    gap: 24px;
  }

  .benefits-showcase__right {
    order: 1;
    flex-shrink: 0;
  }

  .benefits-showcase__left {
    order: 2;
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .benefit-menu {
    gap: 18px;
    padding-bottom: 8px;
  }

  .benefit-visual__texts {
    min-height: 88px;
  }
}

.process-steps-content{
  justify-content: space-between;
  margin: 10px auto 40px
}
  .process-step{
  width: 275px;
}
.process-step-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 42px;
  background-color: var(--gray-lighter);
  width: fit-content;
  aspect-ratio: 1;
  border-radius: 100px;
  box-sizing: border-box;
  transition: 0.4s;
  margin-top: 58px;
  margin-bottom: 58px;
}

.process-step-icon img{
  height: 35px;
  filter: brightness(0) saturate(100%) invert(64%) sepia(16%) saturate(643%) hue-rotate(88deg) brightness(93%) contrast(88%);
  transition: 0.4s
}

/* Secondary dashed ring, concentric with the icon (slightly larger) */
.process-step-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% + 28px);
  aspect-ratio: 1;
  box-sizing: border-box;
  border-radius: 50%;
  border: 3px dashed var(--menta);
  pointer-events: none;
}

.process-step-icon:hover{
  padding: 60px;
  background-color: var(--purple-lightest);
  border-radius: 120px;
  margin-top: 40px;
  margin-bottom: 35px;
}

.process-step-icon:hover img{
  height: 40px;
  filter: brightness(0) saturate(100%) invert(18%) sepia(24%) saturate(1476%) hue-rotate(142deg) brightness(92%) contrast(101%);
}

.process-step-icon:hover::after{
  width: calc(100% + 40px);
  border: 3px dashed var(--oliva);
}

.process-step .body1{
  margin-top: 8px;
}


.benefits{
  background: var(--gradient-benefits);
  padding: 96px 0;
}

.benefits-content{
  justify-content: center;
  gap: 160px;
}
.benefits-box-1{
  width: 612px;
}
.benefits-box-1 .overline{
  margin-bottom:  16px;
}
.benefits-box-1 .body0{
  margin-top: 24px;
}
.benefits-buttons{
  margin-top: 48px;
  gap: 20px;
}

.benefits-box-2{
  width: 506px;
  position: relative;
  padding-top: 200px;
}
.benefit-box{
  padding-left: 50px;
  position: relative;
  padding-bottom: 24px;
}
.benefit-box::before{
  content: '';
  height: calc(100% - 52px);
  width: 1px;
  background-color: #F8F9FC;
  opacity: 0.3;
  position: absolute;
  left: 10px;
  top: 42px;
}
.benefit-box:last-child::before{
  display: none;
}
.benefit-box .H5{
  margin-bottom: 8px;
}
.benefit-box img{
  position: absolute;
  top: 0;
  left: 0;
  height: 24px;
}

.numbers-boxes{
  display: grid;
  grid-template-columns: 23.5% 23.5% 23.5% 23.5%;
  gap: 2%;
  grid-template-rows: 353px 353px;
  margin-top: 48px; 
}
.numbers-box{
  padding: 32px;
  display: flex;
  flex-direction: column;
  border-radius: 25px;
  background-color: var(--gray-lighter);
}

.numbers-box-text{
  margin-top: auto;
  float: none;
}
.numbers-box-text .H6{
  margin-bottom: 8px;
}

.numbers-box-1{
  grid-row: 1/3;

  border-radius: 25px;
}

.numbers-box-2,
.numbers-box-4,
.numbers-box-5{
  background-image: none;
  background: linear-gradient(160deg, rgba(126, 186, 138, 0.18), rgba(12, 108, 90, 0.12));
  align-items: center;
  justify-content: center;
}

.numbers-box-4{
  grid-row: 2;
  grid-column: 2/4;
}

.numbers-box-5{
}

.comparison-box-1, .comparison-box-2{
  width: 700px;
  padding: 32px;
  border-radius: 24px;
}
.comparison-box-2{
  background-color: var(--primary);
}
.comparison-box-1 h2, .comparison-box-2 h2{
  margin-bottom: 64px;
}
.comparison-boxes{
  margin-top: 60px;
  justify-content: center;
  gap: 72px;
}
.comparison-item{
  padding-left: 50px;
  position: relative;
  padding-bottom: 72px;
}

.comparison-item img{
  position: absolute;
  top: 0;
  left: 0;
  height: 24px;
}

.comparison-item::before{
  content: '';
  height: calc(100% - 52px);
  width: 1px;
  background-color: var(--coral-lighter);
  opacity: 0.3;
  position: absolute;
  left: 10px;
  top: 42px;
}
.comparison-item:last-child::before{
  display: none;
}

.slider {
  display: flex;
  width: 100%;
  overflow-x: auto;
  scroll-behavior: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  gap: 0;
}

.slider::-webkit-scrollbar {
  display: none;
}

.slider span {
  flex: 0 0 auto;
  width: 620px;
  padding-left: 42px;
  background-color: var(--C-10);
}
.testimonials-buttons{
  gap: 12px;
  float: right;
  margin-bottom: 72px;
}
.testimonials-buttons button{
  background-color: transparent;
  border: solid 1px var(--gray-light);
  height: 48px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  border-radius: 100%;
  justify-content: center;
  transition: 0.2s;
}

.testimonials-buttons button img{
  filter: brightness(0) saturate(100%) invert(18%) sepia(24%) saturate(1476%) hue-rotate(142deg) brightness(92%) contrast(101%);
}
.testimonials-buttons button:nth-child(2) img{
  rotate: 180deg
}

.testimonials-buttons button:hover{
  background-color: var(--bandeira);
  border: solid 1px var(--bandeira)
}
.testimonials-buttons button:hover img{
  filter: invert(1)
}

.testimonial-box{
  padding:32px;
  position: relative;
  background-color: var(--gray-lighter);
  border-radius: 25px;
  overflow: visible;
}

.testimonial-box img{
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-48%)
}

.testimonial-box .H6{
  margin-top: 72px;
}
.ebooks-content{
  align-items: center;
  justify-content: center;
  gap: 72px;
}
.ebooks img{
  width: auto;
}
.ebook-texts{
  width: 513px;
}

.ebook-texts .body0{
  margin: 24px 0
}

.who-we-are .contact-content {
  margin-top: 56px;
}

.benefit-visual__image.belcondo-placeholder {
  min-height: 100%;
  border-radius: 0;
}

.ebooks-covers {
  position: relative;
  width: 560px;
  max-width: 100%;
  flex-shrink: 0;
  background: transparent;
}

.ebooks-covers__image {
  display: block;
  width: 100%;
  height: auto;
}

.btn-2.H6,
.btn-2 .H6 {
  color: var(--bandeira);
}

.btn-2:hover.H6,
.btn-2:hover .H6 {
  color: var(--C0);
}

.numbers-box--icon {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.numbers-box--icon img {
  width: auto;
  height: 70%;
  max-height: 220px;
  max-width: 85%;
  object-fit: contain;
}

.comparison-box-2 .comparison-item::before {
  background-color: var(--menta);
}

.comparison-box-1 .comparison-item img,
.comparison-box-2 .comparison-item img,
.benefit-box img {
  filter: none;
}

.menu-right .btn-2.botao-menu,
.ojutu-mobile-action-btn.btn-2 {
  color: var(--bandeira);
}

@media (max-width: 1024px) {
  .banner-text,
  .section-title,
  .section-text,
  .ebooks-covers {
    width: 100%;
  }
  .benefits-content,
  .comparison-boxes,
  .ebooks-content {
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .banner {
    height: auto;
    min-height: 100vh;
    padding: 140px 0 80px;
  }
  .contact-content {
    flex-direction: column;
  }
  .contact-text {
    width: 100%;
  }
  .ebooks-covers {
    width: 100%;
  }
}

@media (max-width: 390px) {
  .process-step {
    width: 100% !important;
  }
  .numbers-boxes {
    grid-template-columns: 100%;
    grid-template-rows: none;
  }
}


@media screen and (orientation: portrait){
  .benefits-box-1,
  .benefits-box-2,
  .comparison-box-1, 
  .comparison-box-2,
  .ebook-texts
  {width: 100% !important;} 

  .benefits-box-2{
    padding-top: 0 !important;
  }

  .numbers-boxes{
    grid-template-rows: 150px 150px 150px 150px !important;
    grid-template-columns: 48% 48%;
  }
  .numbers-box-3{
    grid-row: 2;
    grid-column: 2;
  }
  .numbers-box-4{
    grid-row: 3;
    grid-column: 1/3
  }
  .ebook-texts{
    margin-bottom: 90px;
  }
  .process-step{
    width: 45% !important;
  }
}