/* ============================
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%;
}

/* ============================
LOCATIONS SECTION
*/

.location-section {
  margin-top: 6.4rem;
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}

.location-section__card {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}

.location-section__card--reverse {
  grid-template-columns: 1fr 2fr;
}

.location-section__card img {
  border-radius: 1.5rem;
}

.location-section__content {
  background-color: var(--color-very-ligth-peach);
  border-radius: 1.5rem;
  display: grid;
  place-items: center;
  padding-right: 12%;
}

.location-section__content h2 {
  color: var(--color-peach);
}

.location-section__contact {
  display: flex;
  margin-top: 2.4rem;
  gap: 10rem;
}

.bold {
  font-weight: 500;
}

.block {
  display: block;
}

/* ============================
CONTACT SECTION
*/

.contact-section {
  margin-top: 38rem;
  position: relative;
}

.contact-section-container {
  background-color: var(--color-peach);
  color: var(--color-white);
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 29rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 9.5rem;
  border-radius: 1.5rem;
  transform: translateY(22%);
}

.contact-section__content {
  padding-top: 1.6rem;
  max-width: 46rem;
}

.contact-section__content h2 {
  max-width: 26rem;
}

.contact-section__content p {
  margin-top: 2rem;
}

/* ============================
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);
}
