body {
    background-image: url("images/background.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;

    min-height: 100vh;
    display: flex;
    flex-direction: column;

    justify-content: flex-start;
    align-items: center;

    margin: 0;
}

@font-face {
    font-family: "FonteTitle";
    src: url("fonts/blowbrush.eot");
    src:
        url("fonts/blowbrush.eot?#iefix") format("embedded-opentype"),
        url("fonts/blowbrush.woff2") format("woff2"),
        url("fonts/blowbrush.woff") format("woff"),
        url("fonts/blowbrush.ttf") format("truetype"),
        url("fonts/blowbrush.otf") format("opentype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Fonte";
    src: url("fonts/HelloMissDi.eot");
    src:
        url("fonts/HelloMissDi.eot?#iefix") format("embedded-opentype"),
        url("fonts/HelloMissDi.woff2") format("woff2"),
        url("fonts/HelloMissDi.woff") format("woff"),
        url("fonts/HelloMissDi.ttf") format("truetype"),
        url("fonts/HelloMissDi.otf") format("opentype");
    font-weight: normal;
    font-style: normal;
}

.ImagensEsquerda,
.ImagensDireita {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 100px;
  z-index: 1;
}

.ImagensEsquerda {
  left: 30px;
}

.ImagensDireita {
  right: 30px;
}

.ImagensEsquerda img,
.ImagensDireita img {
  width: 130px;
  height: auto;
}


.caixa-bemvindos {
  width: 80%;
  max-width: 600px;
  margin: 30px auto;
  padding: 15px;

  background-color: black;
  border: 1px solid #A80500;
  border-radius: 8px;
}


.caixa-bemvindos h2 {
  color: #A80500;
  font-family: 'FonteTitle';
  margin-top: 0;
  font-size: 35px;
  text-align: center;
  margin-bottom: 6px;
}

.caixa-bemvindos p {
  margin-top: 0;
  color: #A80500;
  font-family: 'Fonte';
  font-size: 20px;
  line-height: 1.4;
  text-align: center;
}

.titulo {
    margin: 10px;
    margin-bottom: 10px;
    text-align: center;
}

.titulo img {
    width: 650px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.imagensMenu {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.imagensMenu img {
    margin: 15px;
    border: 3px solid darkred;
    height: 220px;
    width: auto;
    align-items: center;
}

.nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 50px;
}

.nav a:hover img {
    opacity: 0.7;
}

.nav img {
    width: 100px;
    height: auto;
}

.nav a {
  font-family: 'FonteTitle';
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #A80500;
  font-size: 25px;
  gap: 6px;
}

.tabs {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 20px;
}

.tab-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;

    text-decoration: none;
}

.tab-btn span {
    font-family: "FonteTitle";
    font-size: 20px;
    color: #A80500;
    text-shadow: 1px 1px 3px black;
}

.tab-btn img {
    width: 80px;
    height: auto;
    image-rendering: pixelated;
}

.tab-btn.active img {
    filter: brightness(1.2);
}

.tab-btn:hover img {
    opacity: 0.85;
}

.tab-content {
    display: none;
    margin-top: 20px;

    font-family: Georgia, "Times New Roman", serif;
    color: #f2e6e6;
    font-size: 18px;

    background: rgba(0, 0, 0, 0.45);
    padding: 20px;
    border: 2px solid darkred;
    margin-top: 20px;
    max-width: 800px;
}

.tab-content.visible {
    display: block;
}