/* ===========================================
   SESSÃO 1 – HERO (vídeo de fundo)
=========================================== */

.home-page {
  background: #1E1E1E;
}

/* HERO BASE */
.hero {
  position: relative;
  width: 100%;
  margin: 0 auto;
  height: clamp(540px, 55vw, 770px);
  overflow: hidden;
  border-bottom-left-radius: clamp(80px, 12vw, 200px);
  border-bottom-right-radius: clamp(80px, 12vw, 200px);
  background: transparent;
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-bottom-left-radius: inherit;
  border-bottom-right-radius: inherit;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.49) 49%,
    rgba(0, 0, 0, 0.7) 62%,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: 1;
}

/* HERO CONTENT */
.hero__content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 200px 24px;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  color: #fff;
  text-shadow: 0 1px 16px rgba(0,0,0,.5);
}

.hero__eyebrow {
  font-family: var(--ff-sans);
  font-weight: 300;
  font-size: clamp(18px, 2.2vw, 24px);
  color: rgba(255,255,255,0.9);
  margin: 0 0 12px;
}

.hero__title {
  font-family: var(--ff-sans);
  font-weight: 400;
  font-size: clamp(26px, 3.2vw, 42px);
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: .3px;
  max-width: 1200px;
  margin: 0 auto 28px;
}

/* BOTÕES */
.hero__actions {
  display: grid;
  grid-auto-flow: column;
  justify-content: center;
  gap: 40px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 420px;
  max-width: 100%;
  height: 50px;
  padding: 0 24px;
  border-radius: 10px;
  text-decoration: none;
  font-family: var(--ff-sans);
  font-size: 16px;
  font-weight: 600;
  transition: transform .15s ease, opacity .2s ease;
}

.btn--primary {
  background: #7ED957;
  color: #000;
}

.btn--primary:hover {
  transform: translateY(-1px);
  opacity: .95;
}

.btn--ghost {
  background: rgba(30,30,30,.40);
  border: 0.5px solid rgba(30,30,30,.10);
  color: #7ED957;
}

.btn--ghost:hover {
  background: rgba(30,30,30,.50);
  transform: translateY(-1px);
}

/* ===================================================
   RESPONSIVIDADE – NOTEBOOK PEQUENO (1025–1200px)
=================================================== */
@media (max-width: 1200px) and (min-width: 1025px) {
  .hero {
    height: clamp(500px, 58vw, 700px);
  }

  .hero__content {
    padding: 180px 40px 140px;
  }

  .hero__title {
    max-width: 1000px;
    font-size: clamp(24px, 3vw, 36px);
  }

  .hero__actions {
    gap: 32px;
  }

  .btn {
    width: 360px;
    height: 48px;
    font-size: 15px;
  }
}

/* ===================================================
   RESPONSIVIDADE – TABLET (769–1024px)
=================================================== */
@media (max-width: 1024px) and (min-width: 769px) {

  .hero {
    height: clamp(480px, 64vw, 660px);
  }

  .hero__content {
    padding: 160px 32px 100px;
  }

  .hero__title {
    max-width: 880px;
    font-size: clamp(22px, 3.2vw, 32px);
  }

  /* 2 botões lado a lado */
  .hero__actions {
    width: 100%;
    max-width: 720px;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-flow: unset;
    gap: 20px;
  }

  .btn {
    width: 100%;
    height: 46px;
    font-size: 15px;
  }
}

/* ===================================================
   RESPONSIVIDADE – MOBILE ≤ 768px
=================================================== */
@media (max-width: 768px) {

  .hero {
    height: auto;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-bottom-left-radius: 50px;   
    border-bottom-right-radius: 50px;
  }

  .hero__content {
    padding: 280px 20px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero__eyebrow {
    font-size: clamp(14px, 3.6vw, 18px);
  }

  .hero__title {
    font-size: clamp(20px, 5vw, 28px);
    max-width: 92%;
    line-height: 1.25;
  }

  /* botões em coluna */
  .hero__actions {
    width: 100%;
    flex-direction: column;
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 280px;
    height: 44px;
    font-size: 14px;
    border-radius: 8px;
  }
}

/* ===========================
   SESSÃO 2 – IDENTIDADE E CONFIANÇA
=========================== */

.identity {
  color: #fff;
  width: 100%;
  margin: 0 auto;
}

.identity__inner {
  width: 100%;
  max-width: 1440px;
  margin: 80px auto 0;
  padding: 0 clamp(24px, 6.5vw, 100px) 100px;
  box-sizing: border-box;
}

.identity__header {
  max-width: 1100px;
  text-align: left;
}

.identity__title {
  margin: 0 0 30px;
  font-family: var(--ff-sans);
  font-weight: 400;
  font-size: 40px;
  line-height: 1.2;
  text-transform: uppercase;
}

.identity__title-line {
  display: block;
}

.identity__title-line--white {
  color: #ffffff;
}

.identity__title-line--green {
  color: #7ED957;
}

.identity__subtitle {
  font-family: var(--ff-sans);
  font-weight: 300;
  font-size: 24px;
  line-height: 1.5;
  color: #ffffff;
  margin: 0 0 120px 0;
  max-width: 800px;
}

/* Cards – desktop / tablet largo (≥ 821px)
   3 cards lado a lado, sem wrap
*/
.identity__cards {
  margin: 0;
  display: flex;
  justify-content: center;
  gap: clamp(24px, 4vw, 60px);
  flex-wrap: nowrap;
}

.identity-card {
  position: relative;
  width: clamp(220px, 22vw, 300px);
  height: 280px;
  background: #000000;
  border-radius: 50px;
  box-shadow: 0 5px 10px 1px rgba(126, 217, 87, 0.75);
  padding: 80px 32px 50px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.identity-card__icon {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.identity-card__icon img {
  width: 100%;
  height: 100%;
  display: block;
}

.identity-card__body {
  text-align: center;
}

.identity-card__title {
  font-family: var(--ff-display);
  font-size: 50px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  color: #7ED957;
  margin: 0 0 20px;
}

.identity-card__text {
  font-family: var(--ff-sans);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
  color: #ffffff;
  margin: 0;
}

/* =========================================
   Responsivo – 821px a 1200px
========================================= */
@media (max-width: 1200px) and (min-width: 821px) {
  .identity__inner {
    padding: 80px clamp(24px, 6.5vw, 60px) 100px;
  }

  .identity__header {
    margin: 0 auto 60px;
  }

  .identity__title {
    font-size: 34px;
  }

  .identity__subtitle {
    font-size: 20px;
    margin-bottom: 70px;
  }

  .identity-card {
    height: 260px;
    border-radius: 40px;
    padding: 72px 28px 36px;
  }

  .identity-card__icon {
    top: -52px;
    width: 100px;
    height: 100px;
  }

  .identity-card__title {
    font-size: 42px;
  }

  .identity-card__text {
    font-size: 17px;
  }
}

/* =========================================
   MOBILE / TABLET ESTREITO – ≤ 820px
   Carrossel com 1 card por vez, sem nada cortado
========================================= */
@media (max-width: 820px) {
  .identity__inner {
    padding: 20px 20px 0;
    margin-top: 40px;
  }

  .identity__header {
    margin: 0 auto 32px;
    text-align: start;
  }

  .identity__title {
    font-size: 20px;
  }

  .identity__subtitle {
    font-size: 16px;
    margin-bottom: 24px;
    max-width: 100%;
  }

  .identity__cards {
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;
    padding: 8px 4px 24px;
    margin: 0;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .identity__cards::-webkit-scrollbar {
    display: none;
  }

  .identity-card {
    flex: 0 0 88%;              
    max-width: 88%;
    height: auto;
    padding: 24px 24px 28px;
    border-radius: 32px;
    scroll-snap-align: start;   
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
  }

  .identity-card__icon {
    position: static;
    transform: none;
    margin: 0 auto 16px;
    width: 80px;
    height: 80px;
  }

  .identity-card__title {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .identity-card__text {
    font-size: 14px;
  }
}

/* ===========================
   SESSÃO 3 – COMO SUA MARCA É RECONHECIDA
=========================== */

.steps {
  background: #ffffff;
  width: 100%;
  margin: 80px auto 0;
  border-top-left-radius: 200px;
  border-top-right-radius: 200px;
  overflow: hidden;
}

.steps__inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px clamp(24px, 6.5vw, 100px) 100px;
  box-sizing: border-box;
}

.steps__header {
  text-align: center;
  margin-bottom: 64px;
}

.steps__eyebrow {
  font-family: var(--ff-sans);
  font-size: 40px;
  font-weight: 400;
  text-transform: uppercase;
  color: #000000;
  margin: 0;
}

.steps__title {
  font-family: var(--ff-display);
  font-size: 80px;
  font-weight: 400;
  text-transform: uppercase;
  color: #000000;
  margin: 0;
}

/* layout base desktop */
.steps__body {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  align-items: flex-start;
  gap: 40px;
}

.steps__left {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-left: -40px; /* leve para alinhar com o layout curvo */
}

.steps-card {
  position: relative;
  width: 100%;
  max-width: 600px;
  height: 235px;
  padding: 32px 100px;
  border: none;
  background: transparent;
  text-align: left;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  font-family: var(--ff-sans);
  color: inherit;
  outline: none;
}

.steps-card:focus-visible {
  outline: 2px solid #7ED957;
  outline-offset: 2px;
}

.steps-card--active {
  background: #E2E5E3;
  border-radius: 20px;
}

.steps-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 140px;
  border-radius: 50px;
  background: #7ED957;
  color: #000000;
  font-size: 24px;
  font-weight: 400;
}

.steps-card__title {
  margin: 0 0 8px;
  font-family: var(--ff-sans);
  font-size: 24px;
  font-weight: 400;
  text-transform: uppercase;
  color: #000000;
}

.steps-card__text {
  margin: 0;
  font-family: var(--ff-sans);
  font-size: 18px;
  font-weight: 200;
  line-height: 1.5;
  color: #000000;
}

.steps__right {
  display: flex;
  justify-content: flex-end;
  margin-right: -40px;
}

.steps__image-wrapper {
  width: 100%;
  max-width: 750px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.steps__image {
  width: 100%;
  max-width: 750px;
  height: auto;
  display: block;
}

/* ========= 1439px → 821px
   Ajuste para imagem não encostar nos cards
========= */
@media (max-width: 1439px) and (min-width: 821px) {
  .steps__inner {
    padding: 70px clamp(24px, 6.5vw, 80px) 90px;
  }

  .steps__eyebrow {
    font-size: 32px;
  }

  .steps__title {
    font-size: 60px;
  }

  .steps__body {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 32px;
  }

  .steps__left {
    margin-left: -20px;
  }

  .steps__right {
    margin-right: -20px;
  }

  .steps__image-wrapper {
    max-width: 560px;
    justify-content: center;
  }

  .steps__image {
    max-width: 560px;
  }

  .steps-card {
    max-width: 520px;
    height: 210px;
    padding: 28px 60px;
  }

  .steps-card__badge {
    font-size: 20px;
    height: 36px;
    width: 130px;
  }

  .steps-card__title {
    font-size: 22px;
  }

  .steps-card__text {
    font-size: 16px;
  }
}

/* ========= ≤ 820px ========= */
@media (max-width: 820px) {
  .steps {
    margin-top: 60px;
    border-top-left-radius: 50px;   
    border-top-right-radius: 50px;
  }

  .steps__inner {
    padding: 50px 24px 70px;
  }

  .steps__header {
    margin-bottom: 40px;
  }

  .steps__eyebrow {
    font-size: 24px;
  }

  .steps__title {
    font-size: 36px;
  }

  .steps__body {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .steps__left {
    margin-left: 0;
    gap: 14px;
  }

  .steps-card {
    max-width: 100%;
    width: 100%;
    height: auto;
    padding: 20px 18px;
    border-radius: 18px;
  }

  .steps-card__badge {
    font-size: 16px;
    height: 32px;
    width: 120px;
  }

  .steps-card__title {
    font-size: 18px;
  }

  .steps-card__text {
    font-size: 14px;
  }

  .steps__right {
    margin-right: 0;
    justify-content: center;
  }

  .steps__image-wrapper {
    max-width: 100%;
    justify-content: center;
  }

  .steps__image {
    max-width: 480px;
    width: 100%;
    border-radius: 16px;
  }
}

/* ========= ≤ 480px (ajuste fino) ========= */
@media (max-width: 480px) {
  .steps__inner {
    padding: 40px 20px 60px;
  }

  .steps__eyebrow {
    font-size: 18px;
  }

  .steps__title {
    font-size: 32px;
  }

  .steps-card {
    padding: 18px 16px;
  }

  .steps-card__text {
    font-size: 14px;
  }

  .steps__image {
    max-width: 100%;
  }
}

/* ===========================
   SESSÃO 4 – SEUS RESULTADOS DE VOLTA
=========================== */

.results {
  background: #1E1E1E;
  width: 100%;
}

.results__inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 96px clamp(24px, 6.5vw, 100px) 120px;
  box-sizing: border-box;
}

.results__header {
  text-align: center;
  margin-bottom: 64px;
}

.results__eyebrow {
  font-family: var(--ff-sans);
  font-size: 40px;
  font-weight: 400;
  text-transform: uppercase;
  color: #FFFFFF;
  margin: 0;
}

.results__title {
  font-family: var(--ff-display);
  font-size: 80px;
  font-weight: 400;
  text-transform: uppercase;
  color: #7ED957;
  margin: 0;
}

/* GRID BASE — 3 colunas (desktop) */
.results__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 60px 0;
  justify-items: center;
}

.results-card {
  position: relative;
  width: 260px;
  height: 140px;
  background: #000000;
  border-radius: 20px;
  box-shadow: 0 5px 10px 1px rgba(126, 217, 87, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: visible;
  padding: 0 20px;
}

.results-card__icon {
  position: absolute;
  left: -50px;
  top: 50%;
  transform: translateY(-50%);
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.results-card__icon img {
  max-width: 100%;
  max-height: 100%;
  display: block;
}

.results-card__text {
  font-family: var(--ff-display);
  font-size: 22px;
  max-width: 200px;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.5;
  color: #FFFFFF;
  margin: 0;
}

/* ===========================
   ≤ 1340px → Ajuste fino
=========================== */
@media (max-width: 1340px) {
  .results__inner {
    padding: 80px clamp(24px, 6.5vw, 60px) 100px;
  }

  .results-card {
    max-width: 220px;
  }

  .results-card__icon {
    left: -40px;
    width: 90px;
    height: 90px;
  }

  .results-card__text {
    font-size: 20px;
    max-width: 140px;
  }
}

/* ===========================
   ≤ 820px → vira 2 colunas
=========================== */
@media (max-width: 820px) {
  .results__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 50px;
  }

  .results-card {
    max-width: 220px;
  }

  .results-card__icon {
    left: -35px;
    width: 80px;
    height: 80px;
  }

  .results-card__text {
    font-size: 18px;
  }
}

/* ===========================
   ≤ 768px → vira 1 coluna (mobile)
=========================== */
@media (max-width: 768px) {
  .results__inner {
    padding: 60px 24px 80px;
  }

  .results__eyebrow {
    font-size: 18px;
  }

  .results__title {
    font-size: 42px;
  }

  .results__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .results-card {
    width: 100%;
    max-width: 320px;           
    margin: 0 auto;
    height: auto;               
    padding: 16px 20px 16px 72px;
  }

  .results-card__icon {
    left: 20px;
    width: 72px;
    height: 72px;
  }

  .results-card__text {
    font-size: 16px;
    max-width: 140px;
  }
}

/* ===========================
   ≤ 480px → ajuste fino mobile pequeno
=========================== */
@media (max-width: 480px) {
  .results__eyebrow {
    font-size: 18px;
  }

  .results__title {
    font-size: 32px;
  }

  .results-card {
    max-width: 240px;           
    padding: 14px 16px 14px 30px;
  }

  .results-card__icon {
    left: -20px;
    width: auto;
    height: 65px;
  }

  .results-card__text {
    font-size: 16px;
  }
}


/* ============================================
   WRAPPER GERAL CINZA (Sessões 5, 6, 7)
============================================ */
.scale-partners-sectors-bg {
  width: 100%;
  background: #f2f2f2;
}

/* ======================
   SESSÃO 5 – ESCALA
====================== */

.scale-wrapper {
  width: 100%;
}

.scale__inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 96px clamp(24px, 6.5vw, 100px) 40px;
  box-sizing: border-box;
  background: #ffffff;
  border-bottom-left-radius: clamp(80px, 12vw, 200px);
  border-bottom-right-radius: clamp(80px, 12vw, 200px);
  overflow: hidden;
}

/* HEADER */

.scale__header {
  text-align: center;
  margin-bottom: 48px;
}

.scale__eyebrow {
  font-family: var(--ff-sans);
  font-size: 40px;
  font-weight: 400;
  text-transform: uppercase;
  color: #000000;
  margin: 0;
}

.scale__title {
  font-family: var(--ff-display);
  font-size: 80px;
  font-weight: 400;
  text-transform: uppercase;
  margin: 0;
}

/* MOCKUP HORIZONTAL */

.scale__phone-horizontal {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.scale__phone-horizontal img {
  width: 100%;
  max-width: 1100px;
  height: auto;
  display: block;
}

/* LINHA INFERIOR: 3 COLUNAS (cards + mockup vertical + cards) */

.scale__bottom-row {
  display: grid;
  grid-template-columns: auto auto auto;
  justify-content: center;
  align-items: center;
  margin-top: -80px; /* faz o bloco subir e “abraçar” o mockup horizontal */
  column-gap: 30px;
}

/* MOCKUP VERTICAL CENTRAL */

.scale__phone-vertical-wrapper {
  display: flex;
  justify-content: center;
  position: relative;
  top: -100px; /* faz o celular ficar ‘flutuando’ entre os cards */
  z-index: 1;
}

.scale__phone-vertical {
  width: 100%;
  max-width: 550px;
  height: auto;
  display: block;
}

/* COLUNAS DE CARDS LATERAIS */

.scale__col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: -60px;
  z-index: 2;
}

.scale__col--right .scale-card {
  min-height: 220px;
}

/* CARDS */

.scale-card {
  width: 280px;
  min-height: 180px;
  background: #000000;
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.scale-card__title {
  font-family: var(--ff-display);
  font-size: 40px;
  color: #7ED957;
  margin: 0 0 16px;
}

.scale-card__text {
  font-family: var(--ff-sans);
  font-size: 18px;
  color: #FFFFFF;
  margin: 0;
}


/* =========================================
   1200px → 821px (notebook / tablet landscape)
========================================= */

@media (max-width: 1340px) and (min-width: 821px) {
  .scale__inner {
    padding: 80px clamp(24px, 6.5vw, 80px) 40px;
  }

  .scale__eyebrow {
    font-size: 32px;
  }

  .scale__title {
    font-size: 60px;
  }

  .scale__phone-horizontal img {
    max-width: 900px;
  }

  .scale__bottom-row {
    margin-top: -60px;
    column-gap: 24px;
  }

  .scale__phone-vertical-wrapper {
    top: -140px;
  }

  .scale__phone-vertical {
    max-width: 460px;
  }

  .scale__col {
    margin-top: -200px;
  }

  .scale-card {
    width: 240px;
    height: auto;
    padding: 20px;
  }

  .scale-card__title {
    font-size: 32px;
  }

  .scale-card__text {
    font-size: 16px;
  }
}


/* =========================================
   ≤ 820px (tablet portrait / mobile grande)
   → remove mockups, deixa só os 5 cards empilhados
========================================= */

@media (max-width: 820px) {
  .scale__inner {
    padding: 70px 24px 40px;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
  }

  .scale__eyebrow {
    font-size: 28px;
  }

  .scale__title {
    font-size: 42px;
  }

  /* remove imagens de celular em mobile/tablet estreito */
  .scale__phone-horizontal,
  .scale__phone-vertical-wrapper {
    display: none;
  }

  /* vira coluna única: todos os cards empilhados */
  .scale__bottom-row {
    grid-template-columns: 1fr;
    margin-top: 0;
    row-gap: 24px;
  }

  .scale__col {
    margin-top: 0;
    align-items: center;
    order: 0;
  }

  .scale__col--right {
    order: 0;
  }

  .scale-card {
    width: 100%;
    max-width: 330px;
    min-height: auto;
    padding: 20px 18px;
  }

  .scale-card__title {
    font-size: 26px;
  }

  .scale-card__text {
    font-size: 16px;
  }
}


/* =========================================
   ≤ 600px (mobile)
========================================= */

@media (max-width: 600px) {
  .scale__inner {
    padding: 60px 20px 80px;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
  }

  .scale__eyebrow {
    font-size: 18px;
  }

  .scale__title {
    font-size: 32px;
  }

  .scale-card__title {
    font-size: 24px;
  }

  .scale-card__text {
    font-size: 14px;
  }
}

/* ============================
   SESSÃO 6 – PARCERIAS
============================ */

.partners {
  background: #f2f2f2;
  width: 100%;
}

.partners__inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 96px clamp(24px, 6.5vw, 100px) 40px;
  box-sizing: border-box;
}

.partners__header {
  margin-bottom: 48px;
}

.partners__title {
  font-family: var(--ff-sans);
  font-size: 40px;
  font-weight: 400;
  text-transform: uppercase;
  color: #000;
  margin: 0;
}

/* RAIL */
.partners__body {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.partners__rail {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 16px;
}

/* Cards */
.partners-card {
  position: relative;
  flex: 0 0 220px;
  height: 700px;
  cursor: pointer;
  border: none;
  background: transparent;
  padding: 0;
  overflow: hidden;
  transition: flex-basis .35s ease;
}

.partners-card--active {
  flex-basis: 440px;
}

.partners-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Conteúdo */
.partners__content {
  width: 400px;
  margin-top: 40px;
  text-align: center;
  transition: margin-left .35s ease;
}

/* deslocamentos horizontais */
.partners__content[data-active="1"] {
  margin-left: calc(0 * 220px + 0 * 16px);
}
.partners__content[data-active="2"] {
  margin-left: calc(1 * 220px + 1 * 16px);
}
.partners__content[data-active="3"] {
  margin-left: calc(2 * 220px + 2 * 16px);
}
.partners__content[data-active="4"] {
  margin-left: calc(3 * 220px + 3 * 16px);
}

.partners__content-title {
  font-family: var(--ff-display);
  font-size: 40px;
  font-weight: 700;
  margin: 0;
  color: #000;
  text-transform: uppercase;
}

.partners__content-text {
  font-family: var(--ff-sans);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
  color: #000;
}

/* Responsivo */
@media (max-width: 1200px) {
  .partners__inner {
    padding: 80px clamp(24px, 6.5vw, 80px) 40px;
  }
}

/* Tablets e mobile: manter estética de “rail” horizontal, com scroll */
@media (max-width: 1024px) {
  .partners__body {
    max-width: 100%;
  }

  .partners__rail {
    justify-content: flex-start;
    align-items: stretch;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 12px;
    -webkit-overflow-scrolling: touch;
  }

  .partners__rail::-webkit-scrollbar {
    display: none;
  }

  .partners-card,
  .partners-card--active {
    flex: 0 0 200px;   /* todos os cards com largura fixa proporcional */
    height: 380px;
  }

  .partners__content {
    width: 100%;
    max-width: 420px;
    margin-top: 32px;
    margin-left: 0 !important; /* sem deslocamento horizontal */
    text-align: center;
  }

  .partners__content-title {
    font-size: 28px;
  }

  .partners__content-text {
    font-size: 16px;
  }
}

/* Ajustes finos para telas bem pequenas */
@media (max-width: 600px) {

  .partners__title {
    font-size: 18px;
  }
  .partners__inner {
    padding: 60px 16px 32px;
  }

  .partners-card,
  .partners-card--active {
    width: 100%;
    max-width: 220px;
  }
}


/* ======================
   SESSÃO 7 – SETORES
====================== */

.sectors-wrapper {
  width: 100%;
  background: #f2f2f2;
}

.sectors {
  background: #1E1E1E;
  max-width: 1440px;
  margin: 0 auto;
  border-radius: 200px;
  overflow: hidden;
}

.sectors__inner {
  padding: 80px clamp(24px, 6.5vw, 100px);
  box-sizing: border-box;
}

.sectors__header {
  text-align: center;
  margin-bottom: 72px;
}

.sectors__title {
  font-family: var(--ff-display);
  font-size: 80px;
  font-weight: 400;
  text-transform: uppercase;
  color: #7ED957;
  margin: 0 0 6px;
}

.sectors__subtitle {
  font-family: var(--ff-sans);
  font-size: 40px;
  font-weight: 400;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.sectors__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 80px;
  row-gap: 0;
}

.sectors__col {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.sectors-item {
  max-width: 360px;
}

.sectors-item__title {
  font-family: var(--ff-display);
  font-size: 30px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  margin: 0 0 8px;
}

.sectors-item__subtitle {
  font-family: var(--ff-sans);
  font-size: 18px;
  font-weight: 200;
  color: #ffffff;
  margin: 0 0 16px;
  line-height: 1.6;
}

.sectors-item__para {
  font-family: var(--ff-sans);
  font-size: 18px;
  line-height: 1.6;
  margin: 0 0 16px;
  padding-left: 14px;
  border-left: 2px solid;
}

.sectors-item__para--white {
  color: #ffffff;
  border-left-color: #7ED957;
}

.sectors-item__para--green {
  color: #7ED957;
  border-left-color: #ffffff;
}

/* Responsivo – SETORES */
@media (max-width: 1200px) {
  .sectors__inner {
    padding: 80px clamp(24px, 6.5vw, 60px);
  }

  .sectors__title {
    font-size: 60px;
  }

  .sectors__subtitle {
    font-size: 28px;
    max-width: 700px;
  }

  .sectors__grid {
    column-gap: 40px;
  }
}

@media (max-width: 820px) {
  .sectors {
    border-radius: 50px; 
  }

  .sectors__grid {
    grid-template-columns: 1fr;
  }

  .sectors__col {
    gap: 40px;
  }

  .sectors-item {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .sectors__inner {
    padding: 60px 24px;
  }

  .sectors__title {
    font-size: 32px;
  }

  .sectors__subtitle {
    font-size: 18px;
    max-width: 90%;
  }

  .sectors-item__title {
    font-size: 24px;
  }

  .sectors-item__para,
  .sectors-item__subtitle {
    font-size: 16px;
  }
}

/* ===========================
   SESSÃO 8 – CTA FINAL
=========================== */

.final-cta {
  background: #F2F2F2;
  width: 100%;
}

.final-cta__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 96px clamp(24px, 6.5vw, 100px) 120px;
  box-sizing: border-box;
  text-align: center;
}

/* HEADER */
.final-cta__header {
  margin-bottom: 140px;
}

.final-cta__eyebrow {
  font-family: var(--ff-sans);
  font-size: 40px;
  font-weight: 400;
  text-transform: uppercase;
  color: #000000;
  margin: 0;
}

.final-cta__title-main {
  font-family: var(--ff-display);
  font-size: 80px;
  font-weight: 400;
  text-transform: uppercase;
  color: #000000;
  margin: 0;
}

/* COPY */
.final-cta__copy {
  max-width: 1100px;
  margin: 0 auto 60px;
}

.final-cta__sub-eyebrow {
  font-family: var(--ff-sans);
  font-size: 24px;
  font-weight: 300;
  color: #000000;
  margin: 0;
}

.final-cta__sub-title {
  font-family: var(--ff-sans);
  font-size: 40px;
  font-weight: 400;
  text-transform: uppercase;
  color: #000000;
  margin: 0;
}

/* BOTÕES */
.final-cta__actions {
  margin-top: 48px;
  display: grid;
  grid-auto-flow: column;
  justify-content: center;
  gap: 40px;
}

/* Botão secundário utilizando o sistema .btn */
.btn--secondary {
  background: #1E1E1E;
  color: #7ED957;
  border: none;
}

.btn--secondary:hover {
  background: #d6d6d6;
  transform: translateY(-1px);
}

.btn--secondary:active {
  background: #cfcfcf;
  transform: translateY(0);
}

/* ===========================
   RESPONSIVE
=========================== */

@media (max-width: 820px) {
  .final-cta__actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .final-cta__actions .btn {
    max-width: 280px;
    width: 100%;
  }

  .final-cta__header {
    margin-bottom: 100px;
  }
}

@media (max-width: 768px) {
  .final-cta__inner {
    padding: 40px 24px;
  }

  .final-cta__eyebrow {
    font-size: 18px;
  }

  .final-cta__title-main {
    font-size: 32px;
  }

  .final-cta__sub-eyebrow {
    font-size: 18px;
  }

  .final-cta__sub-title {
    font-size: 26px;
  }
}

@media (max-width: 1200px) and (min-width: 821px) {
  .steps__title,
  .results__title,
  .scale__title,
  .sectors__title,
  .final-cta__title-main {
    font-size: clamp(48px, 6vw, 68px);
  }

  .steps__eyebrow,
  .results__eyebrow,
  .scale__eyebrow,
  .sectors__subtitle,
  .final-cta__eyebrow {
    font-size: clamp(24px, 3vw, 32px);
  }
}
