.footer-section-map {
  font-family: "Raleway", sans-serif;
  color: #fff;
  position: relative;
}

/* Mapa ocupa todo el ancho */
.map-container-footer {
  width: 100%;
  height: 600px;
  padding: 1rem 6.4rem;
  z-index: 4000;
}

.map-footer-full {
  width: 100%;
  height: 100%;
  border: none;
}

/* Fondo con imagen + overlay */
.contact-overlay-footer {
  position: relative;
  background: url("/assets/salon-footer2.jpg") center/cover no-repeat;
  padding: 4rem 2rem;
}

.overlay-footer {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.8), rgba(0,0,0,0.4));
  z-index: 0;
}

.cards-footer {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.card-footer {
  background: rgba(11, 9, 9, 0.605);
  
  border-radius: 12px;
  padding: 2rem;
  width: 40%;
  text-align: left;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.card-footer h3 {
  margin-bottom: 1rem;
  color: var(--color5);
}

.card-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.card-footer ul li {
  margin: 0.5rem 0;
}

.card-footer a {
  color: var(--color5);
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: normal;
}

.card-footer a:hover {
  color: var(--color3);
}

/* Redes sociales */
.social-icons-footer {
  display: flex;
  justify-content: right;
  gap: 1rem;
  
}

.social-icons-footer a {
  font-size: 1.5rem;
  color: var(--color5);
  transition: color 0.3s ease;
  
}

.social-icons-footer a:hover {
  color: var(--color3);
}

/* Botón WhatsApp oficial */
.btn-whatsapp-footer {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.9rem 1.4rem;
  background-color: #25D366; /* verde oficial WhatsApp */
  color: #fff;
  font-weight: bold !important;
  border-radius: 8px;
  text-decoration: none;
  transition: ease 0.3s !important;
}

.btn-whatsapp-footer:hover {
  background-color: #1ebe5d;
  transform: translateY(-2px);
  color: #fff !important;
  transition: ease 0.1s !important;
}

/* Franja inferior */
.copyright-footer-map {
  background-color: #000;
  text-align: center;
  padding: 1rem 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  flex-direction: column;
}

.copyright-footer-map p {
  margin: 0;
  font-size: 0.85rem;
  color: #fff;
  font-weight: normal;
}

.legales-link {
  margin-top: 1rem; /* separa visualmente del resto */
  border-top: 1px solid rgba(255,255,255,0.2); /* línea sutil */
  padding-top: 0.8rem;
}

.legales-link a {
  color: var(--color3);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
}

.legales-link a:hover {
  color: var(--color2);
}
.footer-legales {
  
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.9rem;
  color: var(--color2);
}
.footer-legales a{
  text-decoration: none;
  color: inherit;
  font-weight: bold;
  transition: ease-in-out 0.2s;
  
}
.footer-legales a:hover{
  transition: ease-in-out 0.2s;
  color: var(--color5);
}


/* Responsive */
@media (max-width: 768px) {
  .cards-footer {
    flex-direction: column;
    align-items: center;
  }
  .card-footer {
    width: 100%;
  }
  .map-container-footer {
    width: 100%;
    height: 600px;
    padding:0;
    z-index: 4000;
  }
  .copyright-footer-map {
    flex-direction: column;
    gap: 1rem;
  }
  .footer-legales {
    flex-direction: column;
    gap: 0.4rem;
  }
}
