.footer {
  padding: 2rem 6rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  background: var(--y-main);
  color: white;
}

.footer-content {
  display: flex;
  justify-content: space-around;
  gap: 2rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  align-content: center;
  margin-bottom: 1rem;
  width: 100%;
}
.footer-brand img {
  max-width: 100%;
  height: auto;
}

.footer-logo {
  width: 200px;
  max-width: 100%;
}

.footer-title {
  font-size: 2rem;
  font-weight: 600;
  font-family: var(--y-font-family);
}
.footer-col p {
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.footer-col p i {
  color: white;
  padding: 0.4rem 0.5rem;
  border-radius: 50%;
  margin-left: 0.5rem;
}

.footer h5 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer ul li a {
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer .last {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding-top: 2rem;
  border-top: 1px solid var(--y-secondary);
  margin-top: 0;
}

.footer .last div {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer .last div p {
  margin: 0;
  font-weight: 600;
  margin-left: 1rem;
}

.footer .last div img {
  height: 30px;
  width: auto;
}

.floating-contact {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.floating-contact .floating-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-contact .floating-btn.whatsapp {
  background: #25d366;
}

.floating-contact .floating-btn.phone {
  background: var(--y-secondary);
}

.floating-contact .floating-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.25);
}

@media (max-width: 820px) {
  .footer {
    padding: 1.5rem 1.25rem;
    gap: 1.5rem;
  }

  .footer-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: stretch;
  }

  .footer-col {
    width: 100%;
    text-align: right;
  }

  .footer ul {
    text-align: right;
  }

  .footer-col h5 {
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
  }

  .footer ul {
    font-size: 0.95rem;
    gap: 0.4rem;
  }

  .sec1 p {
    font-size: 0.95rem;
    font-weight: 500;
  }

  .sec1 {
    text-align: center;
  }

  .sec1 p {
    justify-content: center;
  }

  .footer-brand .footer-title {
    font-size: 1.4rem;
  }

  .footer p,
  .footer ul li a,
  .footer-title {
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .footer p {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
  }

  .footer-brand {
    justify-content: center;
  }

  .footer-logo {
    width: 120px;
    margin: 0 auto;
  }

  .footer .last {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    text-align: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .footer .last div {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
  }

  .footer .last div p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    margin-left: 0;
  }

  .footer .last div img {
    height: 18px;
  }

  .footer .last > p {
    font-size: 0.85rem;
  }
}
