.arch{
  width: 100%;
  padding: 0 50px 50px 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.arch-text{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 40px;
}
.arch-title{
    color: #192839;
    font-size: 36px;
    display: block;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 12px;
}
.arch-p{
    color: #656565;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.5;
}
.arch-container {
  width: 80%;
  min-height: 50vh;
  display: flex;
  flex-wrap: wrap;
}

.arch-card {
  flex-basis: calc(33.33% - 20px); /* Calcula o tamanho base, deixando espaço para margens */
  margin: 10px; /* Margem ao redor dos cartões */
  border: 1px solid #e5e7eb; /* Borda dos cartões (exemplo) */
  box-sizing: border-box; /* Inclui a borda no cálculo do tamanho total */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #f6f6f6;
}

.card-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-bottom-right-radius: 20px;
  background-color: #fff;
  
}
.card-content img {
  max-width: 100%; /* Garante que a imagem não ultrapasse a largura do contêiner */
  height: auto; /* Mantém a proporção da imagem */
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
.content {
  flex-grow: 1; /* O conteúdo deve preencher o espaço restante */
  background-color: #fff;
  border-bottom: 1px solid #e5e7eb;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  display: flex;
  flex-direction: column;
}
.arch-name{
  flex: 0 0 36%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 20px;
  color: #7c7c7c;
}
.arch-name .col-1{
  flex: 0 0 50%;
  display: flex;
  align-items: center;
  justify-content: start;
}
.arch-name .col-2{
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.share-button, .favorite{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all .2s ease-out;
  cursor: pointer;
  background-color: transparent;
  outline: none;
  border: none;
  color: #7c7c7c;
}
.favorite{
  padding-left: 40px; 
}
.share-button:hover, .favorite:hover{
  color: #edcd1f;
}
.share-button i, .favorite i{
  font-size: 25px;
  padding-bottom: 5px;
}
.favorite-icon {
    color: #edcd1f;
}
.arch-details{
  flex: 0 0 32%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 20px;
}
.arch-details .row{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #7c7c7c;
  font-weight: 100;
  font-size: 12px;
  line-height: 1.7;
}
.arch-details h3{
  font-weight: 400;
  padding-bottom: 3px;
}
.arch-desc{
  flex: 1;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #7c7c7c;
  font-weight: 100;
  font-size: 14px;
}
.arch-desc hr {
  border: none; /* Remove a borda padrão */
  height: 1px; /* Altura da linha */
  background: linear-gradient(to right, rgba(237, 205, 31, 0), #edcd1f, rgba(237, 205, 31, 0)); /* Gradiente linear */
  width: 100%; /* Largura da linha */
}
.arch-desc span{
  padding-top: 10px;
}

.arch-footer {
  background-color: #fff;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  display: flex;
  flex-direction: row;
  height: 45px;
}
.arch-footer a {
  text-decoration: none;
  background-color: transparent; /* Cor de fundo do rodapé (exemplo) */
  flex: 0 0 10%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.arch-footer i{
  color: #3fc73f!important;
  font-size: 30px;
}
.arch-footer p{
  border-left: 1px solid #e5e7eb;
  border-bottom-left-radius: 15px;
  background-color: #f6f6f6; /* Cor de fundo do rodapé (exemplo) */
  flex: 0 0 62%;
  color: #777;
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 10px;
  font-weight: 100;
}
.arch-footer span{
  flex: 1;
  background-color: #f6f6f6;
  color: #edcd1f;
  height: 100%;
  display: flex;
  align-items: center;
  font-weight: 100;
}

.arch-footer .price {
  font-weight: 400;
}

@media screen and (max-width: 1024px) {
    .arch{
        padding: 0;
    }
    .arch-container{
        width: 90%;
    }
}
@media screen and (max-width: 778px) {
    .arch{
        margin-top: 10rem; 
    }
}
@media screen and (max-width: 450px) {
    .arch-text{
        margin: 5px; 
    }
    .arch-title{
        font-size: 28px;
    }
    .arch-p{
        font-size: 16px;
    }
}
@media screen and (max-width: 435px) {
    main .section-2{
        margin-top: 20rem;
    }
}