body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  position: relative;
}

header {
  background-color: #3b0700;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  padding: 10px;
  height: 100px;
  max-width: 100%;
}

header img {
  height: 70px;
  margin-right: 20px;
}

nav {
  margin-left: auto;
}

nav ul {
  list-style: none;
  display: flex;
}

nav li {
  margin-right: 60px;
}

nav li a {
  text-decoration: none;
  color: #FFFFFF;
  transition: color 0.3s, transform 0.2s;
  font-size: 150%;
  display: inline-block;
}

nav li a:hover {
  color: #D0FF00;
  transform: scale(1.2);
}

.logo-container {
  flex: 1;
  display: flex-start;
  justify-content: center;
}

main {
  position: relative;
}

footer {
  background-color: #3b0700;
  color: #FFFFFF;
  text-align: left;
  padding: 10px;
  width: 99%;
  position: absolute;
  bottom: 0;
  left: 0;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.image-container {
  position: relative;
  width: 100%;
  height: calc(100vh - 150px); /* Subtrai a altura do header e do footer */
  overflow: hidden;
}

.footer-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center; /* Centraliza verticalmente o conteúdo */
}

.footer-content .address {
  font-size: 14px;
  line-height: 1.2;
  display: flex;
  flex-direction: column;
}

.footer-content .address h1,
.footer-content .address h2,
.footer-content .address h3 {
  margin: 0;
  padding: 0;
}

.footer-content .social-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-right: 30px;
}

.footer-content .social-links a {
  position: relative;
  width: 50px;
  transition: transform 0.3s;
  margin-left: 10px;
}

.footer-content .social-links a:hover {
  transform: scale(1.2);
}

.footer-content .address a {
  color: white;
  text-decoration: none;
}

/* responsividade */

.hamburger {
  display: none;
  cursor: pointer;
  z-index: 999;
  position: relative;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px;
  background-color: white;
}

/* Media query for small screens (e.g., smartphones) */
@media only screen and (max-width: 600px) {
  /* Hide the regular navigation links on small screens */
  nav ul {
    display: none;
  }

  /* Display the hamburger icon on small screens */
  .hamburger {
    display: block;
  }

  /* Show the navigation links as a vertical dropdown */
  nav ul.show {
    display: block;
    position: absolute;
    text-align: center;
    font-size: 16px;
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #3b0700;
    width: 50%;
    z-index: 998;
    animation-name: xxx;
    animation-duration: 0.5s;
  }
  @keyframes xxx { 
    20% { top: 20px;}
    30% { top: 30px;}
    40% { top: 40px; }
    50% { top: 50px; }
    60% { top: 60px; }
  }

  nav ul.show li {
    width: 100%;
    text-align: center;
    transform: translateX(-8%);
  }

  /* Optional: Style the dropdown links */
  nav ul.show li a {
    display: flex;
    position: relative;
    padding: 10px;
    color: #FFFFFF;
    text-decoration: none;
    margin: 0;
    align-items: center;
    justify-content: center;
  }

  /* Center align all footer content in a column layout */
  footer {
    padding: 20px 0;
    width: 100%;
    left: 0;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* Remove "Designed by Arthur" text */
  .footer-content .copyright {
    display: none;
  }

  /* Adjust the size and alignment of the copyright text */
  .footer-content .address h1,
  .footer-content .address h2,
  .footer-content .address h3 {
    margin-top: -5px;
    margin-bottom: 7px;
    font-size: 12px;
    text-align: center; /* Center align the address text */
  }

  .footer-content .social-links a {
    width: 30px;
    height: 30px;
    margin-right: 15px;
  }

  .footer-content .social-links img {
    width: 100%;
    height: 100%;
  }

  header img {
    height: 55px;
  }

  header {
    height: 70px; /* Reduced height for mobile screens */
  }
  html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
  }

  main {
    min-height: calc(100vh - 150px); /* Adjusted height for the content area */
  }
}
