* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 11vh;
    background-color: #000;
    color: white;
    padding: 5px 0;
    z-index: 1000;
}

.navbarContainer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 2000px;
    margin: 0 auto;
    margin-left: 5%;
    margin-right: 5%;
    padding: 0 10px;
}

.navbarTitle {
    display: flex;
    font-size: 6vh;
    font-weight: bold;
    align-items: center;
}

.navbarTitle img {
    height: 8vh;
    margin-right: 10px;
}

.navbarMenu {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
    margin: 0;
    background-color: #000000;
}

.navbarMenu a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 1vh;
    transition: background-color 0.3s ease;
}

.navbarMenu a:hover {
    color: orangered;
    background-color: #555;
    border-radius: 5px;
}

.container {
    position: relative;
    min-height: 100vh;
    background: #000
}

.container .image-container{
display: flex;
flex-wrap: wrap;
gap: 0;
justify-content: center;
padding: 0;
margin: 0 auto;
width: 100%;
}

.container .image-container .image {
    flex: 1 1 calc(33.33% - 20px); /* Adapta as imagens para ocupar um terço da linha */
    max-width: 33.33%; /* Cada imagem ocupa 1/3 da largura */
    height: auto; /* Ajusta a altura automaticamente */
    overflow: hidden;
    border: none; /* Remove bordas, se quiser */
}

.container .image-container .image img{
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: .2s linear;
    margin: 0;
    padding: 0;
}

.container .image-container .image:hover img{
    transform: scale(1.1);
}

.container .image-container h1 {
    position: relative;
    font-size: 2.5rem;
    color: white;
    text-align: center;
    margin-bottom: 20px;
    width: 100%;
}

.container .popup-image {
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.9);
    height: 100%;
    width: 100%;
    z-index: 100;
    display: none;
}

.container .popup-image span {
    position: absolute;
    top: 0;
    right: 10px;
    font-size: 60px;
    font-weight: bolder;
    color: #000;
    cursor: pointer;
    z-index: 100;
}

.container .popup-image img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 5px solid #000;
    width: auto;
    max-width: 90%;
    height: auto;
    max-height: 90%;
    object-fit: contain;
}

.menu-icon {
    display: none;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}

@media screen and (max-width: 1400px) {
  .menu-icon {
    display: block;
    font-size: 28px;
    cursor: pointer;
  }

  .navbarMenu {
    display: none;
    flex-direction: column;
    gap: 10px;
    background-color: #000000;
    position: absolute;
    right: 0;
    top: 50px;
    width: 50%;
    margin-left: 25%;
    margin-right: 25%;
  }

  .navbarMenu a {
    color: white;
    display: block;
    text-align: center;
  }
}

/* Media queries para ajustar o tamanho do título e ícone em diferentes dispositivos */
@media (min-width: 1200px) {
.navbarTitle {
    font-size: 3vw; /* Grande para telas maiores */
}
.navbarTitle img {
height: 8vh;
}
.navbar{
height: auto;
}
}

@media (max-width: 1199px) and (min-width: 768px) {
.navbarTitle {
    font-size: 2vw; /* Médio para tablets e laptops */
}
.navbarTitle img {
    height: 6vh;
}
.navbar{
    height: auto;
}
}

@media (max-width: 767px) {
.container .image-container .image {
    flex: 1 1 calc(50% - 20px); /* Adapta as imagens para ocupar um terço da linha */
    max-width: 50%; /* Cada imagem ocupa 1/3 da largura */
    height: auto; /* Ajusta a altura automaticamente */
    overflow: hidden;
    border: none; /* Remove bordas, se quiser */
}
.navbarTitle {
    font-size: 5vw; /* Menor para dispositivos móveis */
}
.navbarTitle img {
    height: 4vh;
}

.navbar{
    height: auto;
}
}