body {
    margin: 0;
    font-family: mundial, sans-serif;
    font-style: normal;
    font-weight: 100;
    background: linear-gradient(180deg, rgba(227,255,248,0) 82.08%, rgba(227, 255, 248, 0.38) 100%);
    min-height: 100vh;
    padding: 0 20px;
}

.navbar {
    margin-right: 4%;
    margin-left: 2%;
    background-color: #ffffff;
}

#logo {
    width: 405px;
}

.title h1 {
    text-align: left;
    font-size: 18px;
    font-weight: bold;
    margin: 0;
    margin-left: 5rem; 
    margin-top: 3rem;
}

.subtitle h1 {
    color: grey;
    text-align: left;
    font-size: 12px;
    margin-left: 5rem; 
    margin-bottom: 5rem;
}

.col-md-3 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}

.galeria-img {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90%;
    height: auto;
}

.galeria-img img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 5rem;
}

.container-duplo {
    display: flex;
    gap: 10px;
    width: 90%;
    justify-content: space-between;
    padding: 0;
    margin: 0 auto;
}

.galeria-img-duplo {
    display: flex;
    gap: 10px;
    width: 100%;
    justify-content: space-between;
}

.galeria-img-duplo img {
    width: 48%;
    height: auto;
    display: block;
    margin-bottom: 5rem;
}

.container-triplo {
    display: flex;
    gap: 10px;
    width: 90%;
    justify-content: space-between;
    padding: 0;
    margin: 0 auto;
}

.galeria-img-triplo {
    display: flex;
    gap: 10px;
    width: 100%;
    justify-content: space-between;
}

.galeria-img-triplo img {
    width: 32%;
    height: auto;
    display: block;
    margin-bottom: 5rem;
}

.learn-more {
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px auto;
}

.learn-more a {
  text-decoration: none;
}

.learn-more:hover {
    text-decoration: none;
    color: grey;
}

.projetos {
    text-align: center;
    font-weight: bold;
    text-decoration: none;
}

.projetos h1 {
    font-size: 15px;
    text-decoration: none;
    color: black;
    font-weight: bold;
}

footer {
  color: #333;
  margin: 20px 80px; 
}

.contato {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px 0; 
  gap: 40px;
}

.contato-text span, 
.contato-social span {
  margin: 10px 0; 
}


.contato-social {
  margin-left: 20px; 
}

.contato-text {
  margin-right: 10rem; 
}

.contato-text span {
  display: block;
  margin: 5px 0;
  font-size: 14px;
}

.contato-text a {
  text-decoration: none;
  color: #333;
  transition: color 0.3s ease;
}

.contato-text a:hover {
  text-decoration: underline;
}

.contato-social span {
  display: flex;
  align-items: center;
  margin: 5px 0;
}

.contato-social a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
  margin-left: 5px;
  display: flex;
  align-items: center;
  transition: color 0.3s ease;
}

.contato-social a:hover {
  text-decoration: underline;
}

.contato-social img {
  width: 20px;
  height: 20px;
  margin-right: 5px;
}

@media (max-width: 768px) {
  .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #ffffff;
  }
  
  #logo {
    width: 100%; 
    max-width: 200px;
  }
  
  .title h1 {
    margin-top: 2rem;
  }

  .title h1, .subtitle h1 {
    margin-left: 1rem;
    text-align: left;
  }

  .subtitle h1 {
    font-size: 0.65rem;
    margin-bottom: 2rem;
  }

  .galeria-img, .galeria-img-duplo, .galeria-img-triplo {
    flex-direction: column;
    align-items: center;
}

.galeria-img img, .galeria-img-duplo img, .galeria-img-triplo img {
      width: 100%;
      margin-bottom: 1rem;
  }

  .contato {
    gap: 0.5rem;
      display: flex;
      flex-direction: column;
      align-items: flex-start; 
  }

  .contato-text {
      width: 100%;
  }

  .contato-social {
      margin-left: 0; 
  }
}

@media (max-width: 992px) {
  .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #ffffff;
  }
  
  #logo {
    width: 100%; 
    max-width: 200px;
  }
  
  .title h1 {
    margin-top: 2rem;
  }

  .title h1, .subtitle h1 {
    margin-left: 3rem;
    text-align: left;
  }

  .subtitle h1 {
    font-size: 0.65rem;
    margin-bottom: 2rem;
  }

  .galeria-img, .galeria-img-duplo, .galeria-img-triplo {
    flex-direction: column;
    align-items: center;
}

.galeria-img img, .galeria-img-duplo img, .galeria-img-triplo img {
      width: 100%;
      margin-bottom: 1rem;
  }

  .contato {
    gap: 0.5rem;
      display: flex;
      align-items: flex-start; 
  }

  .contato-text {
      width: 100%;
  }
}



