/* ============================
NAVIGATION 
*/

.navigation {
  display: flex;
  margin-top: 6.4rem;
  justify-content: space-between;
}

.navigation__logo {
  height: 2.4rem;
  width: 19.6rem;
}

.navigation__items {
  display: flex;
  gap: 4.2rem;
}

.navigation__item {
  transition: all 0.3s ease-out;
  position: relative;
}

.navigation__item:hover {
  color: var(--color-peach);
}

.navigation__item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0rem;
  height: 0.1rem;
  transition: all 0.3s;
  background-color: var(--color-peach);
}

.navigation__item:hover:after {
  width: 100%;
}

/* ============================
PRESENTATION SECTION
*/

.introduction-section {
  background-color: var(--color-peach);
  margin-top: 6.4rem;
  border-radius: 1.5rem;
  color: var(--color-white);
  height: 25rem;
  display: grid;
  place-items: center;
}

.introduction-section-content {
  max-width: 48rem;
  text-align: center;
}

.introduction-section-content p {
  margin-top: 2.4rem;
}
/* ============================
TESTIMONIALS SECTION
*/

.testimonials-section {
  margin-top: 16rem;
  margin-bottom: 16rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 8.7rem;
  row-gap: 12rem;
}

.testimonials-card {
  background-color: var(--color-very-ligth-peach);
  border-radius: 1rem;
  position: relative;
  width: 31rem;
  height: 35rem;
}

.testimonials-card__img {
  position: absolute;
  width: 10rem;
  height: 10rem;
  left: 50%;
  border-radius: 100%;
  transform: translate(-50%, -50%);
}

.testimonials-card__content-box {
  background-color: var(--color-white);
  border-radius: 0.7rem;
  width: 25rem;
  height: 30rem;
  padding: 2rem 1.8rem;
  box-shadow: 0px 1px 15px 0px rgba(0, 0, 0, 0.05);
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 12%);
  text-align: center;
}

.stars-container {
  display: flex;
  justify-content: center;
}

.testimonials-card__text {
  margin-top: 2rem;
  color: var(--color-dark-grey);
  font-size: 1.4rem;
  line-height: 2rem;
}

.testimonials__data {
  font-size: 1.2rem;
  margin-top: 4rem;
}

.testimonials-card__name {
  color: var(--color-black);
  font-weight: 700;
}

.testimonials-card__office {
}

/* ============================
FOOTER
*/

.footer {
  background-color: var(--color-black);
  color: var(--color-white);
  height: 39rem;
  padding-top: 7.2rem;
}

.footer-content {
  margin: 0 auto;
}

.footer__line {
  margin-top: 4rem;
  border: 1px solid var(--color-dark-grey);
}

.footer__info {
  display: flex;
  margin-top: 3rem;
  justify-content: space-between;
  align-items: flex-end;
}

.footer-info__contact {
  display: flex;
  gap: 16.8rem;
  color: var(--color-medium-grey);
}

.footer__info-oficine p:nth-of-type(1) {
  font-weight: 500;
}

.footer__info-oficine p:nth-of-type(2) {
  max-width: 23rem;
}

.footer__info-online p:nth-of-type(1) {
  font-weight: 500;
}

.footer__info-online a {
  display: block;
}

.footer__info-online a:hover {
  text-decoration: underline;
}

.footer_info-social ul {
  display: flex;
  gap: 1.6rem;
}

.footer_info-social svg {
  cursor: pointer;
  transition: all 0.3s ease;
  fill: var(--color-peach);
}

.footer_info-social svg:hover {
  fill: var(--color-light-peach);
  transform: scale(1.1);
}
