/* DAT Footer STL — Frontend CSS */

#dfstl-footer {
  position: relative;
  background: linear-gradient(180deg, var(--bg1, #0d1b2a) 0%, var(--bg2, #112236) 100%);
  color: #e0e8f0;
  overflow: hidden;
  font-family: 'Poppins','Segoe UI',sans-serif;
  margin: 0;
  padding: 0;
  width: 100%;
}

/* THREE.JS CANVAS */
#dfstl-canvas {
  position: absolute !important;
  top: 0; left: 0;
  width: 100% !important;
  height: 100% !important;
  z-index: 0;
  pointer-events: none;
}

/* INNER */
.dfstl-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px 0;
}

/* GRID 3 cols */
.dfstl-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

/* ── COL TITULO ── */
.dfstl-col-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--acc, #00c9a7);
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.dfstl-col-title-line {
  display: inline-block;
  width: 30px;
  height: 2px;
  background: var(--acc, #00c9a7);
  flex-shrink: 0;
}

/* ── EMPRESA ── */
.dfstl-logo-mark { margin-bottom: 14px; }
.dfstl-brand {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 10px;
  line-height: 1.3;
}
.dfstl-desc {
  font-size: 13px;
  color: rgba(224,232,240,.7);
  line-height: 1.7;
  margin: 0 0 20px;
}

.dfstl-info-list { display: flex; flex-direction: column; gap: 9px; margin-bottom: 22px; }
.dfstl-info-item { display: flex; align-items: flex-start; gap: 9px; font-size: 12.5px; color: rgba(224,232,240,.8); line-height: 1.4; }
.dfstl-info-ico { flex-shrink: 0; font-size: 15px; margin-top: 1px; }
.dfstl-link { color: var(--acc, #00c9a7); text-decoration: none; transition: opacity .2s; }
.dfstl-link:hover { opacity: .75; }

.dfstl-cta-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.dfstl-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none !important;
  transition: transform .2s, box-shadow .2s;
  font-family: 'Poppins',sans-serif;
}
.dfstl-btn:hover { transform: translateY(-2px); }
.dfstl-btn-wa   { background: #25d366; color: #fff !important; box-shadow: 0 4px 16px rgba(37,211,102,.35); }
.dfstl-btn-call { background: var(--acc,#00c9a7); color: #fff !important; box-shadow: 0 4px 16px rgba(0,201,167,.3); }

/* ── SERVICIOS (productos WC) ── */
.dfstl-product-list {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.dfstl-product-list li { padding: 0 !important; margin: 0 !important; }
.dfstl-product-list li::before { display: none !important; }

.dfstl-prod-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 7px;
  text-decoration: none !important;
  color: rgba(224,232,240,.8) !important;
  font-size: 13px;
  font-weight: 500;
  transition: all .2s;
  border-left: 2px solid transparent;
}
.dfstl-prod-link:hover {
  background: rgba(255,255,255,.05);
  border-left-color: var(--acc,#00c9a7);
  color: var(--acc,#00c9a7) !important;
  padding-left: 14px;
}
.dfstl-prod-arrow {
  color: var(--acc,#00c9a7);
  font-size: 18px;
  line-height: 1;
  flex-shrink: 0;
}
.dfstl-loading, .dfstl-no-prod { font-size: 12px; color: rgba(255,255,255,.4); padding: 6px 0; }

/* ── ATENCIÓN ── */
.dfstl-atencion-txt { font-size: 13px; color: rgba(224,232,240,.7); line-height: 1.7; margin: 0 0 20px; }
.dfstl-horario { display: flex; flex-direction: column; gap: 12px; }
.dfstl-horario-item { display: flex; align-items: flex-start; gap: 10px; }
.dfstl-h-ico { font-size: 18px; flex-shrink: 0; margin-top: 2px; }
.dfstl-horario-item div { display: flex; flex-direction: column; gap: 1px; }
.dfstl-horario-item strong { font-size: 12.5px; color: #fff; font-weight: 700; }
.dfstl-horario-item span { font-size: 12px; color: rgba(224,232,240,.6); }

/* ── BOTTOM BAR ── */
.dfstl-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 12px;
  color: rgba(224,232,240,.45);
  flex-wrap: wrap;
  gap: 8px;
}
.dfstl-copy { flex: 1; }
.dfstl-made { flex-shrink: 0; }
.dfstl-made a { color: var(--acc,#00c9a7); text-decoration: none; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .dfstl-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .dfstl-col-empresa { grid-column: 1/-1; }
}
@media (max-width: 560px) {
  .dfstl-grid { grid-template-columns: 1fr; gap: 28px; }
  .dfstl-inner { padding: 40px 16px 0; }
  .dfstl-bottom { flex-direction: column; text-align: center; }
}
