/* ==== MENU DESKTOP ==== */
@media (min-width: 992px) {
  .menu-sticky {
    height: 90px;
  }
  .menu-container {
    max-width: 1920px;
  }
  .menu-col-logo {
    width: 30%;
    height: 90px;
    align-items: flex-start;
    justify-content: center;
    padding-top: 4px;
  }
  .menu-col-items {
    width: 70%;
  }

  .overlay-conteudo {
    padding: 2rem;
  }
  .overlay-conteudo h2.titulo-principal {
    font-size: 2.5rem;
  }

  .titulo-institucional {
    font-size: 3rem;
  }

  .certificacao-container {
    padding: 60px 20px;
  }

  .divisoria-faixa-alta {
    height: 9px;
  }

  .hero-carousel .swiper-slide {
    padding-bottom: 0;
  }

  .conteudo-banner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding-left: 4rem; /* corrigido */
    padding-right: 2rem;
  }

  .bloco-titulo,
  .bloco-texto,
  .bloco-botao {
    text-align: left;            /* corrigido */
    display: flex;
    align-items: flex-start;     /* corrigido */
    justify-content: center;
  }

 .bloco-titulo {
  height: 25%;
  display: flex;
  align-items: center;      /* centraliza verticalmente */
  justify-content: flex-start; /* alinha à esquerda */
}

  .bloco-texto {
    height: 50%;
  }

  .bloco-texto p {
    width: 100%;                 /* corrigido */
    margin: 0;
  }

  .bloco-botao {
  height: 25%;
  display: flex;
  align-items: center; /* ← isso centraliza verticalmente */
  justify-content: flex-start;
}

  .bloco-botao a {
    width: 40%;
    min-width: 200px;
  }
}

/* ==== TEXTOS DO CARROSSEL EM RESOLUÇÕES DESKTOP ==== */
@media (min-width: 992px) and (max-width: 1440px) {
  .titulo-banner {
    font-size: calc(1.5rem + 1vw); /* +50% */
  }

  .texto-banner {
    font-size: calc(1.05rem + 0.5vw); /* +20% */
    font-weight: 700;
    margin-bottom: 1rem;
  }

  .btn-gradiente {
    font-size: calc(0.8rem + 0.5vw);
    padding: 0.6rem 1.2rem;
    min-width: 200px;
  }
}

@media (min-width: 1441px) and (max-width: 1920px) {
  .titulo-banner {
    font-size: calc(2.25rem + 1vw); /* +50% */
  }

  .texto-banner {
    font-size: calc(1.2rem + 0.5vw); /* +20% */
    font-weight: 700;
  }

  .btn-gradiente {
    font-size: calc(0.9rem + 0.5vw);
    padding: 0.75rem 1.5rem;
    min-width: 200px;
  }
}

@media (min-width: 1921px) and (max-width: 3839px) {
  .titulo-banner {
    font-size: calc(3rem + 1vw); /* +50% */
  }

  .texto-banner {
    font-size: calc(1.35rem + 0.5vw); /* +20% */
    font-weight: 700;
  }

  .btn-gradiente {
    font-size: calc(1rem + 0.5vw);
    padding: 0.75rem 2rem;
    min-width: 200px;
  }
}

@media (min-width: 3840px) {
  .titulo-banner {
    font-size: 7.5rem; /* +50% */
  }

  .texto-banner {
    font-size: 3rem; /* +20% */
    font-weight: 700;
  }

  .btn-gradiente {
    font-size: 2rem;
    padding: 1.5rem 3rem;
    min-width: 200px;
  }
}





