* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Noto Sans Display", sans-serif;
  }
  
  body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
  }

  #one {
    position: fixed;
    bottom: 0;
    right: 0;
  
  }

  #one img {
    width: 130px;
    height: 130px;
  }

  .navbar {
    background: #f7f4f4;
    padding: 1rem 2rem;    
  }

  #img-menu {
    width: 190px;
    height: 190px;
    border-radius: 50%;
  }
  
  .navbar ul {
    justify-content: center;
    justify-content: space-around;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  
  .navbar a {
    text-decoration: none;
    color: #Daa520;
    font-weight: bold;
    font-size: 20px;
  }
  
  .hero {
    height: 1000px;
    color: white;
    display: flex;
    align-items: end;
    padding: 5rem 1rem;
    background-image: url(img/fundo.png);
    background-repeat: no-repeat;
    background-size: cover;
  }

  
  .hero-content h1 {
    font-size: 2.5rem;
    
  }

  .hero-content  {
    padding: 0 0 10rem 5rem;
  }
  
  .hero-content .btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1.5rem;
    background: #e74c3c;
    color: white;
    text-decoration: none;
    border-radius: 5px;
  }
  
  .instagram {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #e2e2e2;
  }

  .logo {
    display: flex;
    gap: 8px;
    align-items: center;
  }

  #instagram-logo {
    width: 30px;
    height: 30px;
  
  }
  
  .instagram .gallery {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 1rem 0;
   
  }

  .instagram h2 {
    color: #C635AA;
  }

  .instagram a {
    color: #C635AA;
    text-decoration: none;
  }
  
  .instagram img {
    width: 350px;
    height: 350px;
    border-radius: 8px;
    object-fit: cover;
    cursor: pointer;
  }
  
  .overlay {
    opacity: 0.2;
    transition: .4s ease-in-out;

  }

  .overlay2 {
    opacity: 0.2;
    transition: .4s ease-in-out;
  }
  .overlay3 {
    opacity: 0.2;
    transition: .4s ease-in-out;
  }
  .overlay4 {
    opacity: 0.2;
    transition: .4s ease-in-out;
  }
  
  .instagram:hover .overlay {
    opacity: 1;
  }

  .instagram:hover .overlay2 {
    opacity: 1;
  }
  
  .instagram:hover .overlay3 {
    opacity: 1;
  }
  
  .instagram:hover .overlay4 {
    opacity: 1;
  }
  
.sobre-nos {
  padding: 3rem 2rem;
  background: #f9f9f9;
  background-image: url(img/dourado.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
} 

#sobre-nos-title {
  flex-grow: 3;
  text-align: start;
  align-items: center;
  padding-left: 12em;
}
#sobre-nos-a {
  flex-grow: 5;
  display: grid;
}

hr{
  border-color:#Daa520;
  box-sizing:border-box;
  width:20%; 
  margin: 0 0 30px ; 
}

.sobre-nos img {
  height: 600px;
  width: 600px;
  justify-self: end;

}


.sobre-nos h2 {
  font-size: 3rem;
  margin-bottom: 0;
  color: #333;
}



#btn-wpp {
  background-color: #49C95A;
  color: white;
  width: 500px;
  height: 35px;
  border-radius: 10px;
  font-size: 20px;
  font-weight: lighter;
  border: solid 2px #075E54;

}



.sobre-text h3 {
  font-size: 1.5rem;
  color: #e74c3c;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
}

.sobre-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
}

.footer {
  background: #272727;
  color: white;
  padding: 2rem;
  text-align: center;

}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}

.footer-section {
  flex: 1;
  min-width: 200px;
}

.footer-section h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #Daa520;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section li {
  margin: 0.5rem 0;
}

.footer-section a {
  color: white;
  text-decoration: none;
}

.footer-section a:hover {
  text-decoration: underline;
}

.footer-bottom {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #aaa;
}

.footer hr {
  width: auto;
  padding-top: 0;
}

@media (max-width: 768px) {
  body {
    font-size: 14px;
  }

  .navbar {
    padding: 0.5rem;
  }

  #img-menu {
    width: 100px;
    height: 100px;
  }

  .hero {
    height: auto;
    padding: 2rem 1rem;
    background-size: contain;
    background-position: center;
  }

  .instagram {
    padding: 1rem;
  }

  .instagram .gallery {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .instagram img {
    width: 100%;
    height: auto;
  }

  .sobre-nos {
    flex-direction: column;
    padding: 2rem 1rem;
    align-items: center;
    text-align: center;
  }

  #sobre-nos-title {
    padding-left: 0;
    text-align: center;
  }

  .sobre-nos img {
    width: 100%;
    height: auto;
    margin-top: 1rem;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
  }

  #one img {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 1200px) {
  .hero {
    height: 60vh;
    background-size: cover;
    background-position: center;
  }

  .instagram .gallery {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .sobre-nos {
    padding: 2rem;
    align-items: center;
    text-align: center;
  }

  #sobre-nos-title {
    text-align: center;
  }

  .sobre-nos img {
    width: 90%;
    height: auto;
    margin: 0 auto;
  }
}
