/* ===================================
           VARIÁVEIS GLOBAIS
           =================================== */
:root {
  /* Cores Principais */
  --cor-primaria: #1a7db2;
  --cor-secundaria: #051b46;
  --cor-acentuada: #58b4e6;
  --cor-perigo: #9f1239;

  /* Cores de Fundo e Texto */
  --bg-claro: #f5f8ff;
  --bg-medio: #fce7f3;
  --bg-extra-claro: #f3e8ff;
  --texto-escuro: #1f2937;
  --texto-medio: #4b5563;
  --texto-claro: #6b7280;
  --branco: #ffffff;

  /* Imagens */
  --img-hero: url("https://images.unsplash.com/photo-1522202176988-66273c2fd55f?w=1600&h=900&fit=crop");

  /* Gradientes Reutilizáveis */
  --gradiente-linear: linear-gradient(
    135deg,
    var(--cor-primaria) 0%,
    var(--cor-secundaria) 100%
  );
  --gradiente-fundo: linear-gradient(
    135deg,
    var(--bg-claro) 0%,
    var(--bg-medio) 50%,
    var(--bg-extra-claro) 100%
  );
  --gradiente-overlay: linear-gradient(
    135deg,
    rgba(16, 73, 104, 0.9) 5%,
    rgba(4, 18, 46, 0.9) 95%
  );
  --gradiente-footer: linear-gradient(
    135deg,
    var(--cor-acentuada) 0%,
    var(--cor-perigo) 100%
  );
}

/* ===================================
           RESET E CONFIGURAÇÕES GLOBAIS
           =================================== */

* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(
    135deg,
    var(--bg-medio) 0%,
    var(--bg-extra-claro) 100%
  );
  color: var(--texto-escuro);
  line-height: 1.6;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

hr {
  color: rgba(43, 52, 59, 0.118);
}
/* ===================================
           CLASSES UTILITÁRIAS PARA IMAGENS
           =================================== */

.imagem-base {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.imagem-conter {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.imagem-circular {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.imagem-card {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.5rem;
  display: block;
}

/* ===================================
           NAVEGAÇÃO (HEADER)
           =================================== */

.botao-contratar-agr {
  display: inline-flex;
}
.alternador-menu {
  display: none;
}
.navegacao {
  background: rgba(255, 255, 255);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.container-navegacao {
  max-width: 1280px;
  height: 30px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--gradiente-linear);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.links-navegacao {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.links-navegacao a {
  text-decoration: none;
  color: var(--texto-medio);
  font-weight: 500;
  transition: color 0.3s;
}

.links-navegacao a:hover {
  color: var(--cor-primaria);
}

.botao-primario {
  background: var(--gradiente-linear);
  color: var(--branco);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}

.botao-primario:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(147, 51, 234, 0.3);
}

.container-navegacao {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/* Menu fechado */
.links-navegacao {
  position: absolute;
  top: 100%;
  right: 0;

  background-color: #fff;
  list-style: none;

  display: none;
  flex-direction: column;
  gap: 1rem;

  padding: 1.5rem;
  min-width: 200px;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
}

/* Menu aberto */
.links-navegacao.ativo {
  display: flex;
}

/* Mobile */
@media (max-width: 768px) {
  .botao-contratar-agr {
    display: none;
  }

  .alternador-menu {
    border: none;
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media (min-width: 769px) {
  .alternador-menu {
    display: none;
  }

  .links-navegacao {
    position: static;
    display: flex !important;
    flex-direction: row;
    box-shadow: none;
    padding: 0;
    gap: 2rem;
  }
}

/* ===================================
           SEÇÃO HERO (PRINCIPAL)
   =================================== */

.secao-hero {
  background-image: var(--gradiente-overlay), var(--img-hero);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  max-width: 100%;
  margin: 0;
  padding: 8rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  position: relative;
}

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

.conteudo-hero {
  animation: animacao-aparecer 0.8s ease-out;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  color: var(--branco);
}

.etiqueta {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: var(--branco);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.secao-hero h1 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.texto-gradiente {
  font-weight: 900;
  /* Gradiente vibrante */
  background: linear-gradient(to right, #8f79ff, #48e9ec);

  /* Aplica o gradiente ao texto */
  -webkit-background-clip: text;
  background-clip: text;

  /* Remove a cor sólida para revelar o gradiente */
  -webkit-text-fill-color: transparent;

  /* Fallback para navegadores antigos */
  color: #4124d1;

  /* Substituímos o text-shadow por drop-shadow para não afetar a transparência do preenchimento */
  filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.2));
}

.secao-hero p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.botoes-hero {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  justify-content: center;
}

.botao-secundario {
  background: rgba(255, 255, 255, 0.1);
  color: var(--branco);
  padding: 0.75rem 2rem;
  border-radius: 25px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
  backdrop-filter: blur(10px);
}

.botao-secundario:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--branco);
}

.estatisticas {
  display: flex;
  align-items: center;
  gap: 2rem;
  justify-content: center;
}

.avatares {
  display: flex;
  margin-left: -0.5rem;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--branco) 0%, #f3f4f6 100%);
  border: 3px solid rgba(255, 255, 255, 0.5);
  margin-left: -0.5rem;
}

.texto-estatistica {
  font-weight: 700;
  color: var(--texto-escuro);
}

.texto-estatistica-claro {
  font-weight: 700;
  color: white;
}

.label-estatistica {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
}

/* ===================================
           SEÇÃO DE BENEFÍCIOS (FAIXA ROXA)
           =================================== */

.secao-beneficios {
  background: var(--gradiente-linear);
  padding: 4rem 2rem;
}

.container-beneficios {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.item-beneficio {
  text-align: center;
  color: var(--branco);
  transition: transform 0.3s;
}

.item-beneficio:hover {
  transform: scale(1.05);
}

.icone-beneficio {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
}

.item-beneficio h3 {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.item-beneficio p {
  font-size: 0.875rem;
  color: var(--bg-extra-claro);
}

/* ===================================
           SEÇÃO DE BUSCA
           =================================== */

.secao-busca {
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.titulo-secao {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.subtitulo-secao {
  text-align: center;
  color: var(--texto-claro);
  margin-bottom: 2rem;
}

.caixa-busca {
  max-width: 600px;
  margin: 0 auto 4rem;
  position: relative;
}

.input-busca {
  width: 100%;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  border: 2px solid var(--bg-medio);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s;
}

.input-busca:focus {
  border-color: var(--cor-primaria);
}

.botao-busca {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  background: var(--gradiente-linear);
  color: var(--branco);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.botao-busca:hover {
  box-shadow: 0 5px 15px rgba(147, 51, 234, 0.4);
}

.grid-beneficios {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.card-beneficio {
  background: var(--branco);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.card-beneficio:hover {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.cabecalho-card-beneficio {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.icone-card-beneficio {
  width: 40px;
  height: 40px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
}

.icone-roxo-claro {
  background: linear-gradient(
    135deg,
    var(--bg-extra-claro) 0%,
    var(--bg-medio) 100%
  );
}

.icone-rosa-claro {
  background: linear-gradient(
    135deg,
    var(--bg-medio) 0%,
    var(--bg-extra-claro) 100%
  );
}

.card-beneficio h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.card-beneficio p {
  color: var(--texto-claro);
  margin-bottom: 1rem;
}

.lista-beneficios {
  list-style: none;
}

.lista-beneficios li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--texto-medio);
  margin-bottom: 0.5rem;
}

.icone-check {
  color: var(--cor-primaria);
  font-weight: 700;
}

/* ===================================
           SEÇÃO DE CURSOS
           =================================== */

.secao-cursos {
  background: linear-gradient(
    135deg,
    var(--bg-extra-claro) 0%,
    var(--bg-medio) 100%
  );
  padding: 5rem 2rem;
}

.container-cursos {
  max-width: 1280px;
  margin: 0 auto;
}

.grid-cursos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.card-curso {
  background: var(--branco);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.card-curso:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.imagem-curso {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.card-curso:hover .imagem-curso .imagem-base {
  transform: scale(1.1);
}

.imagem-curso .imagem-base {
  transition: transform 0.3s;
}

.preco-curso {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--branco);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: 700;
  color: var(--cor-primaria);
}

.conteudo-curso {
  padding: 1.5rem;
}

.titulo-curso {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.instrutor-curso {
  color: var(--texto-claro);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.meta-curso {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.avaliacao-curso {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.estrela {
  color: #fbbf24;
}

.alunos-curso {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--texto-claro);
  font-size: 0.875rem;
}

.alinhamento-botoes {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-content: center;
  padding-top: 5%;
  gap: 2.5rem;
}

.botao-matricula {
  width: 42%;
  background: var(--gradiente-linear);
  color: var(--branco);
  padding: 0.875rem;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.botao-matricula:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(147, 51, 234, 0.4);
}

.botao-saiba-mais {
  width: 42%;
  background: var(--branco);
  color: var(--gradiente-linear);
  padding: 0.875rem;
  border-style: solid;
  border-width: 3px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.botao-saiba-mais:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(147, 51, 234, 0.4);
}

/* ===================================
           SEÇÃO PROFESSOR
           =================================== */

.secao-professor {
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.card-professor {
  background: var(--gradiente-linear);
  border-radius: 2rem;
  padding: 3rem;
  box-shadow: 0 20px 60px rgba(147, 51, 234, 0.4);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.conteudo-professor {
  color: var(--branco);
}

.conteudo-professor h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.conteudo-professor p {
  font-size: 1.125rem;
  color: var(--bg-extra-claro);
  margin-bottom: 2rem;
}

.lista-professor {
  list-style: none;
  margin-bottom: 2rem;
}

.lista-professor li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.botao-branco {
  background: var(--branco);
  color: var(--cor-primaria);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  border: none;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-block;
  text-decoration: none;
}

.botao-branco:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.imagem-professor {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.container-imagem-professor {
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 1.5rem;
}

/* ===================================
           SEÇÃO DEPOIMENTOS
           =================================== */

.secao-depoimentos {
  background: linear-gradient(
    135deg,
    var(--bg-medio) 0%,
    var(--bg-extra-claro) 100%
  );
  padding: 5rem 2rem;
}

.container-depoimentos {
  max-width: 1280px;
  margin: 0 auto;
}

.grid-depoimentos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.card-depoimento {
  background: var(--branco);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.card-depoimento:hover {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.cabecalho-depoimento {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.container-avatar-depoimento {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 4px solid var(--bg-medio);
  overflow: hidden;
  flex-shrink: 0;
}

.autor-depoimento h4 {
  font-weight: 700;
  color: var(--texto-escuro);
}

.autor-depoimento p {
  color: var(--texto-claro);
  font-size: 0.875rem;
}

.estrelas-depoimento {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.texto-depoimento {
  color: var(--texto-medio);
  line-height: 1.7;
}

/* ===================================
           RODAPÉ (FOOTER) - CORRIGIDO
           =================================== */

footer {
  background: var(--cor-secundaria);
  color: var(--branco);
  padding: 3rem 0; /* Padding lateral zero para o fundo encostar */
  width: 100vw; /* Força a largura da janela visual */
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  margin-bottom: -50vw;
}

.container-rodape {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem; /* O respiro do texto fica aqui dentro */
}

.conteudo-rodape {
  display: grid;
  /* Melhora a distribuição das colunas */
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.secao-rodape h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--branco);
}

.secao-rodape p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.6;
}

.links-rodape {
  list-style: none;
}

.links-rodape li {
  margin-bottom: 0.75rem;
}

.links-rodape a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
}

.links-rodape a:hover {
  color: var(--cor-acentuada);
  padding-left: 5px; /* Efeito de hover elegante */
}

/* Newsletter Corrigida */
.newsletter {
  display: flex;
  flex-direction: column; /* Empilha em telas menores para não quebrar */
  gap: 0.75rem;
  margin-top: 1rem;
}

.input-newsletter {
  width: 100%;
  padding: 0.875rem 1.25rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: var(--branco);
  outline: none;
}

.input-newsletter::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.botao-newsletter {
  background: var(--cor-primaria);
  color: var(--branco);
  padding: 0.875rem 1.5rem;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}

.botao-newsletter:hover {
  background: var(--cor-acentuada);
  transform: translateY(-2px);
}

.rodape-inferior {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

/* Ajuste de responsividade para a newsletter */
@media (min-width: 1024px) {
  .newsletter {
    flex-direction: row;
  }
}

/* ===================================
           ANIMAÇÕES
           =================================== */

@keyframes animacao-aparecer {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===================================
           MEDIA QUERIES (RESPONSIVIDADE)
           =================================== */

@media (max-width: 768px) {
  .links-navegacao {
    display: none;
  }

  .alternador-menu {
    display: block;
  }

  .secao-hero {
    padding: 4rem 1rem;
    min-height: 60vh;
  }

  .secao-hero h1 {
    font-size: 2rem;
  }

  .botoes-hero {
    flex-direction: column;
  }

  .botao-responsivo {
    width: 70%;
  }

  .container-beneficios {
    grid-template-columns: 1fr 1fr;
  }

  .card-professor {
    grid-template-columns: 1fr;
  }

  .titulo-secao {
    font-size: 2rem;
  }

  .conteudo-professor h2 {
    font-size: 2rem;
  }

  .container-imagem-professor {
    height: 300px;
  }
}

@media (max-width: 480px) {
  body {
    width: 100vw;
  }
  .container-beneficios {
    grid-template-columns: 1fr;
  }

  .card-benefic {
    width: 90%;
  }
  .secao-busca {
    max-width: 100vw;
    margin: 10px;
    padding: 3%;
  }
}

@media (max-width: 450px) {
  .secao-busca {
    max-width: 100vw;
    margin: 10px;
    padding: 3%;
  }
  .secao-professor {
    max-width: 100vw;
    margin: 30x;
    padding: 3%;
    font-size: 18px;
  }
  .conteudo-professor h2 {
    font-size: 18pt;
  }

  .conteudo-professor p {
    font-size: 12pt;
  }
  .conteudo-professor .botao-branco {
    text-align: center;
    font-size: 14pt;
  }
  .card-professor {
    width: 70%;
    padding: 15%;
  }
}

/* =====================================
   MEDIA QUERIES — MOBILE FIRST
   ===================================== */

/* 📱 Celulares pequenos (até 360px) */
@media (max-width: 360px) {
  .logo {
    font-size: 1.2rem;
  }

  .alternador-menu {
    font-size: 1.6rem;
  }

  .links-navegacao {
    padding: 1.5rem 1rem;
    gap: 1.2rem;
  }

  .botao-mobile {
    font-size: 0.95rem;
    padding: 0.8rem;
  }
}

/* 📱 Celulares médios (361px - 480px) */
@media (min-width: 361px) and (max-width: 480px) {
  .logo {
    font-size: 1.3rem;
  }

  .alternador-menu {
    font-size: 1.8rem;
  }

  .links-navegacao {
    padding: 2rem 1.5rem;
  }
}

/* 📱 Celulares grandes (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
  .logo {
    font-size: 1.5rem;
  }

  .links-navegacao {
    padding: 2.5rem;
  }

  .botao-mobile {
    font-size: 1.05rem;
  }
}

/* 📲 Tablets em modo retrato (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .container-navegacao {
    padding: 1.5rem 3rem;
  }

  .links-navegacao {
    gap: 2rem;
  }

  .links-navegacao a {
    font-size: 1.05rem;
  }
}

/* 🖥️ Desktop (1025px +) */
@media (min-width: 1025px) {
  .alternador-menu {
    display: none;
  }

  .links-navegacao {
    display: flex !important;
    position: static;
    flex-direction: row;
    background: transparent;
    box-shadow: none;
    padding: 0;
  }
}
