/*FOOTER*/
footer {
  width: 100%;
  padding-inline: clamp(1.25rem, 5vw, 4rem);
  background-color: var(--primary);
  color: var(--light);
  text-align: center;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 4rem;
  align-items: start;
}

.footer-brand img {
  width: 160px;
}

.footer-col h5 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col a {
  display: block;
  color: var(--light);
  text-decoration: none;
  margin-bottom: 0.5rem;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.footer-col a:hover {
  opacity: 1;
  transform: translateX(4px);
}

.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-grid .ul-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.socials a {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.socials a:hover {
  background: var(--accent);
  transform: translateY(-3px);
}

.socials svg {
  width: 20px;
  fill: var(--light);
}

.footer-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8rem;
  opacity: 0.6;
}

/* safe display mobile */
footer {
  padding-bottom: calc(2rem + env(safe-area-inset-bottom));
}
