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

.site-footer {
  padding: 0;

  border-top: 1px solid var(--section-divider-color);

  background: var(--surface-color);
}

.site-footer .container {
  padding-top: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: clamp(1.75rem, 3vw, 2.5rem);
}


/* ==========================================================
   MARCA
   ========================================================== */

.footer-brand {
  max-width: 42rem;
}

.footer-brand__name {
  margin: 0 0 0.8rem;

  color: var(--menta-accent);

  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}

.footer-brand__description {
  margin: 0;

  color: var(--text-color);

  font-size: 1rem;
  line-height: 1.6;
}

.footer-brand__claim {
  margin: 0.85rem 0 0;

  color: var(--primary-color);

  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.5;
}


/* ==========================================================
   SEPARADOR
   ========================================================== */

.footer-divider {
  height: 1px;

  margin: 2.25rem 0 1.5rem;

  background: var(--section-divider-color);
}


/* ==========================================================
   INFORMACIÓN LEGAL
   ========================================================== */

.footer-legal {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem 2rem;
  align-items: center;

  font-size: 0.9rem;
}

.footer-legal__copy {
  min-width: 0;

  color: var(--text-color);
  line-height: 1.5;

  opacity: 0.75;
}

.footer-legal__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.65rem 1.15rem;
}

.footer-legal__nav a {
  color: var(--text-color);

  line-height: 1.5;
  text-decoration: none;

  opacity: 0.7;

  transition:
    color 0.2s ease,
    opacity 0.2s ease;
}

.footer-legal__nav a:hover {
  color: var(--menta-accent);
  opacity: 1;
}

.footer-legal__nav a:focus-visible {
  border-radius: 0.2rem;

  outline: 2px solid var(--menta-accent);
  outline-offset: 3px;
}


/* ==========================================================
   RESPONSIVE
   ========================================================== */

@media (max-width: 900px) {
  .footer-legal {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-legal__nav {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .site-footer .container {
    padding-top: 2.25rem;
    padding-bottom: 1.75rem;
  }

  .footer-legal__nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
  }
}


.footer-brand__logo{
    display:block;

    width:80px;
    height:auto;

    margin-bottom:1.25rem;
}