@import url("https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100..900;1,100..900&family=Orbitron:wght@400..900&family=Rajdhani:wght@300;400;500;600;700&display=swap");

:root {
  --verde: #00d5ab;
  --azul-escuro: #002233;
  --cinza-escuro: #252525;
  --fonte01: "Orbitron";
  --fonte02: "Exo 2";
  --fonte03: "Rajdhani";
}

/* Estilos básicos para a página */
body {
  margin: 0;
  font-family: sans-serif;
  overflow-x: hidden;
  width: auto;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

header img {
  width: 180px;
  height: 180px;

  margin-top: -2.1rem;
  margin-left: 1rem;
}

.cabecalho2 {
  display: none;
}

/* --- Estilização do Botão Hambúrguer --- */
.menu-hamburguer {
  /* Posicionamento Fixo no canto superior direito */
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000; /* Garante que fique acima de tudo */

  /* Estilo visual */
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 60px;
  height: 40px;
}

.line {
  display: block;
  width: 100%;
  height: 10px;
  background-color: var(--verde);
  border-radius: 17px;
  margin-bottom: 5px;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

/* --- Animação do Hambúrguer para o 'X' --- */

/* Linha 1: Roda 45 graus (diagonal de cima para baixo) */
.menu-hamburguer.active .line-1 {
  transform: translateY(16px) rotate(45deg);
}

/* Linha 2: Desaparece (opacidade zero) */
.menu-hamburguer.active .line-2 {
  opacity: 0;
}

/* Linha 3: Roda -45 graus (diagonal de baixo para cima) */
.menu-hamburguer.active .line-3 {
  transform: translateY(-9px) rotate(-45deg);
}

/* --- Estilização da Barra Lateral (Sidebar) --- */
.sidebar {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 150px;
  background-color: #2c3e50;
  z-index: 999;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);

  /* Estado inicial: Escondida fora da tela à direita (100% da sua largura) */
  transform: translateX(100%);

  /* Transição para o slide suave */
  transition: transform 0.3s ease-in-out;

  font-size: 16px;
  font-family: var(--fonte01);
}

/* Estado ativo: Traz a barra lateral para a posição inicial (0%) */
.sidebar.active {
  transform: translateX(0);
}

/* Estilos de navegação dentro da sidebar */
.sidebar ul {
  list-style: none;
  padding: 70px 0 0 0; /* Espaço para o botão hambúrguer */
  margin: 0;
}

.sidebar a {
  display: block;
  padding: 15px 20px;
  text-decoration: none;
  color: #fff;
  font-size: 1.1em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar a:hover {
  background-color: #34495e;
}

/* BTN Saiba Mais */

.btn_saiba_mais {
  font-size: 14px;
  font-family: var(--fonte02);
  font-weight: 600;

  padding: 12px 50px;

  color: var(--azul-escuro);
  background-color: var(--verde);

  border-radius: 21px;

  text-decoration: none;
  text-shadow: none;
}

.div_btn_saiba_mais {
  margin-top: 4rem;
  text-align: center;
}

.weight_medio {
  font-weight: 550;
}

.barra_abaixo {
  display: inline-block;
  position: relative;
}

.barra_abaixo::after {
  content: "";
  display: block;
  width: 100%;
  height: 5px;
  background-color: var(--verde);
  border-radius: 10px;
  margin: 4px auto 0;
}

.rodape01 {
  background-color: var(--cinza-escuro);
  text-align: center;
  padding: 2rem 0;
}

.rodape01 img {
  margin-top: -1rem;
  width: 292px;
  height: 292px;
}

.rodape01 p {
  font-size: 24px;
  font-weight: 200;
  font-family: var(--fonte02);
  color: #fff;
  text-align: left;

  padding: 0 20px;

  line-height: 29px;

  margin-bottom: 2rem;
}

.rodape01 h3 {
  font-size: 36px;
  font-weight: 500;
  font-family: var(--fonte02);

  line-height: 29px;
  color: #fff;
}

.paginas_rodape {
  display: flex;
  flex-direction: column;

  margin-top: 4rem;
  text-align: left;
}

.paginas_rodape a {
  text-decoration: none;
  color: #fff;
  font-size: 24px;
  font-weight: 300;
  font-family: var(--fonte02);
  margin-bottom: 2rem;
  margin-left: 2rem;
}

.encontrar_rodape {
  padding-top: 4rem;
}

.redes_sociais_rodape {
  padding-top: 5rem;
  padding-bottom: 2rem;
  display: flex;
  justify-content: space-around;
}

.encontrar_rodape img {
  width: 40px;
  height: 40px;
}

.encontrar_rodape a {
  text-decoration: none;
}

.rodape02 {
  background-color: #2e2e2e;
  color: #fff;

  text-align: center;

  font-size: 28px;
  font-family: var(--fonte03);
  line-height: 36px;

  padding: 30px;
  margin: 0;
}

@media (min-width: 768px) {
  .cabecalho2 {
    display: block;

    margin-top: 2rem;
  }

  .cabecalho2 ul {
    display: flex;
    align-items: center;
  }

  .cabecalho2 li {
    margin-left: 3rem;
  }

  .cabecalho2 a {
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    font-family: var(--fonte01);
    font-weight: bold;
  }

  .cabecalho2 button {
    font-size: 20px;
    font-family: var(--fonte02);
    font-weight: 500;

    padding: 8px 20px;

    color: var(--azul-escuro);
    background-color: var(--verde);

    border-radius: 21px;
    border: none;

    text-decoration: none;
    text-shadow: none;
  }

  .menu-hamburguer {
    display: none;
  }

  .rodape01 {
    display: flex;
  }

  .rodape01 div {
    width: 30%;
  }

  .rodape01 img {
    width: 250px;
  }

  .rodape01 p {
    font-size: 20px;
  }

  .encontrar_rodape {
    padding-top: 12rem;
  }

  .encontrar_rodape h3 {
    line-height: 45px;
  }

  .redes_sociais_rodape img {
    width: 40px;
    height: auto;
    margin-left: 1rem;
  }
}

@media (min-width: 1024px) {
  .cabecalho2 button {
    font-size: 24px;
  }

  .btn_saiba_mais {
    font-size: 30px;
  }
}

@media (min-width: 1280px) {
  .cabecalho {
    justify-content: space-between;
  }

  .rodape01 {
    text-align: left;
  }

  .rodape01 img {
    width: 250px;
    height: auto;
    margin-left: 3rem;
  }

  .encontrar_rodape {
    padding-top: 4rem;
    margin-left: 2rem;
  }

  .paginas_rodape {
    margin-top: 8rem;
    width: auto !important;
  }

  .redes_sociais_rodape {
    margin-top: 4rem;
  }

  .redes_sociais_rodape img {
    width: 40px;
    height: auto;
    margin-right: 1.5rem;
    margin-left: 1rem;
  }

  .rodape01 div {
    width: 33%;
  }

  .paginas_rodape a {
    margin-left: 0;
  }
}
