/* Footer VOU — réplica del home, sin depender de Tailwind */

.vou-footer {
  font-family: Montserrat, sans-serif;
  color: #fff;
}

.vou-footer__main {
  background: #000;
  padding: 4rem 0;
}

.vou-footer__container {
  width: 100%;
  margin: 0 auto;
  padding-inline: var(--vou-gutter, 1rem);
}

@media (min-width: 1400px) {
  .vou-footer__container {
    max-width: var(--vou-content-max, 1400px);
  }
}

.vou-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .vou-footer__grid {
    grid-template-columns: repeat(12, 1fr);
  }
}

.vou-footer__logo-col {
  grid-column: span 1;
}

@media (min-width: 768px) {
  .vou-footer__logo-col { grid-column: span 3; }
}

.vou-footer__logo-col img {
  height: 3rem;
  width: auto;
}

.vou-footer__col {
  grid-column: span 1;
}

@media (min-width: 768px) {
  .vou-footer__col--services { grid-column: span 3; }
  .vou-footer__col--agencies { grid-column: span 2; }
  .vou-footer__col--offices { grid-column: span 3; }
}

.vou-footer__heading {
  color: #fff;
  font-weight: 500;
  font-size: 0.875rem;
  margin: 0 0 1.5rem;
}

.vou-footer__subheading {
  color: #fff;
  font-weight: 500;
  font-size: 0.875rem;
  margin: 0 0 0.5rem;
}

.vou-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.vou-footer__list li {
  font-size: 0.875rem;
  color: hsl(0 0% 70%);
  line-height: 1.5;
}

.vou-footer__list a {
  color: hsl(0 0% 70%);
  text-decoration: none;
  transition: color 0.15s;
}

.vou-footer__list a:hover {
  color: #e1ff80;
}

.vou-footer__offices {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.vou-footer__contact {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: #e1ff80;
  text-decoration: none;
  transition: color 0.15s;
}

.vou-footer__contact:hover {
  color: rgba(225, 255, 128, 0.8);
}

.vou-footer__text {
  margin: 0;
  font-size: 0.875rem;
  color: hsl(0 0% 70%);
  line-height: 1.5;
}

.vou-footer__partners {
  grid-column: 1 / -1;
  padding-top: 2rem;
  border-top: 1px solid hsl(0 0% 15% / 0.3);
}

.vou-footer__partners-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.vou-footer__partners img {
  height: 3rem;
  width: auto;
  filter: grayscale(100%);
  transition: filter 0.3s, transform 0.3s;
}

.vou-footer__partners img.vou-footer__partner--sm {
  height: 2rem;
  object-fit: contain;
}

.vou-footer__partners img:hover {
  filter: grayscale(0);
  transform: scale(1.1);
}

.vou-footer__bar {
  background: hsl(0 0% 5%);
  padding: 1.5rem 0;
  border-top: 1px solid hsl(0 0% 15% / 0.3);
}

.vou-footer__bar-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .vou-footer__bar-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

.vou-footer__legal {
  text-align: center;
}

@media (min-width: 768px) {
  .vou-footer__legal { text-align: left; }
}

.vou-footer__legal p {
  margin: 0;
  font-size: 0.875rem;
  color: hsl(0 0% 70%);
  line-height: 1.5;
}

.vou-footer__legal a {
  color: #e1ff80;
  text-decoration: none;
  transition: color 0.15s;
}

.vou-footer__legal a:hover {
  color: rgba(225, 255, 128, 0.8);
}

.vou-footer__social {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.vou-footer__social-label {
  margin: 0;
  font-size: 0.875rem;
  color: hsl(0 0% 70%);
}

.vou-footer__social-links {
  display: flex;
  gap: 0.75rem;
}

.vou-footer__social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border-radius: 9999px;
  color: hsl(0 0% 70%);
  transition: color 0.15s, background-color 0.15s;
}

.vou-footer__social-links a:hover {
  color: #e1ff80;
  background: rgba(225, 255, 128, 0.1);
}
