.elementor-170 .elementor-element.elementor-element-c306b53{--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;}/* Start custom CSS *//* ========= DTFSimple Home – Minimal, limpio y responsive ========= */
/* Paleta y tipografía (siempre modo claro) */
:root{
  --bg:#f7f8fb;
  --bg-soft:#ffffff;
  --surface:#ffffff;
  --text:#0f1220;
  --muted:#4b5563;
  --primary:#06b6d4;        /* cyan */
  --primary-2:#0ea5e9;      /* azul claro */
  --accent:#7c3aed;         /* violeta */
  --ok:#22c55e;
  --warn:#f59e0b;
  --danger:#ef4444;
  --border:#e5e7eb;

  --maxw:1080px;
  --radius:14px;
  --radius-sm:10px;
  --shadow-1:0 20px 40px rgba(2,6,23,.08);
  --shadow-2:0 12px 26px rgba(2,6,23,.06);
  --fx:cubic-bezier(.22,.61,.36,1);
}

/* Reset y base accesible */
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif;
  line-height:1.6;
  color:var(--text);
  background:var(--bg);
}
img{max-width:100%;height:auto;display:block}
a{color:var(--primary);text-decoration:none}
a:hover{filter:brightness(1.1)}
a:focus-visible, button:focus-visible, summary:focus-visible{
  outline:2px solid var(--primary);
  outline-offset:2px;
  border-radius:8px;
}

/* Contenedor global */
main, header.hero, .cta-block, footer.mini, nav.inpage-nav, section{
  width:100%;
  margin-inline:auto;
  padding-inline: clamp(16px,4vw,28px);
}
section, .cta-block{padding-block: clamp(36px,6vw,72px);margin-top: 30px;
}
section > :is(h2,h3){scroll-margin-top:110px}

/* Hero */
header.hero{
  max-width:var(--maxw);
  padding-block: clamp(56px,10vw,120px);
  margin-top:12px;
  background:var(--bg-soft);
  border:1px solid var(--border);
  border-radius:clamp(12px,2vw,20px);
  box-shadow:var(--shadow-1);
}
header.hero h1{
  margin:0 0 10px;
  font-size:clamp(28px,5vw,44px);
  line-height:1.15;
  letter-spacing:-.01em;
}
header.hero p{
  max-width:72ch;
  color:var(--muted);
  font-size:clamp(16px,1.5vw,18px);
}

/* Botones CTA */
.cta{
  display:flex;
  gap:14px;
  margin-top:22px;
  flex-wrap:wrap;
}
.cta a{
  display:inline-block;
  padding:12px 18px;
  border-radius:999px;
  border:1px solid transparent;
  font-weight:600;
  transition:transform .18s var(--fx), box-shadow .18s var(--fx), background .18s var(--fx);
  will-change:transform;
}
.cta a:first-child{
  background:linear-gradient(135deg,var(--primary),var(--primary-2));
  color:#fff;
  box-shadow:0 6px 24px rgba(14,165,233,.25);
}
.cta a:first-child:hover{transform:translateY(-1px)}
.cta a:last-child{
  background:transparent;
  color:var(--primary);
  border-color:color-mix(in oklab,var(--primary) 40%,var(--border));
  backdrop-filter:blur(4px);
}

/* Badges de confianza */
.hero .trust{
  display:flex; gap:12px; flex-wrap:wrap; margin:20px 0 0; padding:0; list-style:none;
}
.hero .trust li{
  font-size:14px; color:var(--muted);
  padding:8px 12px; border:1px dashed var(--border);
  border-radius:999px; background:var(--surface);
}

/* Navegación interna */
nav.inpage-nav{
  max-width:var(--maxw);
  position:sticky; top:0; z-index:10;
  background:var(--bg);
  backdrop-filter:blur(8px);
  border-bottom:1px solid var(--border);
}
nav.inpage-nav ul{
  display:flex; gap:10px; overflow:auto; white-space:nowrap;
  list-style:none; margin:0; padding:10px 0;
}
nav.inpage-nav a{
  display:block; padding:8px 12px; border-radius:999px; font-size:14px;
  color:var(--muted); border:1px solid transparent;
}
nav.inpage-nav a:hover{color:var(--text)}
nav.inpage-nav a[aria-current="true"], nav.inpage-nav a:focus-visible{
  color:var(--text); border-color:var(--border); background:var(--surface);
}

/* Secciones y tipografía */
section{
  max-width:var(--maxw);
  background:var(--surface);
  border-radius:var(--radius);
}
section h2{
  font-size:clamp(22px,3vw,32px);
  margin:0 0 12px;
}
section h3{
  font-size:clamp(18px,2.2vw,22px);
  margin:18px 0 10px;
  color:var(--text);
}
p{margin:10px 0 12px}
ul,ol{margin:8px 0 16px 1.2em}
li{margin:6px 0}

/* Grid de servicios */
.grid-services{
  display:grid;
  gap:16px;
  grid-template-columns: repeat(12,1fr);
  margin-top:18px;
}
.grid-services article{
  grid-column:span 12;
  padding:18px;
  border:1px solid var(--border);
  border-radius:var(--radius);
  background:var(--surface);
  box-shadow:var(--shadow-2);
  transition:transform .18s var(--fx), box-shadow .18s var(--fx), border-color .18s var(--fx);
}
.grid-services article:hover{ transform:translateY(-2px) }
.grid-services article h3{ margin-top:4px }

@media (min-width:700px){
  .grid-services article{ grid-column:span 6 }
}
@media (min-width:1024px){
  .grid-services article{ grid-column:span 3 }
}

/* Listas con checks sutiles */
section ul li{
  position:relative; padding-left:22px;
}
section ul li::before{
  content:""; position:absolute; left:0; top:.55em;
  width:10px; height:10px; border-radius:3px;
  background:linear-gradient(135deg,var(--primary-2),var(--primary));
  box-shadow:0 0 0 2px var(--surface);
}

/* OL pasos */
ol{ counter-reset:step }
ol > li{
  counter-increment:step;
  padding-left:36px; position:relative;
  border-left:1px dashed var(--border);
}
ol > li::before{
  content:counter(step);
  position:absolute; left:-20px; 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:700; font-size:14px;
  box-shadow:0 6px 18px rgba(124,58,237,.25);
}

/* Bloque CTA final */
.cta-block{
  max-width:var(--maxw);
  border:1px solid var(--border);
  border-radius:var(--radius);
  background:var(--surface);
  text-align:center;
  box-shadow:var(--shadow-1);
}
.cta-block h2{ margin-top:0 }
.cta-block p{ color:var(--muted) }

/* FAQ (details/summary) */
details{
  border:1px solid var(--border);
  border-radius:var(--radius-sm);
  background:var(--surface);
  margin:10px 0 12px;
  box-shadow:var(--shadow-2);
  overflow:hidden;
}
details[open]{ border-color:color-mix(in oklab,var(--primary) 35%,var(--border)) }
summary{
  list-style:none; cursor:pointer; padding:14px 16px; user-select:none;
  font-weight:600; color:var(--text);
  display:flex; align-items:center; gap:10px;
}
summary::-webkit-details-marker{display:none}
summary::before{
  content:"";
  width:10px; height:10px; border:2px solid var(--muted); border-left:0; border-top:0;
  transform:rotate(-45deg); transition:transform .2s var(--fx);
}
details[open] summary::before{ transform:rotate(45deg) }
details > p{ padding:0 16px 16px; color:var(--muted) }

/* Footer mini */
footer.mini{
  max-width:var(--maxw);
  padding-block:36px;
  color:var(--muted);
  border-top:1px solid var(--border);
}

/* Tarjetas y bordes bonitos */
section, .hero, .cta-block, .grid-services article{
  outline:1px solid rgba(0,0,0,.02);
}

/* Enlaces inline con subrayado elegante */
p a, li a{
  text-underline-offset:3px;
  text-decoration-thickness:1px;
  text-decoration-color:color-mix(in oklab,var(--primary) 40%,transparent);
}
p a:hover, li a:hover{
  text-decoration-thickness:2px;
  text-decoration-color:var(--primary);
}

/* Tablas */
table{
  width:100%; border-collapse:separate; border-spacing:0; margin:12px 0 18px;
  border:1px solid var(--border); border-radius:10px; overflow:hidden;
  background:var(--surface); box-shadow:var(--shadow-2);
}
th, td{ padding:12px 14px; text-align:left; border-bottom:1px solid var(--border) }
thead th{ background:var(--bg) }
tbody tr:hover{ background:var(--bg-soft) }

/* Chips de aviso */
.badge{
  display:inline-block; padding:6px 10px; border-radius:999px; font-size:12px; font-weight:700;
  color:#071017; background:linear-gradient(135deg,var(--warn),#fde68a);
}

/* Animaciones */
@media (prefers-reduced-motion:no-preference){
  [data-fade-up]{
    opacity:0; transform:translateY(10px);
    animation:fadeUp .6s var(--fx) forwards;
  }
  @keyframes fadeUp{ to{opacity:1; transform:none} }
}

/* Utilidades */
.maxw{max-width:var(--maxw); margin-inline:auto}
.center{text-align:center}
.muted{color:var(--muted)}
.hidden{display:none}

/* --------- Fin del CSS --------- *//* End custom CSS */