
* {
  margin: 0;
  padding: 0;
}

a {
  color: #273041;
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  opacity: 0.7;
}

nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  font-family: Roboto, -apple-system, Helvetica, Arial, sans-serif;
  background: #fff;
  height: 15vh;
}

main {
  background: url("images/bg.jpg") no-repeat center center;
  background-size: cover;
  height: 85vh;
}

.nav-list {
  list-style: none;
  display: flex;
}

.nav-list li {
  letter-spacing: 3px;
  margin-left: 32px;
}

.mobile-menu {
  display: none;
  cursor: pointer;
}

.mobile-menu div {
  width: 32px;
  height: 2px;
  background: #000;
  margin: 8px;
  transition: 0.3s;
}

@media (max-width: 999px) {
  body {
    overflow-x: hidden;
  }
  .nav-list {
    position: absolute;
    top: 15vh;
    right: 0;
    width: 50vw;
    height: 85vh;
    background: #cccccc;
    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);
}

.logo {
  display: block;
  width: 180px; 
  height: 60px;
  background: url("images/logotipo.png") no-repeat center;
  background-size: contain;
  text-indent: -9999px;
}

/*Rodapé*/

.footer {
  background: #111;
  color: #fff;
  padding: 40px 20px 20px;
  font-family: 'Roboto', Arial, sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-box {
  flex: 1;
  min-width: 220px;
}

.footer-box h3 {
  margin-bottom: 10px;
  font-size: 18px;
  border-bottom: 2px solid #555;
  display: inline-block;
  padding-bottom: 5px;
}

.footer-box p,
.footer-box a {
  font-size: 14px;
  color: #ccc;
  text-decoration: none;
  margin: 5px 0;
  display: block;
}


.footer-box a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #333;
  padding-top: 15px;
  font-size: 13px;
  color: #aaa;
}

/* Responsivo */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-box h3 {
    border: none;
  }
}
