.elementor-1092 .elementor-element.elementor-element-657d31f6{--display:flex;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}/* Start custom CSS *//* ── VARIABLES ── */
  :root {
    --navy:       #1B3A5C;   /* azul marino principal */
    --navy-dark:  #0F2540;   /* fondos oscuros */
    --accent:     #2E7DD1;   /* azul medio — énfasis, botones, links */
    --text:       #1A2B3C;   /* texto principal */
    --text-soft:  #4A6278;   /* texto secundario */
    --bg:         #F8F7F4;   /* fondo crema muy claro */
    --bg-alt:     #EFF2F6;   /* fondo alternativo levemente azulado */
    --line:       #D5DCE5;   /* bordes y separadores */
    --white:      #FFFFFF;
  }

  /* ── RESET ── */
  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'DM Sans', Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }

  /* ── HEADER ── */
  header {
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 1.4rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  /* ── HERO ── */
  .hero {
    background: var(--navy-dark);
    padding: 5rem 4rem 4.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 75% 40%, rgba(46,125,209,0.12) 0%, transparent 65%);
    pointer-events: none;
  }
  .hero-tag {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-size: 0.72rem; font-weight: 600;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.3rem;
  }
  .hero-tag::before {
    content: ''; display: block;
    width: 24px; height: 1.5px; background: var(--accent);
  }
  .hero h1 {
    font-size: clamp(1.9rem, 3.2vw, 2.9rem);
    font-weight: 700; line-height: 1.15;
    color: var(--bg);
    letter-spacing: -0.02em;
    margin-bottom: 1.2rem;
  }
  .hero h1 em { font-style: normal; color: var(--accent); }
  .hero-desc {
    color: rgba(248,247,244,0.65);
    font-size: 1rem; line-height: 1.75;
    max-width: 460px;
    margin-bottom: 2.2rem;
  }
  .hero-cta { display: flex; gap: 0.9rem; flex-wrap: wrap; }
  .btn-primary {
    background: var(--accent); color: var(--white);
    padding: 0.78rem 1.7rem; border-radius: 4px;
    text-decoration: none; font-weight: 600; font-size: 0.88rem;
    transition: background 0.18s, transform 0.15s;
    display: inline-block;
  }
  .btn-primary:hover { background: #2369B8; transform: translateY(-1px); }
  .btn-ghost {
    border: 1.5px solid rgba(248,247,244,0.22); color: rgba(248,247,244,0.75);
    padding: 0.78rem 1.7rem; border-radius: 4px;
    text-decoration: none; font-weight: 500; font-size: 0.88rem;
    transition: all 0.18s; display: inline-block;
  }
  .btn-ghost:hover { border-color: rgba(248,247,244,0.55); color: var(--bg); }

  .hero-iso {
    display: flex; justify-content: center; align-items: center;
    position: relative; z-index: 2;
  }

  /* ── STATS ── */
  .stats {
    background: var(--white);
    border-bottom: 1px solid var(--line);
    display: grid; grid-template-columns: repeat(4,1fr);
  }
  .stat {
    padding: 1.8rem 1.2rem; text-align: center;
    border-right: 1px solid var(--line);
  }
  .stat:last-child { border-right: none; }
  .stat-num {
    font-size: 1.9rem; font-weight: 700;
    color: var(--navy); letter-spacing: -0.03em;
    display: block; margin-bottom: 0.25rem;
  }
  .stat-label { font-size: 0.8rem; color: var(--text-soft); line-height: 1.4; }

  /* ── SECCIONES ── */
  .section { padding: 5rem 4rem; }
  .section-alt  { background: var(--bg-alt); }
  .section-dark { background: var(--navy); }
  .section-navy { background: var(--navy-dark); }

  .eyebrow {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-size: 0.72rem; font-weight: 600;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--accent); margin-bottom: 0.7rem;
  }
  .eyebrow::before {
    content: ''; display: block;
    width: 20px; height: 1.5px; background: var(--accent);
  }
  h2 {
    font-size: clamp(1.5rem, 2.4vw, 2.1rem);
    font-weight: 700; line-height: 1.2;
    letter-spacing: -0.02em; color: var(--text);
    margin-bottom: 0.75rem;
  }
  .section-dark h2,
  .section-navy h2 { color: var(--bg); }
  .lead {
    font-size: 0.98rem; line-height: 1.75;
    color: var(--text-soft); max-width: 620px;
    margin-bottom: 2.8rem;
  }
  .section-dark .lead,
  .section-navy .lead { color: rgba(248,247,244,0.6); }

  /* ── QUÉ HACEMOS ── */
  .que-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 3rem; align-items: start;
  }
  .feat-cards { display: flex; flex-direction: column; gap: 1px; }
  .feat-card {
    display: flex; gap: 1.1rem; align-items: flex-start;
    padding: 1.3rem 1.1rem;
    background: var(--white);
    border: 1px solid var(--line);
    transition: border-color 0.18s, background 0.18s;
    cursor: default;
  }
  .feat-card:first-child { border-radius: 6px 6px 0 0; }
  .feat-card:last-child  { border-radius: 0 0 6px 6px; }
  .feat-card:hover { background: var(--bg-alt); border-color: var(--accent); }
  .feat-icon-box {
    width: 36px; height: 36px; min-width: 36px;
    background: var(--navy); border-radius: 5px;
    display: flex; align-items: center; justify-content: center;
  }
  .feat-card h4 { font-size: 0.9rem; font-weight: 600; color: var(--text); margin-bottom: 0.2rem; }
  .feat-card p  { font-size: 0.83rem; color: var(--text-soft); line-height: 1.55; }

  /* Specs */
  .specs-box {
    border: 1px solid var(--line); border-radius: 6px;
    overflow: hidden; background: var(--white);
  }
  .specs-title {
    padding: 0.9rem 1.3rem; background: var(--navy);
    color: var(--bg); font-size: 0.82rem; font-weight: 600;
    letter-spacing: 0.04em;
    display: flex; align-items: center; gap: 0.5rem;
  }
  .spec-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 0.7rem 1.3rem; border-bottom: 1px solid var(--line);
    font-size: 0.86rem;
  }
  .spec-row:last-child { border-bottom: none; }
  .spec-k { color: var(--text-soft); }
  .spec-v { font-weight: 600; color: var(--navy); }
  .ficha-link {
    display: inline-flex; align-items: center; gap: 0.4rem;
    margin-top: 0.9rem; font-size: 0.83rem; font-weight: 600;
    color: var(--accent); text-decoration: none;
    border-bottom: 1px solid transparent; transition: border-color 0.15s;
  }
  .ficha-link:hover { border-color: var(--accent); }

  /* ── RED ── */
  .red-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.2rem; }
  .red-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px; padding: 1.8rem 1.4rem;
    transition: background 0.18s, border-color 0.18s;
  }
  .red-card:hover { background: rgba(255,255,255,0.08); border-color: var(--accent); }
  .red-icon-wrap {
    width: 38px; height: 38px; border-radius: 6px;
    background: rgba(46,125,209,0.16);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1rem;
  }
  .red-card h3 { font-size: 0.95rem; font-weight: 600; color: var(--bg); margin-bottom: 0.45rem; }
  .red-card p  { font-size: 0.83rem; color: rgba(248,247,244,0.58); line-height: 1.6; }
  .red-link {
    display: inline-flex; align-items: center; gap: 0.4rem;
    margin-top: 2.2rem; color: var(--accent);
    font-size: 0.85rem; font-weight: 600; text-decoration: none;
    border-bottom: 1px solid rgba(46,125,209,0.35); padding-bottom: 1px;
    transition: border-color 0.15s;
  }
  .red-link:hover { border-color: var(--accent); }

  /* ── ATRIBUTOS ── */
  .tabs {
    display: flex; border-bottom: 1px solid var(--line);
    margin-bottom: 1.8rem;
  }
  .tab-btn {
    padding: 0.7rem 1.3rem; border: none; background: none; cursor: pointer;
    font-family: 'DM Sans', Arial, sans-serif;
    font-size: 0.86rem; font-weight: 500; color: var(--text-soft);
    border-bottom: 2px solid transparent; margin-bottom: -1px;
    transition: all 0.15s;
    display: flex; align-items: center; gap: 0.45rem;
  }
  .tab-btn.active { color: var(--navy); border-bottom-color: var(--navy); font-weight: 600; }
  .tab-btn:hover  { color: var(--navy); }
  .tab-content { display: none; }
  .tab-content.active { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px,1fr)); gap: 1px; }
  .attr-item {
    display: flex; gap: 0.9rem; align-items: flex-start;
    padding: 1.05rem 1.1rem; background: var(--white);
    border: 1px solid var(--line); transition: all 0.15s;
  }
  .attr-item:hover { background: var(--bg-alt); border-color: var(--accent); }
  .attr-icon {
    width: 30px; height: 30px; min-width: 30px; border-radius: 4px;
    background: var(--bg-alt);
    display: flex; align-items: center; justify-content: center;
    margin-top: 0.1rem;
  }
  .attr-item strong { font-size: 0.86rem; color: var(--text); display: block; margin-bottom: 0.15rem; }
  .attr-item span   { font-size: 0.8rem; color: var(--text-soft); line-height: 1.5; }

  /* ── QUIÉN ── */
  .quien-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
  .quien-card {
    border: 1px solid var(--line); border-radius: 6px;
    overflow: hidden; background: var(--white);
    transition: box-shadow 0.2s, border-color 0.2s;
  }
  .quien-card:hover { box-shadow: 0 6px 20px rgba(27,58,92,0.1); border-color: var(--accent); }
  .quien-head {
    background: var(--navy); padding: 1.2rem 1.5rem;
    display: flex; align-items: center; gap: 0.9rem;
  }
  .quien-head-icon {
    width: 34px; height: 34px; border-radius: 5px;
    background: rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
  }
  .quien-head h3 { font-size: 0.95rem; font-weight: 600; color: var(--bg); }
  .quien-body { padding: 1.1rem 1.5rem; }
  .quien-body ul { list-style: none; }
  .quien-body li {
    padding: 0.55rem 0; font-size: 0.85rem; color: var(--text-soft);
    border-bottom: 1px solid var(--line);
    display: flex; align-items: center; gap: 0.55rem;
  }
  .quien-body li:last-child { border-bottom: none; }
  .li-chevron { color: var(--accent); font-size: 0.7rem; font-weight: 700; }

  /* ── PROCESO ── */
  .steps {
    display: grid; grid-template-columns: repeat(4,1fr);
    gap: 0; position: relative;
  }
  .steps::before {
    content: ''; position: absolute;
    top: 26px; left: 13%; right: 13%; height: 1px;
    background: var(--line); z-index: 0;
  }
  .step { text-align: center; padding: 0 1rem; position: relative; z-index: 1; }
  .step-num {
    width: 52px; height: 52px; border-radius: 50%;
    background: var(--navy); color: var(--bg);
    font-size: 1rem; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1rem;
    border: 3px solid var(--bg-alt);
    box-shadow: 0 0 0 1.5px var(--accent);
  }
  .step-icon-wrap {
    width: 26px; height: 26px; border-radius: 4px;
    background: var(--line);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 0.6rem;
  }
  .step h3 { font-size: 0.87rem; font-weight: 600; color: var(--text); margin-bottom: 0.35rem; }
  .step p  { font-size: 0.79rem; color: var(--text-soft); line-height: 1.55; }

  /* ── FOOTER CTA ── */
  .footer-cta {
    background: var(--navy); padding: 3.5rem 4rem;
    display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  }
  .footer-cta h2 { color: var(--bg); font-size: clamp(1.2rem,1.9vw,1.8rem); max-width: 460px; }
  .footer-cta a {
    background: var(--accent); color: var(--white);
    padding: 0.85rem 2rem; border-radius: 4px;
    text-decoration: none; font-weight: 600; white-space: nowrap;
    font-size: 0.88rem; transition: background 0.18s;
  }
  .footer-cta a:hover { background: #2369B8; }

  footer {
    background: var(--navy-dark); color: rgba(248,247,244,0.38);
    padding: 1.6rem 4rem;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.8rem;
  }
  .footer-brand { color: rgba(248,247,244,0.65); font-weight: 600; font-size: 0.88rem; }

  /* ── RESPONSIVE ── */
  @media (max-width: 860px) {
    header svg { width: 160px; height: auto; }
    .hero { grid-template-columns: 1fr; padding: 4rem 1.5rem 3rem; }
    .hero-iso { display: none; }
    .stats { grid-template-columns: repeat(2,1fr); }
    .que-grid, .red-grid, .quien-grid { grid-template-columns: 1fr; }
    .steps { grid-template-columns: repeat(2,1fr); }
    .steps::before { display: none; }
    .section { padding: 3rem 1.5rem; }
    .footer-cta { flex-direction: column; text-align: center; padding: 2.5rem 1.5rem; }
    footer { flex-direction: column; gap: 0.6rem; text-align: center; padding: 1.4rem 1.5rem; }
    .tab-content.active { grid-template-columns: 1fr; }
  }/* End custom CSS */