/* ================================================================
   DreamyGlobes — Footer global (carga en todas las páginas)
   ================================================================ */

/* Variables needed */
:root {
  --marino-dark: #1e2260;
  --rosa: #F4A7B9;
  --marino: #2D3070;
}

/* ── Footer base ── */
.footer {
  background: #1e2260 !important;
  padding: clamp(44px,6vw,64px) clamp(16px,5vw,56px) clamp(20px,3vw,32px) !important;
  color: rgba(255,255,255,0.75) !important;
}

/* ── Grid principal ── */
.footer .ft-grid {
  display: grid !important;
  grid-template-columns: 1.4fr 1fr 1fr 1fr !important;
  gap: clamp(24px,4vw,52px) !important;
  margin-bottom: clamp(32px,4vw,48px) !important;
  max-width: 1300px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* ── Marca ── */
.footer .ft-name {
  font-family: 'Jost', sans-serif !important;
  font-size: 22px !important;
  font-weight: 700 !important;
  color: white !important;
  margin-bottom: 10px !important;
  letter-spacing: -0.3px !important;
}
.footer .ft-name span { color: #F4A7B9 !important; }
.footer .ft-brand > p,
.footer .ft-brand-desc {
  font-family: 'Jost', sans-serif !important;
  font-size: 13px !important;
  font-weight: 300 !important;
  color: rgba(255,255,255,0.6) !important;
  line-height: 1.7 !important;
  margin-bottom: 16px !important;
}

/* ── Redes sociales ── */
.footer .ft-social {
  display: flex !important;
  gap: 10px !important;
}
.footer .ft-social a {
  width: 34px !important;
  height: 34px !important;
  border-radius: 50% !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: rgba(255,255,255,0.7) !important;
  transition: all .2s !important;
  text-decoration: none !important;
}
.footer .ft-social a:hover {
  background: rgba(244,167,185,0.15) !important;
  border-color: #F4A7B9 !important;
  color: #F4A7B9 !important;
}

/* ── Columnas ── */
.footer .ft-col h4 {
  font-family: 'Jost', sans-serif !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  color: white !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  margin-bottom: 16px !important;
}
.footer .ft-col ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
.footer .ft-col ul li {
  margin-bottom: 10px !important;
}
.footer .ft-col ul li a,
.footer .ft-col a {
  font-family: 'Jost', sans-serif !important;
  font-size: 13px !important;
  font-weight: 300 !important;
  color: rgba(255,255,255,0.6) !important;
  text-decoration: none !important;
  transition: color .2s !important;
}
.footer .ft-col ul li a:hover,
.footer .ft-col a:hover {
  color: #F4A7B9 !important;
}

/* ── Contacto ── */
.footer .contact-item {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin-bottom: 10px !important;
}
.footer .contact-item a,
.footer .contact-item span {
  font-family: 'Jost', sans-serif !important;
  font-size: 13px !important;
  font-weight: 300 !important;
  color: rgba(255,255,255,0.6) !important;
  text-decoration: none !important;
}

/* ── Divisor ── */
.footer .ft-divider {
  border: none !important;
  border-top: 1px solid rgba(255,255,255,0.08) !important;
  margin: 0 auto clamp(16px,2vw,24px) !important;
  max-width: 1300px !important;
}

/* ── Pie de página ── */
.footer .ft-bottom {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  max-width: 1300px !important;
  margin: 0 auto !important;
}
.footer .ft-bottom p,
.footer .ft-bottom span,
.footer .ft-bottom a {
  font-family: 'Jost', sans-serif !important;
  font-size: 12px !important;
  font-weight: 300 !important;
  color: rgba(255,255,255,0.4) !important;
  text-decoration: none !important;
}
.footer .ft-bottom a:hover { color: rgba(255,255,255,0.7) !important; }
.footer .woo { color: rgba(255,255,255,0.4) !important; }
.footer .woo a { color: rgba(255,255,255,0.5) !important; }

/* ── Responsive ── */
@media(max-width:1024px) {
  .footer .ft-grid {
    grid-template-columns: 1fr 1fr !important;
  }
  .footer .ft-brand {
    grid-column: 1 / -1 !important;
  }
}
@media(max-width:640px) {
  .footer .ft-grid {
    grid-template-columns: 1fr 1fr !important;
  }
}
@media(max-width:420px) {
  .footer .ft-grid {
    grid-template-columns: 1fr !important;
  }
  .footer .ft-bottom {
    flex-direction: column !important;
    text-align: center !important;
  }
}
