@media(max-width:1366px){.elementor-16856 .elementor-element.elementor-element-5fbbaae{width:var( --container-widget-width, 1092.8px );max-width:1092.8px;--container-widget-width:1092.8px;--container-widget-flex-grow:0;}}/* Start custom CSS *//* =====================================================
   OCULTAR TÍTULO DE PÁGINA (Landing Prueba)
   ===================================================== */
.entry-title,
.page-title,
h1.entry-title,
h1.page-title,
.elementor-page-title,
.elementor-heading-title,
.et_pb_title_container,
.wp-block-post-title {
  display: none !important;
}
/* =====================================================
   DESIGN TOKENS
   ===================================================== */
:root {
  --c-primary: #1F5BD6;          /* CTA blue */
  --c-primary-dark: #174AB0;     /* hover */
  --c-primary-light: #E6F1FB;    /* light section bg */
  --c-primary-pale: #F4F8FE;     /* alt section bg */
  --c-navy: #0A2B52;             /* headings + dark sections */
  --c-navy-soft: #14365E;
  --c-accent: #FFC93C;           /* yellow squiggle */
  --c-success: #1D9E75;          /* checks */
  --c-text: #0F1B33;
  --c-text-soft: #4A5878;
  --c-text-muted: #8595B0;
  --c-border: #E5EAF2;
  --c-white: #FFFFFF;

  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 20px;

  --shadow-sm: 0 2px 8px rgba(10, 43, 82, 0.06);
  --shadow-md: 0 8px 24px rgba(10, 43, 82, 0.08);
  --shadow-lg: 0 12px 40px rgba(31, 91, 214, 0.12);

  --max-w: 1200px;
}

/* =====================================================
   RESET
   ===================================================== */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--c-text);
  line-height: 1.6;
  font-size: 16px;
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
a { color: var(--c-primary); text-decoration: none; }

/* =====================================================
   LAYOUT
   ===================================================== */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-alt { background: var(--c-primary-pale); }
.section-soft { background: var(--c-primary-light); }
.section-dark { background: var(--c-navy); color: var(--c-white); }

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--c-primary);
  background: var(--c-primary-light);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

h1, h2, h3 { color: var(--c-navy); font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; }
h1 { font-size: clamp(32px, 4.2vw, 52px); }
h2 { font-size: clamp(26px, 3vw, 38px); margin-bottom: 16px; }
h3 { font-size: 20px; font-weight: 600; }

.lead { font-size: 18px; color: var(--c-text-soft); line-height: 1.6; }

/* squiggle accent under section titles (replicates Metacontratas brand detail) */
.squiggle { position: relative; display: inline-block; padding-bottom: 8px; }
.squiggle::after {
  content: ''; position: absolute; left: 0; bottom: -2px; width: 64px; height: 8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 8' fill='none'%3E%3Cpath d='M0 4 Q 4 0, 8 4 T 16 4 T 24 4 T 32 4 T 40 4 T 48 4 T 56 4 T 64 4' stroke='%23FFC93C' stroke-width='2.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 16px 28px;
  font-size: 16px; font-weight: 600;
  border-radius: var(--r-md);
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--c-primary); color: var(--c-white);
  box-shadow: var(--shadow-md);
}
.btn-primary:hover { background: var(--c-primary-dark); transform: translateY(-1px); box-shadow: var(--shadow-lg); }
.btn-primary .arrow { transition: transform 0.2s ease; }
.btn-primary:hover .arrow { transform: translateX(4px); }
.btn-secondary {
  background: transparent; color: var(--c-primary); border: 2px solid var(--c-primary);
}
.btn-secondary:hover { background: var(--c-primary); color: var(--c-white); }
.btn-block { width: 100%; }

/* =====================================================
   HEADER (minimal — quitar si usáis header del tema)
   ===================================================== */
.site-header {
  background: var(--c-white);
  border-bottom: 1px solid var(--c-border);
  position: sticky; top: 0; z-index: 50;
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; padding-bottom: 16px;
}
.logo { font-size: 20px; font-weight: 700; color: var(--c-primary); display: flex; align-items: center; gap: 8px; }
.logo-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  background: var(--c-primary); color: var(--c-white);
  border-radius: 8px; font-size: 18px; font-weight: 800;
}
.header-cta { font-size: 14px; font-weight: 600; padding: 10px 18px; }

/* =====================================================
   HERO
   ===================================================== */
.hero {
  padding: 80px 0 100px;
  background:
    radial-gradient(circle at 90% 10%, rgba(31, 91, 214, 0.06) 0%, transparent 40%),
    var(--c-white);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-copy h1 { margin-bottom: 20px; }
.hero-copy h1 .highlight { color: var(--c-primary); }
.hero-copy .lead { margin-bottom: 28px; max-width: 560px; }
.hero-checks { list-style: none; display: grid; gap: 12px; margin-bottom: 0; }
.hero-checks li {
  display: flex; align-items: center; gap: 12px;
  font-size: 16px; color: var(--c-text-soft); font-weight: 500;
}
.check-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; flex-shrink: 0;
  background: rgba(29, 158, 117, 0.12); border-radius: 50%;
}
.check-icon svg { width: 14px; height: 14px; }

/* =====================================================
   HERO FORM (2-step)
   ===================================================== */
.form-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.form-card::before {
  content: ''; position: absolute; top: -8px; left: -8px; right: -8px; bottom: -8px;
  background: var(--c-primary-light); border-radius: calc(var(--r-lg) + 8px);
  z-index: -1;
}
.form-title { font-size: 22px; font-weight: 700; color: var(--c-navy); margin-bottom: 6px; }
.form-subtitle { font-size: 14px; color: var(--c-text-muted); margin-bottom: 24px; }

.field-group { margin-bottom: 14px; }
.field-group label { display: block; font-size: 13px; font-weight: 600; color: var(--c-text); margin-bottom: 6px; }
.field-group input,
.field-group select,
.field-group textarea {
  width: 100%; padding: 14px 16px;
  font-size: 15px; font-family: inherit; color: var(--c-text);
  background: var(--c-white);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-sm);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field-group textarea { resize: vertical; min-height: 90px; line-height: 1.5; }
.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
  outline: none; border-color: var(--c-primary);
  box-shadow: 0 0 0 3px rgba(31, 91, 214, 0.15);
}
.field-group input::placeholder,
.field-group textarea::placeholder { color: var(--c-text-muted); }
.form-step { display: none; }
.form-step.active { display: block; animation: stepIn 0.35s ease; }
@keyframes stepIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.form-microcopy {
  font-size: 12px; color: var(--c-text-muted); text-align: center;
  margin-top: 14px; line-height: 1.5;
}
.form-rgpd { font-size: 11px; color: var(--c-text-muted); margin-top: 14px; line-height: 1.45; }
.form-rgpd a { text-decoration: underline; }
.form-success { display: none; text-align: center; padding: 20px 0; }
.form-success.active { display: block; }
.form-success .success-icon {
  width: 56px; height: 56px; margin: 0 auto 16px;
  background: rgba(29, 158, 117, 0.12); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.form-success h3 { margin-bottom: 8px; }

/* =====================================================
   PAIN MIRROR
   ===================================================== */
.pain-header { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.pain-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.pain-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 28px 24px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.pain-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(31, 91, 214, 0.2); }
.pain-icon {
  width: 44px; height: 44px;
  background: var(--c-primary-light); color: var(--c-primary);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.pain-icon svg { width: 22px; height: 22px; }
.pain-card p { font-size: 16px; color: var(--c-text); font-weight: 500; line-height: 1.5; }

/* =====================================================
   TIMELINE — Plan Cambio Seguro
   ===================================================== */
.timeline-header { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.timeline-header .lead { margin-top: 16px; }

.timeline-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.timeline-line {
  position: absolute; top: 28px; left: 8%; right: 8%; height: 2px;
  background: linear-gradient(90deg, var(--c-primary) 0%, var(--c-primary) 100%);
  opacity: 0.25;
  z-index: 0;
}
.timeline-step {
  position: relative; z-index: 1;
  background: var(--c-white);
  border-radius: var(--r-md);
  padding: 20px 18px;
  text-align: center;
}
.timeline-num {
  width: 56px; height: 56px;
  margin: 0 auto 16px;
  background: var(--c-primary); color: var(--c-white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 700;
  box-shadow: 0 4px 12px rgba(31, 91, 214, 0.3);
  border: 4px solid var(--c-white);
}
.timeline-days {
  font-size: 12px; font-weight: 700; color: var(--c-primary);
  text-transform: uppercase; letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.timeline-step h3 { font-size: 17px; margin-bottom: 8px; }
.timeline-step p { font-size: 14px; color: var(--c-text-soft); line-height: 1.5; }

/* =====================================================
   STAT BAND
   ===================================================== */
.stat-band {
  padding: 64px 0;
  background: var(--c-navy);
  color: var(--c-white);
  position: relative; overflow: hidden;
}
.stat-band::before {
  content: ''; position: absolute; top: 0; right: 0; width: 50%; height: 100%;
  background: radial-gradient(circle at 80% 50%, rgba(255, 201, 60, 0.08) 0%, transparent 60%);
}
.stat-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  text-align: center; position: relative;
}
.stat-number {
  font-size: clamp(48px, 6vw, 72px); font-weight: 800;
  color: var(--c-accent); line-height: 1; letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.stat-label { font-size: 16px; color: rgba(255,255,255,0.85); font-weight: 500; }

/* =====================================================
   DIFFERENTIATORS
   ===================================================== */
.diff-header { max-width: 720px; margin-bottom: 56px; }
.diff-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.diff-card {
  display: flex; gap: 20px; align-items: flex-start;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 28px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.diff-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.diff-icon {
  flex-shrink: 0;
  width: 52px; height: 52px;
  background: var(--c-primary-light); color: var(--c-primary);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.diff-icon svg { width: 26px; height: 26px; }
.diff-card h3 { margin-bottom: 6px; }
.diff-card p { font-size: 15px; color: var(--c-text-soft); line-height: 1.55; }

/* =====================================================
   MIGRATION BLOCK
   ===================================================== */
.migration-inner {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 56px 48px;
  max-width: 920px; margin: 0 auto;
}
.migration-inner h2 { margin-bottom: 16px; }
.migration-inner .lead { margin-bottom: 24px; max-width: 720px; }
.pills { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--c-primary-light); color: var(--c-primary);
  font-size: 14px; font-weight: 600;
  padding: 8px 16px; border-radius: 999px;
}
.pill::before { content: '→'; opacity: 0.7; }
.disclaimer {
  font-size: 12px; color: var(--c-text-muted);
  font-style: italic; line-height: 1.55;
  padding-top: 20px; border-top: 1px solid var(--c-border);
}

/* =====================================================
   TRUST STACK
   ===================================================== */
.trust-label { text-align: center; color: var(--c-text-muted); font-size: 14px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 28px; }
.logos-row {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 24px;
  align-items: center; margin-bottom: 64px;
}
.logo-item {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  height: 64px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--c-text-muted);
  font-size: 14px;
  /* Replace these placeholder boxes with real client logo <img> tags */
}
.iso-row {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px;
  align-items: center; max-width: 720px; margin: 0 auto;
}
.iso-badge {
  width: 80px; height: 80px; margin: 0 auto;
  background: var(--c-white);
  border: 2px solid var(--c-primary);
  border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--c-primary); font-weight: 700;
}
.iso-badge .iso-top { font-size: 9px; opacity: 0.7; }
.iso-badge .iso-num { font-size: 14px; }

/* =====================================================
   TESTIMONIAL
   ===================================================== */
.testimonial {
  max-width: 880px; margin: 0 auto;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 48px;
  display: grid; grid-template-columns: 100px 1fr; gap: 32px;
  align-items: center;
  position: relative;
}
.testimonial::before {
  content: '"'; position: absolute; top: 8px; right: 32px;
  font-size: 120px; font-family: Georgia, serif;
  color: var(--c-primary-light); line-height: 1;
}
.testimonial-avatar {
  width: 100px; height: 100px; border-radius: 50%;
  background: var(--c-primary-light); color: var(--c-primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; font-weight: 700;
}
.testimonial blockquote {
  font-size: 20px; line-height: 1.55; color: var(--c-navy);
  font-weight: 500; margin-bottom: 16px;
}
.testimonial cite { font-style: normal; font-size: 14px; color: var(--c-text-soft); font-weight: 500; }
.testimonial cite strong { color: var(--c-navy); font-weight: 700; }
.testimonial-placeholder-note {
  font-size: 11px; color: var(--c-text-muted); font-style: italic; margin-top: 8px; display: block;
}

/* =====================================================
   FAQ
   ===================================================== */
.faq-list { max-width: 820px; margin: 40px auto 0; }
.faq-item {
  border-bottom: 1px solid var(--c-border);
  padding: 4px 0;
}
.faq-item summary {
  cursor: pointer; list-style: none;
  padding: 22px 0; padding-right: 40px;
  font-size: 17px; font-weight: 600; color: var(--c-navy);
  position: relative;
  transition: color 0.2s;
}
.faq-item summary:hover { color: var(--c-primary); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-size: 24px; color: var(--c-primary); font-weight: 400;
  transition: transform 0.3s;
}
.faq-item[open] summary::after { content: '−'; transform: translateY(-50%) rotate(0deg); }
.faq-item .faq-answer {
  padding: 0 0 22px;
  font-size: 16px; color: var(--c-text-soft); line-height: 1.65;
  max-width: 720px;
}

/* =====================================================
   FINAL CTA
   ===================================================== */
.final-cta {
  background: linear-gradient(135deg, var(--c-primary-light) 0%, #DDE9F8 100%);
  padding: 96px 0;
  text-align: center;
}
.final-cta-inner { max-width: 720px; margin: 0 auto; }
.final-cta h2 { margin-bottom: 16px; }
.final-cta .lead { margin-bottom: 32px; }
.cta-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.final-cta .form-microcopy { margin-top: 20px; font-size: 14px; }

/* =====================================================
   FOOTER (minimal — quitar si usáis footer del tema)
   ===================================================== */
.site-footer {
  background: var(--c-navy); color: rgba(255,255,255,0.7);
  padding: 32px 0; font-size: 14px;
}
.site-footer .container {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
}
.site-footer .logo { color: var(--c-white); }
.site-footer a { color: rgba(255,255,255,0.85); }

/* =====================================================
   SCROLL REVEAL
   ===================================================== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 960px) {
  .section { padding: 64px 0; }
  .hero { padding: 56px 0 72px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline-track { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .timeline-line { display: none; }
  .diff-grid { grid-template-columns: 1fr; }
  .migration-inner { padding: 40px 28px; }
  .logos-row { grid-template-columns: repeat(3, 1fr); }
  .iso-row { grid-template-columns: repeat(3, 1fr); }
  .testimonial { grid-template-columns: 80px 1fr; gap: 20px; padding: 32px 24px; }
  .testimonial-avatar { width: 80px; height: 80px; font-size: 26px; }
  .testimonial blockquote { font-size: 17px; }
}

@media (max-width: 560px) {
  .section { padding: 56px 0; }
  .pain-grid { grid-template-columns: 1fr; }
  .timeline-track { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr; gap: 24px; }
  .form-card { padding: 28px 22px; }
  .testimonial { grid-template-columns: 1fr; text-align: center; }
  .testimonial-avatar { margin: 0 auto; }
  .testimonial::before { display: none; }
  .header-cta { display: none; }
  .cta-row { flex-direction: column; }
  .cta-row .btn { width: 100%; }
}/* End custom CSS */