.container-1280 {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}

.layout-cabecalho {
  height: 76px;
  line-height: 76px;
  border-bottom: 1px solid #083555;

  background-color: #083555;

  align-items: center;
  /* centraliza verticalmente */
  width: 100%;

  display: flex;
  justify-content: center;
  /* centraliza o .navegacao */
}

.layout-cabecalho--home {
  /* usando */
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}

/*--------------------*\
  MENU
\*--------------------*/

/* BOTÕES ------------------------------------------------------- */

/* estilo base para QUALQUER botão do menu */
.menu-btn {
  width: 140px;
  height: 43px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 10px;
  border-radius: 6px;
  border: 1px solid #BCD1DB;
  background-color: transparent;
  color: #BCD1DB;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

/* links “comuns” do menu (O desafio, Como funciona, etc.) */
.menu-btn-common {
  border: none;
}

/* CTA “Acesse” */
.menu-btn--primary {
  border: 1px solid #BCD1DB;
}

/* hover */
.menu-btn:hover {
  background-color: #09273C;
  color: #BCD1DB;
  text-decoration: none;
}

.menu-btn--primary {
  min-width: 164px;
  height: 43px;
}


/*--------------------*\
  HERO MASTER / CAPA
\*--------------------*/

.hero-master-section {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;

  height: 552px;
  display: flex;
  display: flex;
  justify-content: center;
  /* centro horizontal */
  align-items: center;
  /* centro vertical */
  padding: 80px 16px 72px 0;

  background-image: url("../images/hero-master-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-master-overlay {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* centro horizontal */
}

.hero-master-inner {
  max-width: 644px;
  padding: 40px 40px;
  color: #ffffff;
  font-family: Montserrat, sans-serif;
}

.hero-master-logo {
  width: 162px;
  height: auto;
  margin-bottom: 24px;

  margin-left: auto;
  margin-right: auto;
  display: block;
}

/* TÍTULO PRINCIPAL */
.hero-master-title {
  margin: 0 0 24px 0;

  font-family: Montserrat, sans-serif;
  font-weight: 500;
  font-style: Medium;
  font-size: 32px;
  line-height: 120%;
  letter-spacing: -0.2%;

  text-align: center;
}

/* TEXTO DESCRITIVO */
.hero-master-subtitle {
  margin: 0 0 40px 0;

  font-weight: 500;
  font-style: Medium;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: -0.2%;

  text-align: center;
}

/* BOTÕES ------------------------------------------------------- */

.hero-master-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.hero-master-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border-radius: 6px;
  border: 1px solid #BCD1DB;
  background-color: transparent;
  color: #BCD1DB;
  font-size: 16px;
  font-weight: 500;
  font-style: Medium;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

/* diferenciar o primário */
.hero-master-btn--primary:hover,
.hero-master-btn--secondary:hover {
  background-color: #09273C;
  color: #BCD1DB;
  text-decoration: none;
}

/* ===============================
     MOBILE (até 768px)
=============================== */

@media (max-width: 768px) {

  .hero-master-section {
    height: auto;
    /* deixa a section crescer */
    min-height: 420px;
  }

  .hero-master-overlay {
    align-items: flex-start;
  }

  .hero-master-inner {
    padding: 32px 20px 40px 20px;
    max-width: 100%;
  }

  .hero-master-title {
    font-size: 24px;
  }

  .hero-master-subtitle {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .hero-master-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-master-btn {
    width: 100%;
    justify-content: center;
  }
}

/*--------------------*\
  O QUE ENTREGAMOS
\*--------------------*/
.our-delivery-section {
  max-width: 1280px;
  /* largura máxima */
  width: 100%;
  /* ocupa 100% até chegar em 1280px */
  margin: 0 auto;
  /* centraliza na tela */

  min-height: 490px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 72px 40px 72px 40px;
  background-color: #FFFFFF;
}

.our-delivery-inner {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
  color: #083555;
}

.our-delivery-title {
  margin: 0 0 40px 0;

  font-family: Montserrat, sans-serif;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 32px;
  line-height: 120%;
  letter-spacing: -0.2%;
  text-align: center;
}

/* GRID DAS ETAPAS ----------------------------------------------------- */

.our-delivery-steps {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 24px;
  flex-wrap: wrap;
}

.our-delivery-step {
  position: relative;
  max-width: 320px;
  width: 100%;
  text-align: left;
}

/* imagem da etapa */
.our-delivery-illustration {
  z-index: 1;
  margin-bottom: 24px;
}

.our-delivery-illustration img {
  height: auto;
}

/* Título da etapa */
.our-delivery-step-title {
  margin: 0 0 12px 0;
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  /* SemiBold */
  font-size: 18px;
  line-height: 120%;
  letter-spacing: -0.2%;
  color: #083555;
}

/* Texto da etapa */
.our-delivery-step-text {
  margin: 0;
  font-family: Montserrat, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: -0.2%;
  color: #1A1A1A;
}

/* ===============================
     MOBILE (até 768px)
=============================== */

@media (max-width: 768px) {

  .our-delivery-section {
    padding: 56px 24px 56px 24px;
    min-height: auto;
  }

  .our-delivery-title {
    margin-bottom: 32px;
    font-size: 28px;
  }

  .our-delivery-steps {
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }

  .our-delivery-step {
    max-width: 360px;
  }

  .our-delivery-illustration img {
    max-width: 120px;
  }
}


/*--------------------*\
  HERO / CAPA
\*--------------------*/

.hero-section {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;

  height: 552px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 80px 16px 72px 0;

  background-image: url("../images/hero-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-inner {
  max-width: 644px;
  padding: 40px 40px;
  color: #ffffff;
  font-family: Montserrat, sans-serif;
}

.hero-logo {
  width: 162px;
  height: auto;
  margin-bottom: 24px;
}

/* TÍTULO PRINCIPAL */
.hero-title {
  margin: 0 0 24px 0;

  font-family: Montserrat, sans-serif;
  font-weight: 500;
  font-style: Medium;
  font-size: 32px;
  line-height: 120%;
  letter-spacing: -0.2%;
}

/* TEXTO DESCRITIVO */
.hero-subtitle {
  margin: 0 0 40px 0;

  font-weight: 500;
  font-style: Medium;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: -0.2%;
}

/* BOTÕES ------------------------------------------------------- */

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border-radius: 6px;
  border: 1px solid #BCD1DB;
  background-color: transparent;
  color: #BCD1DB;
  font-size: 16px;
  font-weight: 500;
  font-style: Medium;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

/* diferenciar o primário */
.hero-btn--primary:hover,
.hero-btn--secondary:hover {
  background-color: #09273C;
  color: #BCD1DB;
  text-decoration: none;
}

/* ===============================
     MOBILE (até 768px)
=============================== */

@media (max-width: 768px) {

  .hero-section {
    height: auto;
    /* deixa a section crescer */
    min-height: 420px;
  }

  .hero-overlay {
    align-items: flex-start;
  }

  .hero-inner {
    padding: 32px 20px 40px 20px;
    max-width: 100%;
  }

  .hero-title {
    font-size: 24px;
  }

  .hero-subtitle {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-btn {
    width: 100%;
    justify-content: center;
  }
}

/*--------------------*\
  O DESAFIO
\*--------------------*/
.challenge-section {
  max-width: 1280px;
  /* largura máxima */
  width: 100%;
  /* ocupa 100% até chegar em 1280px */
  margin: 0 auto;
  /* centraliza na tela */

  min-height: 510px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 72px 40px 72px 40px;
  background-color: #F0F4F6;
}

.challenge-inner {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
  color: #083555;
}

/* TOPO: imagem + textos ----------------------------------------------- */

.challenge-top {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 40px;
}

/* BLOCO DA IMAGEM  ---------------------------------------------------- */

.challenge-media {
  position: relative;
  max-width: 588px;
  flex: 0 0 54%;
  border-radius: 12px;
  z-index: 0;
}

.challenge-media img {
  display: block;

  width: 100%;
  height: auto;
  object-fit: cover;
}

/* TEXTOS À DIREITA ---------------------------------------------------- */

.challenge-text {
  flex: 1;
  text-align: left;
}

.challenge-little-title {
  margin: 0 0 8px 0;
  font-family: Montserrat, sans-serif;
  font-style: SemiBold;
  font-weight: 600;
  font-size: 16px;
  color: #1A1A1A;
  line-height: 140%;
  letter-spacing: -0.2%;
}

.challenge-title {
  margin: 0 0 16px 0;
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 120%;
  letter-spacing: -0.2%;
  color: #083555;
}

.challenge-paragraph {
  margin: 0 0 12px 0;
  font-family: Montserrat, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #1A1A1A;
}

/* GRID DOS IMPACTOS --------------------------------------------------- */

.challenge-impacts-grid {
  display: flex;
  gap: 24px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.challenge-impact-card {
  flex: 1 1 0;
  min-width: 250px;
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 4px 4px 20px 0px #00000026;
  padding: 24px 24px 28px 24px;
  text-align: left;
}

.impact-title {
  margin: 0 0 12px 0;
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: -0.2%;
  color: #083555;
}

.impact-text {
  margin: 0;
  font-family: Montserrat, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: #1A1A1A;
}

/* ===============================
     MOBILE (até 768px)
=============================== */

@media (max-width: 768px) {

  .challenge-section {
    padding: 24px 16px 40px 16px;
    margin-bottom: 56px;
  }

  .challenge-top {
    flex-direction: column;
    gap: 24px;
  }

  .challenge-media::after {
    left: 12px;
    right: -12px;
    bottom: -16px;
    top: 16px;
  }

  .challenge-title {
    font-size: 24px;
  }

  .challenge-impacts-grid {
    flex-direction: column;
  }

  .challenge-impact-card {
    width: 100%;
  }
}

/*--------------------*\
  COMO FUNCIONA
\*--------------------*/
.how-works-section {
  max-width: 1280px;
  /* largura máxima */
  width: 100%;
  /* ocupa 100% até chegar em 1280px */
  margin: 0 auto;
  /* centraliza na tela */

  min-height: 510px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 72px 40px 72px 40px;
  background-color: #FFFFFF;
}

.how-works-inner {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
  color: #083555;
}

.how-works-title {
  margin: 0 0 40px 0;

  font-family: Montserrat, sans-serif;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 32px;
  line-height: 120%;
  letter-spacing: -0.2%;
  text-align: center;
}

/* GRID DAS ETAPAS ----------------------------------------------------- */

.how-works-steps {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 24px;
  flex-wrap: wrap;
}

.how-works-step {
  position: relative;
  max-width: 320px;
  width: 100%;
  text-align: center;
}

/* imagem da etapa */
.how-works-illustration {
  z-index: 1;
  margin-bottom: 24px;
}

.how-works-illustration img {
  height: auto;
}

/* Título da etapa */
.how-works-step-title {
  margin: 0 0 12px 0;
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  /* SemiBold */
  font-size: 18px;
  line-height: 120%;
  letter-spacing: -0.2%;
  color: #083555;
}

/* Texto da etapa */
.how-works-step-text {
  margin: 0;
  font-family: Montserrat, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: -0.2%;
  color: #1A1A1A;
}

/* ===============================
     MOBILE (até 768px)
=============================== */

@media (max-width: 768px) {

  .how-works-section {
    padding: 56px 24px 56px 24px;
    min-height: auto;
  }

  .how-works-title {
    margin-bottom: 32px;
    font-size: 28px;
  }

  .how-works-steps {
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }

  .how-works-step {
    max-width: 360px;
  }

  .how-works-illustration img {
    max-width: 120px;
  }
}


/*--------------------*\
  VALOR ENTREGUE
\*--------------------*/
.value-delivered-section {
  max-width: 1280px;
  /* largura máxima */
  width: 100%;
  /* ocupa 100% até chegar em 1280px */
  margin: 0 auto;
  /* centraliza na tela */

  min-height: 506px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 72px 40px 72px 40px;
  background-color: #F0F4F6;
}

.value-delivered-inner {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
  color: #083555;
}

.value-delivered-title {
  margin: 0 0 40px 0;

  font-family: Montserrat, sans-serif;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 32px;
  line-height: 120%;
  letter-spacing: -0.2%;
  text-align: center;
}

/* GRID DOS CARDS ----------------------------------------------------- */

.value-delivered-grid {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
}

/* CARD --------------------------------------------------------------- */

.value-card {
  width: 580px;
  max-width: 100%;
  height: 284px;
  padding: 24px;
  border-radius: 10px;
  background: #FFFFFF;
  box-shadow: 4px 4px 20px 0px #00000026;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.value-card-icon {
  flex-shrink: 0;
  margin-bottom: 24px;
}

.value-card-icon img {
  display: block;
  height: auto;
}

/* TÍTULO DO CARD ----------------------------------------------------- */

.value-card-title {
  margin: 0 0 12px 0;
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  /* SemiBold */
  font-size: 20px;
  line-height: 120%;
  letter-spacing: -0.2%;
  color: #083555;
}

/* TEXTO DO CARD ------------------------------------------------------ */

.value-card-text {
  margin: 0;
  font-family: Montserrat, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: -0.2%;
  color: #1A1A1A;
}

/* RESPONSIVO: EMPILHA OS CARDS NO MOBILE ---------------------------- */

@media (max-width: 768px) {

  .value-delivered-inner {
    padding: 48px 16px 56px 16px;
  }

  .value-delivered-title {
    margin-bottom: 32px;
    font-size: 28px;
  }

  .value-delivered-grid {
    flex-direction: column;
    align-items: center;
  }

  .value-card {
    width: 100%;
    /* ocupa toda a largura disponível */
    max-width: 100%;
    height: auto;
    /* deixa crescer conforme o texto */
    flex-direction: column;
    /* ícone em cima, texto embaixo */
  }

  .value-card-icon img {
    max-width: 72px;
  }
}

/*--------------------*\
  NOSSOS PRECOS
\*--------------------*/
.pricing-section {
  max-width: 1280px;
  /* largura máxima */
  width: 100%;
  /* ocupa 100% até chegar em 1280px */
  margin: 0 auto;
  /* centraliza na tela */

  min-height: 721px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 80px 16px 72px 16px;

  background-image: url("../images/precos-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.pricing-inner {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
  color: #ffffff;
}

.pricing-title {
  margin: 0 0 16px 0;

  font-weight: 600;
  font-style: SemiBold;
  font-size: 32px;
  line-height: 120%;
  letter-spacing: -0.2%;
  text-align: center;

}

.pricing-subtitle {
  margin: 0 0 78px 0;
  opacity: 0.9;

  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.2%;
  text-align: center;
}

/* GRID DOS CARDS ----------------------------------------------------- */

.pricing-grid {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
}

/* CARD BASE ----------------------------------------------------------- */

.pricing-card {
  background-color: #F0F4F6;
  color: #0b2a3b;
  border-radius: 12px;
  border: 2px solid #769BAE;
  box-shadow: 4px 4px 20px 0px #00000040;
  padding: 32px 32px 32px;
  flex: 1 1 0;
  max-width: 360px;
  position: relative;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.pricing-plan-title {
  color: #040404;
  font-weight: 700;
  font-style: Bold;
  font-size: 24px;
  line-height: 120%;
  letter-spacing: -0.2%;
  text-align: center;
  margin-bottom: 32px;
}

/* PREÇO --------------------------------------------------------------- */

.pricing-price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-bottom: 32px;
}

.pricing-price .currency .period {
  color: #083555;

  font-family: Montserrat;
  font-weight: 500;
  font-style: Medium;
  font-size: 12px;
  line-height: 125%;
  letter-spacing: -0.2%;
  text-align: center;

}

.pricing-price .amount {
  color: #083555;

  font-family: Montserrat;
  font-weight: 700;
  font-style: Bold;
  font-size: 48px;
  line-height: 120%;
  letter-spacing: -0.2%;
  text-align: center;
}

/* LISTA DE BENEFÍCIOS ------------------------------------------------ */

.pricing-features {
  list-style: disc;
  padding-left: 20px;
  margin: 0 0 32px 0;

  color: #1a1a1a;
  font-family: Montserrat;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: -0.2%;
}

/* BOTÃO --------------------------------------------------------------- */

.pricing-cta {
  margin-top: auto;
  align-self: center;
  padding: 12px 28px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;

  background-color: #15526E;
  color: #ffffff;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

.pricing-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  background-color: #577B8E;
  opacity: 0.95;
}

/* CARD DESTACADO (“RECOMENDADO”) ------------------------------------- */

.pricing-card--featured {
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.pricing-card--featured::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 14px;
  border: 2px solid #8fb1c4;
  /* “halo” em volta do card */
  z-index: -1;

}

/* TAG ACIMA DO CARD (controlada via classe) */
.pricing-card--featured .pricing-badge {
  max-width: 360px;
  width: 102%;
  height: 40px;
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;

  border: 2px solid #769BAE;
  background: linear-gradient(180deg, #a8c4d3 0%, #7e9eb0 100%);
  color: #040404;
  padding: 10px;
  border-radius: 12px 12px 0 0;

  font-family: Montserrat;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: -0.2%;
  text-align: center;
}

/* ====================================
     NOSSOS PREÇOS - MOBILE (até 768px)
======================================= */

@media (max-width: 768px) {

  /* Seção com menos padding em tela pequena */
  .pricing-section {
    padding: 48px 16px 48px 16px;
    min-height: auto;
    /* deixa a altura fluir conforme o conteúdo */
  }

  /* Título e subtítulo continuam centralizados, mas com menos espaço */
  .pricing-title {
    font-size: 28px;
    margin-bottom: 12px;
  }

  .pricing-subtitle {
    margin-bottom: 40px;
  }

  /* GRID: empilha os cards um embaixo do outro */
  .pricing-grid {
    flex-direction: column;
    align-items: center;
    /* centraliza os cards */
    gap: 24px;
    /* espaço entre eles */
  }

  /* Cada card ocupa praticamente a largura toda */
  .pricing-card {
    max-width: 100%;
    width: 100%;
  }

  /* Badge "Recomendado" com fluxo normal */
  .pricing-card--featured .pricing-badge {
    position: static;
    transform: none;
    width: 100%;
    max-width: 100%;
    border-radius: 12px 12px 12px 12px;
    margin-bottom: 20px;
    /* encosta no card */

    z-index: 2;
    /* garante que fique acima da borda do card */
  }

  .pricing-card--featured {
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
  }
}



/*--------------------*\
  RODAPÉ
\*--------------------*/

.layout-footer {
  padding-top: 40px;
  background-color: #083555;
  color: #fff;
}

/* Linha principal do footer */
.footer-content {
  display: flex;
  gap: 24px;
  margin-bottom: 30px;
}


/* COLUNA ESQUERDA (logo) – 588px */
.footer-left {
  width: 588px;
  display: flex;
  align-items: flex-start;
}

/* COLUNA DIREITA – duas colunas de 282px */
.footer-right {
  display: flex;
  gap: 24px;
}

/* ------------ COLUNAS INDIVIDUAIS 282px ------------ */
.footer-col-navegacao,
.footer-col-contato {
  width: 282px;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.footer-title {
  font-weight: 700;
  font-size: 24px;
  height: 60px;
  display: flex;
  align-items: center;
  margin: 0;
}

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

.footer-col-navegacao li {
  margin-top: 16px;
}

.footer-col-navegacao a {
  color: #BCD1DB;
  text-decoration: none;
  font-size: 16px;
}

.email {
  margin-top: 16px;
  display: block;
  color: #BCD1DB;
  font-size: 16px;
}

.footer-bottom {
  text-align: left;
  font-size: 13px;
  color: #BCD1DB;

  border-top: 1px solid #577B8E;

  height: 94px;
  display: flex;
  align-items: center;
  margin-top: 32px;
}


/* ===============================
     MOBILE (até 768px)
=============================== */

@media (max-width: 768px) {

  /* Organiza o container principal em coluna */
  .footer-content {
    flex-direction: column;
    gap: 32px;
    /* mais espaçamento proporcional à versão mobile */
  }

  /* A logo ocupa 100% do espaço */
  .footer-left {
    width: 100%;
    justify-content: left;
  }

  /* A coluna da direita vira duas colunas lado a lado */
  .footer-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    gap: 32px;
  }

  .email {
    font-size: 14px;
    margin-top: 6px;
  }

  /* Cada coluna fica com 50% */
  .footer-col-navegacao,
  .footer-col-contato {
    width: 100%;
  }

  /* Títulos se mantêm */
  .footer-title {
    height: auto;
    margin-bottom: 6px;
  }

  /* Deixar o bottom alinhado ao centro no mobile */
  .footer-bottom {
    justify-content: center;
    text-align: center;
    height: auto;
    padding: 24px 0;
  }
}

/* ============================
   CORREÇÃO GLOBAL - MOBILE
=============================== */

* {
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden !important;
}