* {
  margin: 0;
  padding: 0;
}

a {
  color: #23232e;
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  opacity: 0.7;
}

.logo {
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 4px;
}

nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  font-family: system-ui, -apple-system, Helvetica, Arial, sans-serif;
  background: #ffffff;
  color: #23232e;
  height: 8vh;
  z-index: 1000; 

}

main {
  background: url("../img/bg.jpg") no-repeat center center;
  background-size: cover;
  height: 92vh;
}

.nav-list {
  list-style: none;
  display: flex;
  z-index: 1000; 
}

.nav-list li {
  letter-spacing: 3px;
  margin-left: 32px;
  z-index: 1000; 
}

.mobile-menu {
  display: none;
  cursor: pointer;
}

.mobile-menu div {
  width: 32px;
  height: 2px;
  background: #23232e;
  margin: 8px;
  transition: 0.3s;
}

@media (max-width: 999px) {
  body {
    overflow-x: hidden;
  }
  .nav-list {
    position: absolute;
    top: 8vh;
    right: 0;
    width: auto;
    height: 54vh;
    background: #ffffff;
    color: #23232e;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    transform: translateX(100%);
    transition: transform 0.3s ease-in;
  }
  .nav-list li {
    margin-left: 0;
    opacity: 0;
  
  }
  .mobile-menu {
    display: block;

  }
}

.nav-list.active {
  transform: translateX(0);

}

@keyframes navLinkFade {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.mobile-menu.active .line1 {
  transform: rotate(-45deg) translate(-8px, 8px);
}

.mobile-menu.active .line2 {
  opacity: 0;
}

.mobile-menu.active .line3 {
  transform: rotate(45deg) translate(-5px, -7px);
}

.dropdown {
  display: inline-block;
}

.dropbtn {
  position: relative;
  font-size: 16px;
  border: none;
  outline: none;
  color: #23232e;
  padding: 11px 30px 14px 16px; /* Aumentei o padding para acomodar a seta */
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

.dropbtn::after {
  content: "▼"; /* Caractere especial para a seta para baixo */
  font-size: 12px;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}


.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  display: block;
  text-decoration: none;
}

.dropdown-content a:hover {
  background-color: #ddd;
}

.dropdown:hover .dropdown-content {
  display: block;
}
.containercoluna {
  display: flex;
  padding: 20px;
}

.column {
box-sizing: border-box;
flex: 1;
padding: 10px;
text-align: center;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}


.column img {
max-width: 100%;
height: auto;
}
