.residenciais {
  padding: 2.5rem 0;
  background-color: #f7f7f7;
}

.residenciais .container {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.residenciais-residencial {
  display: grid;
  grid-template-columns: 1fr;
}

.residenciais-residencial__content {
  padding: 24px;
  flex: 1;
  background-color: #fff;
  border-radius: 20px 20px 0 0;
}

.residenciais-residencial__content-icon {
  width: 52px;
  height: 52px;
  padding: 16px;
  border-radius: 50px;
  background: #e6f4f4;
  display: flex;
  justify-content: center;
  align-items: center;
}

.residenciais-residencial__content h3 {
  color: #121212;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 600;
  line-height: 44px;
  letter-spacing: -1.08px;
  margin: 48px 0;
}

.residenciais-residencial__content h3 span {
  color: var(--primary-color);
}

.residenciais-residencial__content p {
  color: #424242;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 48px;
}

.residenciais-residencial__content ul {
  list-style-type: none;
}

.residenciais-residencial__content li {
  color: #121212;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;

  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.residenciais-residencial__image {
  flex: 1;
  position: relative;
  height: calc(100% + 48px);
}

.residenciais-residencial__image-content {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background-color: #fff;
  border-radius: 12px;
  padding: 24px;
  width: calc(100% - 48px);
}

.residenciais-residencial__image-content h3 {
  color: #121212;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  margin-bottom: 16px;
}

.residenciais-residencial__image-content span {
  color: #424242;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 143%;
  letter-spacing: -0.64px;
  margin-bottom: 16px;
  display: block;
}

.residenciais-residencial__image-content a {
  color: #00948e;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  text-decoration: none;
}

.residenciais-residencial__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 0 20px 20px;
  max-height: 325px;
}

@media screen and (min-width: 425px) {
  .residenciais-residencial__image {
    height: 100%;
  }
}

@media screen and (min-width: 768px) {
  .residenciais-residencial__content {
    padding: 48px;
  }
  .residenciais-residencial__content h3 {
    font-size: 2rem;
  }
  .residenciais-residencial__image-content {
    max-width: 50%;
  }
}

@media screen and (min-width: 992px) {
  .residenciais-residencial {
    grid-template-columns: 1fr 1fr;
  }
  .residenciais-residencial__content {
    border-radius: 20px 0 0 20px;
    padding: 64px;
  }
  .residenciais-residencial__content h3 {
    font-size: 2.25rem;
  }
  .residenciais-residencial__image img {
    max-height: 100%;
    border-radius: 0 20px 20px 0;
  }
}
