/* 
 * footer.css — Sonia Rodrigues 
 */

.sr-footer {
  background-color: var(--color-white);
  border-top: 2px solid var(--color-garnet);
  padding: 4rem 0 1.5rem;
  color: var(--color-graphite);
}

.sr-footer__top {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 3rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .sr-footer__top {
    grid-template-columns: 40% 15% 18% 27%;
  }
}

/* Marca e Info */
.sr-footer__brand-col {
  display: flex;
  flex-direction: column;
}

.sr-footer__brand-name {
  font-family: var(--font-editorial);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
  display: block;
}

.sr-footer__brand-desc {
  color: var(--color-slate);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 400px;
}

.sr-footer__social {
  display: flex;
  gap: 1rem;
}

.sr-footer__social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-slate);
  font-size: 1.25rem;
}

.sr-footer__social-btn:hover {
  color: var(--color-gold);
  cursor: pointer;
}

/* Navegación y Etiquetas */
.sr-footer__label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #94a3b8;
  margin-bottom: 1.5rem;
}

.sr-footer__nav-links,
.sr-footer__contact-items {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sr-footer__link,
.sr-footer__contact-item,
.sr-footer__legal-link {
  color: var(--color-slate);
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

/* Hover Unificado (Columnas 2, 3, 4 y Bottom) */
.sr-footer__link:hover,
.sr-footer__contact-item:hover,
.sr-footer__legal-link:hover {
  color: var(--color-garnet);
  font-weight: 600;
  cursor: pointer;
}

.sr-footer__contact-item:not(.sr-footer__contact-item--link):hover {
  cursor: default;
}

/* Contacto */
.sr-footer__contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  word-break: break-word; /* Evita que el correo electrónico empuje el layout */
}

.sr-footer__contact-icon {
  color: var(--color-gold);
}

/* Bottom Bar */
.sr-footer__divider {
  height: 1px;
  background-color: var(--color-pearl);
  margin-bottom: 1.5rem;
}

.sr-footer__bottom-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .sr-footer__bottom-wrapper {
    flex-direction: row;
  }
}

.sr-footer__copy {
  color: #94a3b8;
  font-size: 0.85rem;
}

.sr-footer__legal {
  display: flex;
  gap: 2rem;
}

.sr-footer__legal-link {
  color: #94a3b8;
  font-size: 0.85rem;
}
