.elementor-486 .elementor-element.elementor-element-c2f48ea{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}:root{--page-title-display:none;}/* Start custom CSS *//* ====== DTF Murcia (Elementor-safe) ====== */
.ml {
  --bg: #f7f8fb;
  --surface: #ffffff;
  --text: #0f1220;
  --muted: #4b5563;
  --primary: #06b6d4;
  --primary-2: #0ea5e9;
  --accent: #7c3aed;
  --border: #e5e7eb;
  --radius: 16px;
  --shadow-1: 0 20px 40px rgba(2,6,23,.06);
  --shadow-2: 0 12px 26px rgba(2,6,23,.05);
  --maxw: 1080px;
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Noto Sans", sans-serif;
}
.ml * { box-sizing: border-box; }
.ml a { color: var(--primary-2); text-decoration: none; }
.ml a:hover { text-decoration: underline; }

/* Contenedores & ritmo vertical */
.ml .ml-breadcrumbs,
.ml .ml-hero,
.ml .ml-inpage,
.ml .ml-section {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 28px);
}
.ml .ml-hero,
.ml .ml-section { padding-block: clamp(40px, 6vw, 84px); }

/* Migas */
.ml .ml-breadcrumbs {
  padding-block: 12px;
  color: var(--muted);
  font-size: 14px;
}
.ml .ml-breadcrumbs span { opacity: .85; }

/* HERO */
.ml .ml-hero {
  margin-top: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-1);
}
.ml .ml-hero h1 {
  margin: 0 0 10px;
  font-size: clamp(28px, 4.8vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.ml .ml-lead {
  max-width: 72ch;
  color: var(--muted);
  font-size: clamp(16px, 1.6vw, 18px);
}

/* CTA */
.ml .ml-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 18px; }
.ml .ml-btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform .18s cubic-bezier(.22,.61,.36,1), box-shadow .18s cubic-bezier(.22,.61,.36,1), background .18s;
}
.ml .ml-btn--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 8px 28px rgba(14,165,233,.22);
}
.ml .ml-btn--primary:hover { transform: translateY(-1px); }
.ml .ml-btn--ghost {
  color: var(--primary-2);
  background: #fff;
  border-color: color-mix(in oklab, var(--primary-2) 35%, var(--border));
}

/* Badges confianza */
.ml .ml-trust {
  display: flex; flex-wrap: wrap;
  gap: 10px 12px; margin: 16px 0 0; padding: 0; list-style: none; color: var(--muted);
}
.ml .ml-trust li {
  padding: 8px 12px;
  border: 1px dashed var(--border);
  border-radius: 999px;
  background: #fff;
  font-size: 14px;
}

/* NAV secciones */
.ml .ml-inpage {
  position: sticky; top: 0; z-index: 9;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding-block: 10px;
  backdrop-filter: blur(8px);
}
.ml .ml-inpage ul {
  display: flex; gap: 8px; overflow: auto; white-space: nowrap;
  margin: 0; padding: 0; list-style: none;
}
.ml .ml-inpage a {
  display: block; padding: 8px 12px; border-radius: 999px; font-size: 14px;
  color: var(--muted); border: 1px solid transparent;
}
.ml .ml-inpage a:hover { color: var(--text); }
.ml .ml-inpage a[aria-current="true"],
.ml .ml-inpage a:focus-visible {
  color: var(--text); background: #fff; border-color: var(--border); font-weight: 600;
  outline: none;
}

/* Secciones */
.ml .ml-section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-2);
  margin-top: 18px;
}
.ml .ml-section h2 {
  margin: 0 0 12px;
  font-size: clamp(22px, 3vw, 32px);
  letter-spacing: -0.005em;
}
.ml .ml-section p { margin: 10px 0 12px; line-height: 1.75; color: var(--text); }
.ml .ml-muted { color: var(--muted); }

/* Grid de ventajas */
.ml .ml-grid {
  display: grid; gap: 16px;
  grid-template-columns: repeat(12, 1fr);
}
.ml .ml-card {
  grid-column: span 12;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-2);
  padding: 20px;
}
@media (min-width: 768px) {
  .ml .ml-card { grid-column: span 6; }
}
@media (min-width: 1024px) {
  .ml .ml-card { grid-column: span 3; }
}

/* Pasos */
.ml .ml-steps { counter-reset: step; margin-left: 0; padding-left: 0; }
.ml .ml-steps > li {
  list-style: none;
  counter-increment: step;
  position: relative;
  padding-left: 36px;
  border-left: 1px dashed var(--border);
  margin: 10px 0;
}
.ml .ml-steps > li::before {
  content: counter(step);
  position: absolute; left: -16px; top: 2px;
  width: 28px; height: 28px; border-radius: 999px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  color: #fff; font-weight: 800; font-size: 14px;
  box-shadow: 0 6px 18px rgba(124,58,237,.25);
}

/* Tabla */
.ml .ml-table-wrap { overflow-x: auto; }
.ml .ml-table {
  width: 100%; border-collapse: separate; border-spacing: 0;
  border: 1px solid var(--border); border-radius: 12px; overflow: hidden;
  background: var(--surface);
}
.ml .ml-table th, .ml .ml-table td {
  padding: 12px 14px; border-bottom: 1px solid var(--border); text-align: left;
}
.ml .ml-table thead th { background: var(--bg); }

/* FAQ (details) */
.ml .ml-faq {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  margin: 10px 0 12px;
  overflow: hidden;
}
.ml .ml-faq > summary {
  cursor: pointer; list-style: none; user-select: none;
  padding: 14px 16px; font-weight: 700; color: var(--text);
  position: relative;
}
.ml .ml-faq > summary::-webkit-details-marker { display: none; }
.ml .ml-faq > summary::after {
  content: ""; width: 10px; height: 10px;
  border: 2px solid var(--primary-2); border-left: 0; border-top: 0;
  transform: rotate(-45deg);
  position: absolute; right: 16px; top: 18px;
  transition: transform .2s ease;
}
.ml .ml-faq[open] > summary::after { transform: rotate(45deg); }
.ml .ml-faq > p { padding: 0 16px 16px; color: var(--muted); }

/* CTA final */
.ml .ml-cta-block {
  text-align: center;
  border: 1px solid color-mix(in oklab, var(--primary-2) 22%, var(--border));
  background: linear-gradient(180deg, #fff, #f9fafc);
}
.ml .ml-nap { color: var(--muted); margin-top: 8px; }

/* Utilidades de foco accesible */
.ml a:focus-visible, .ml button:focus-visible, .ml summary:focus-visible {
  outline: 2px solid var(--primary-2);
  outline-offset: 2px;
  border-radius: 8px;
}/* End custom CSS */