/* styles.css */
body {
    margin: 0;
    font-family: Arial, sans-serif;
  }
  
  .navbar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 30px 30px;
    background-color: #452200;
    color: white;
  }

  .navbar-left{
    display: flex;
  }
  
  .navbar-left h1 {
    margin: 0;
    font-size: 1rem;
  }
  
  .navbar-right .contact-link {
    color: white;
    text-decoration: none;
    font-size: 1em;
  }
  
  .navbar-right .contact-link:hover {
    text-decoration: underline;
  }

  .navbar img{
    width: 10rem;
    height: auto;
  }

  .navbar-right p{
    font-size: 1rem;
    margin: 4px;
  }

  .fone{
    font-size: 1.4rem;
    text-align: center;
  }

  .banner{
    display: flex;
    justify-content: center;
  }

  .banner img{
    position: relative;
    margin-top: 2rem;
    width: 60%;
    z-index: 2;
  }

  .about {
    position: relative;
    background: url('../images/madeira02.jpg') repeat top center;
    height: auto;
    padding: 0 175px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: left;
    color: #221100; /* Cor do texto */
}
.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(180, 129, 70, 0.349); /* Cor sobreposta com transparência */
    z-index: 1;
}

  .textosobre h2 {
    font-size: 3rem;
    position: relative;
    font-family: math;
    font-weight: 600;
    color: #221100;
    z-index: 2;
  }
  
  .textosobre p{
    font-family: math;
    position: relative;
    font-size: 23px;
    line-height: 1.2;
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 22px;
    color: #221100;
    z-index: 2;
  }

  .image-overlay {
    position: absolute;
    top: 0%; 
    right: 0;
    width: 40px; 
    height: auto; 
    z-index: 2; 
  }
  
  .image-overlay img {
    width: 100%; 
    height: 1039px; 
    box-shadow: 0 6px 45px rgb(0 0 0 / 98%); 
    object-fit: cover; 
  }

  .image-overlay-2 {
    position: absolute;
    top: 0%; 
    left: -15px; 
    width: 110px; 
    height: auto;
    z-index: 2; 
  }
  
  .image-overlay-2 img {
    width: 50%;
    height: 1039px;
    box-shadow: 0 6px 45px rgb(0 0 0 / 98%);
}

.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  transition: transform 0.3s ease;
  }
  
  .whatsapp-button:hover {
  transform: scale(1.1);
  }
  
  .whatsapp-button img {
  width: 50px;
  height: 40px;
  }
  
  
  .footer {
    text-align: center;
    padding: 20px 0px;
    background-color: #333; 
    color: white; 
    font-size: 1rem; 
    position: relative; 
    bottom: 0;
    width: 100%;
    height: auto;
  }
  
  .footer p {
    margin: 0;
  }

  @media (max-width: 1000px) {
    .navbar {
      display: flex;
      justify-content: space-around;
      align-items: center;
      flex-direction: column;
    }
    .navbar h1{
      font-size: 17px;
    }
    .banner{
      height: 200px;
    }
    .banner img{
      width: 70%;
    }
    .about{
      height: auto;
      padding: 0 20px;
    }
    .image-overlay img{
      display: none;
    }
    .image-overlay-2 img{
      display: none;
    }
    .footer p{
    text-align: left;
    margin-left: 10px;
  }
    .custom-button{
      margin: 17px 15px;
    }
  }