/* footer.css */

/* Variables de color */
:root {
  --color-primario: #1a73e8;
  --color-texto: #111;
  --color-secundario: #666;
}

/* Footer */
footer {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid #e0e0e0;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;

.responsive-map {
  position: relative;
  display: inline-block;
  max-width: 100%;
}

.responsive-map img {
  width: 100%;
  height: auto;
  display: block;
}

.responsive-map .hotspot {
  position: absolute;
  width: 10%;       /* tamaño del hotspot, ajusta si es necesario */
  height: 10%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: transparent;  /* el punto no se ve */
  background: rgba(255, 0, 0, 0.2);   /* círculo semi-transparente */
  border: 2px solid rgba(255,0,0,0.5);
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
}

  gap: 20px;
  background-color: #fff;
  box-sizing: border-box;
}

.footer-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 600px;
}

.footer-text p {
  margin: 0;
  color: var(--color-secundario);
}

.footer-text .ciap-title {
  font-weight: 500;
  font-size: 14px;
  color: var(--color-texto);
}

.footer-text .ciap-sub {
  font-size: 13px;
}

.footer-text .ciap-addr {
  font-size: 12px;
}

.footer-text .ciap-addr a {
  color: var(--color-primario);
  font-size: 12px;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.footer-text .ciap-addr a:hover {
  text-decoration: underline;
}

.logo-link img {
  height: 50px;
  transition: transform 0.2s ease;
}


@media (max-width: 600px) {
  footer {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .logo-link img {
    width: 140px;
    margin-top: 10px;
  }

  .footer-text {
    align-items: center;

