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;
    
  }

  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%;
  height: 100px;
  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 */
    height: 100%;
  }
  
  .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; /* Adicione a animação de transição */
    margin-left: 10px; /* Espaçamento entre os ícones (alterado para margin-left) */
  }
  
  .footer-content .social-links a:hover {
    transform: scale(1.2); /* Aumenta o tamanho dos ícones em 200% ao passar o mouse por cima */
  }
  
  .copyright{
    font-size: 5;
    display: flex;
    margin-right: 15.5rem;
    align-items: center; /* Centraliza verticalmente */
    flex-direction: column;
  }
  .content-container {
    display: flex;
    width: 100%;
    height: 730px;
    margin: 0 auto;
    margin-top: 0px;
    margin-bottom: -200px;

}

.content-container3 {
  display: flex;
  width: 100%;
  height: 730px;
  margin: 0 auto;
  margin-top: 0px;
  margin-bottom: -200px;

}

.content-container2 {
  display: flex;
  position: relative;
  width: 100%;
  background-color: #3b0700;
  height: 730px;
  margin: 0 auto;
  margin-top: 50px;
  margin-bottom: 150px;
}




.image-container {
    /* Existing styles */
    position: relative;
    width: 100%;
    height: 300px; /* Ajuste a altura conforme necessário */
    overflow: hidden;
    text-align: center;
    margin-bottom: 100px;
    
}

.image-container img {
    width: 100%; /* Ajuste para ocupar toda a largura disponível */
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}


.image-title {
    /* New styles for the title */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 36px;
    color: #FFFFFF;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 10px;
}

.carousel {
    display: flex;
    overflow: hidden;
    width: 675px;
    height: 460px;
    margin-right: 100px;
    border-radius: 10px;
    border-color: #3b0700;
    border-style: solid;
    border-width: .5rem;
    margin-top: 5px;
    margin-left: 225px;
}

.carousel3 {
  display: flex;
  overflow: hidden;
  width: 675px;
  height: 460px;
  margin-right: 100px;
  border-radius: 10px;
  border-color: #3b0700;
  border-style: solid;
  border-width: .5rem;
  margin-top: 5px;
  margin-left: 225px;
}

.carousel2 {
  display: flex;
  overflow: hidden;
  width: 675px;
  height: 460px;
  margin-right: 100px;
  border-radius: 10px;
  border-color: #ffffff;
  border-style: solid;
  border-width: .5rem;
  margin-top: 130px;
}


.slide {
    width: 100%;
    height: auto;
    transition: transform 50s ease-in-out;
    
}

/* Efeito de transição do carrossel */
@keyframes slideAnimation {
  0% { transform: translateX(0); }
  6.25% { transform: translateX(0); }
  12.5% { transform: translateX(-100%); }
  18.75% { transform: translateX(-100%); }
  25% { transform: translateX(-200%); }
  31.25% { transform: translateX(-200%); }
  37.5% { transform: translateX(-300%); }
  43.75% { transform: translateX(-300%); }
  50% { transform: translateX(-400%); }
  56.25% { transform: translateX(-400%); }
  62.5% { transform: translateX(-500%); }
  68.75% { transform: translateX(-500%); }
  75% { transform: translateX(-600%); }
  81.25% { transform: translateX(-600%); }
  87.5% { transform: translateX(-700%); }
  99% { transform: translateX(-700%); }
}


.slides-container {
    display: flex;
    animation: slideAnimation 60s infinite;
    width: 300%;
    animation-play-state: paused;
    
}


/* Estilos da caixa de texto */
.info-box {
    /* Existing styles */
    background-color: #ffffff;
    border-radius: 10px;
    border-color: #3b0700;
    border-style: solid;
    border-width: 1.5rem;
    padding: 20px;
    width: 500px;
    height: 400px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    float: right;
    margin-left: 5px; /* Add some left margin to create space */
    margin-right: 100px;
    
}

.info-box2 {
  /* Existing styles */
  background-color: #3b0700;
  border-radius: 10px;
  border-color: #ffffff;
  border-style: solid;
  border-width: 1.5rem;
  padding: 20px;
  width: 500px;
  height: 400px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  float: right;
  margin-left: 225px; /* Add some left margin to create space */
  margin-right: 100px;
  margin-top: 125px;
  
}

.info-title {
  margin-top: 30px;
  font-size: 36px;
  max-width: 600px;
  text-align: center;
  margin-bottom: 30px;
}

.info-title2 {
  margin-top: 30px;
    font-size: 36px;
    max-width: 600px;
    text-align: center;
    margin-bottom: 30px;
    color: #FFFFFF;
}

.info-text {
  margin-top: 30px;
  font-size: 22px;
  max-width: 600px;
  text-align: center;
  margin-bottom: 30px;
}

.info-text3 {
  margin-top: 30px;
  font-size: 20px;
  max-width: 600px;
  text-align: left;
  margin-bottom: 30px;
  line-height: 1.6;
}



.info-text2 {
  margin-top: 30px;
  font-size: 22px;
  max-width: 600px;
  text-align: center;
  margin-bottom: 30px;
  color: #FFFFFF;
}

.footer-content .address a {
  color: white;
  text-decoration: none;
}


.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 */
  }
  
  .info-box {
    width: 280px;
    border-width: 10px;
    margin-top: 30px;
    height: 50%;
    margin-right: auto;
    margin-left: auto;
  }
  .info-box2 {
    width: 280px;
    border-width: 10px;
    margin-top: 30px;
    height: 45%;
    margin-right: auto;
    margin-left: auto;
  }
  .carousel,
  .carousel2,
  .carousel3 {
    margin-right: auto;
    margin-left: auto;
    margin-top: 30px;
    width: 340px;
    height: 232px;
  }

  

  .carousel .slides-container,
  .carousel2 .slides-container,
  .carousel3 .slides-container {
    animation: slideAnimation 20s infinite;
    width: 100%;
    animation-play-state: paused;
    width: 340px;
    height: 232px;
  }
  .content-container2 .info-box2 {
    margin-top: 30px;
    margin-bottom: 0px;
    margin-right: auto;
    margin-left: auto;
  }
  
  .image-title {
    top: 40%; /* You can adjust this value as needed */
  }
.content-container{
  flex-direction: column;
  margin-bottom: 0px;
  margin-top: 0px;
  height: 1000px;
}
.content-container2{
  flex-direction: column-reverse;
  margin-bottom: 0px;
  margin-top: 0px;
  height: 1200px;
  align-items: center;
  justify-content: center
}
.content-container3 {
  flex-direction: column;
  margin-bottom: 0px;
  margin-top: 70px;
  height: 1200px;
}
.info-text,
  .info-text2 {
    font-size: 21px; /* Adjust the font size as needed */
  }
}

@media (min-width: 1450px) and (max-width: 1600px){
  .info-text {
    margin-top: 30px;
    font-size: 20px;
    max-width: 600px;
    text-align: center;
    margin-bottom: 30px;
  }
  
  .info-text3 {
    margin-top: 30px;
    font-size: 18px;
    max-width: 600px;
    text-align: left;
    margin-bottom: 30px;
    line-height: 1.6;
  }
  
  
  
  .info-text2 {
    margin-top: 30px;
    font-size: 20px;
    max-width: 600px;
    text-align: center;
    margin-bottom: 30px;
    color: #FFFFFF;
  }
}

@media (min-width: 601px) and (max-width: 1450px){
  .info-text {
    margin-top: 30px;
    font-size: 18px;
    max-width: 600px;
    text-align: center;
    margin-bottom: 30px;
  }
  
  .info-text3 {
    margin-top: 30px;
    font-size: 16px;
    max-width: 600px;
    text-align: left;
    margin-bottom: 30px;
    line-height: 1.6;
  }
  
  
  
  .info-text2 {
    margin-top: 30px;
    font-size: 18px;
    max-width: 600px;
    text-align: center;
    margin-bottom: 30px;
    color: #FFFFFF;
  }
}