/* ════════════════════════════════════════════════════════════════
   main.css — Estilos de la portada (index.html)
   Organizado por secciones (busca los separadores ── NOMBRE ──).
   Variables de marca y colores en :root, al principio.
   ════════════════════════════════════════════════════════════════ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
    body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
      font-size: 16px;
      color: #1a1a1a;
      background: #fff;
      line-height: 1.6;
    }
    img { display: block; max-width: 100%; }
    a { text-decoration: none; color: inherit; }
    button, input, select, textarea { font-family: inherit; }

    :root {
      --orange: #F37233;
      --orange-light: #FDEDE4;
      --orange-dark: #D85A1E;
      --green: #1E3C2B;
      --green-dark: #14291D;
      --mono: 'SF Mono', 'Roboto Mono', 'Menlo', ui-monospace, monospace;
      --gray-50:  #F8F8F8;
      --gray-100: #F0F0F0;
      --gray-200: #E5E5E5;
      --gray-300: #D0D0D0;
      --gray-500: #777;
      --gray-700: #444;
      --green-bg:   #EAF3DE;
      --green-text: #3B6D11;
      --blue-bg:    #EBF4FF;
      --blue-text:  #1A56A0;
      --r-sm: 8px;
      --r-md: 12px;
      --r-lg: 20px;
      --r-pill: 100px;
    }

    .sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

    /* ── NAV ── */
    .nav {
      position: sticky; top: 0; z-index: 100;
      background: #fff;
      border-bottom: 1px solid var(--gray-200);
    }
    .nav-inner {
      max-width: 1100px; margin: 0 auto;
      padding: 0 20px;
      display: flex; align-items: center; justify-content: space-between;
      height: 66px; gap: 16px;
    }
    .logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
    .logo-img { height: 48px; width: auto; display: block; }
    .nav-links { display: flex; gap: 24px; list-style: none; }
    .nav-links a { font-size: 14px; color: var(--gray-700); }
    .nav-links a:hover { color: var(--orange); }
    .btn-nav {
      background: var(--orange); color: #fff;
      border: none; border-radius: var(--r-pill);
      padding: 10px 20px; font-size: 14px; font-weight: 600;
      cursor: pointer; white-space: nowrap;
    }
    .btn-nav:hover { background: var(--orange-dark); }
    .nav-actions { display: flex; align-items: center; gap: 18px; }
    .nav-access { font-size: 14px; font-weight: 600; color: #1a1a1a; white-space: nowrap; }
    .nav-access:hover { color: var(--orange); }

    /* ── GARANTÍA STRIP (arriba del todo) ── */
    .top-guarantee {
      background: var(--green-dark);
      padding: 11px 20px;
      text-align: center;
    }
    .top-guarantee p {
      font-size: 13px; color: #fff;
      display: flex; align-items: center; justify-content: center;
      gap: 8px; flex-wrap: wrap;
    }
    .top-guarantee strong { color: var(--orange); }

    /* ── HERO (pantalla partida) ── */
    .hero { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; background: #fff; }
    .hero-left {
      display: flex; flex-direction: column; justify-content: center;
      padding: 26px 56px;
      padding-left: max(20px, calc((100vw - 1140px) / 2));
    }
    .hero-right {
      position: relative; overflow: hidden; background: var(--green);
      min-height: 300px;
    }
    .hero-video {
      position: absolute; inset: 0;
      width: 100%; height: 100%; object-fit: cover; display: block;
    }
    .hero-eyebrow {
      color: var(--orange); font-size: 12px; font-weight: 700;
      text-transform: uppercase; letter-spacing: .14em; margin-bottom: 12px;
    }
    .hero h1 {
      font-size: 44px; font-weight: 800; line-height: 1.05;
      color: #1a1a1a; margin-bottom: 14px; letter-spacing: -0.02em;
    }
    .hero-sub { font-size: 17px; color: var(--gray-700); line-height: 1.55; margin-bottom: 18px; max-width: 470px; }
    .hero-checks { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-bottom: 20px; }
    .hero-checks li { display: flex; align-items: flex-start; gap: 11px; font-size: 15px; color: #333; }
    .hero-check-ic {
      width: 22px; height: 22px; border-radius: 50%;
      background: var(--green-bg); color: var(--green-text);
      display: flex; align-items: center; justify-content: center;
      font-size: 12px; font-weight: 700; flex-shrink: 0; margin-top: 1px;
    }
    .hero-cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
    .btn-hero-primary {
      background: var(--orange); color: #fff; border: none;
      border-radius: var(--r-sm); padding: 15px 28px; font-size: 16px; font-weight: 700; cursor: pointer;
      transition: background .2s;
    }
    .btn-hero-primary:hover { background: var(--orange-dark); }
    .btn-hero-ghost {
      background: #fff; color: #1a1a1a; border: 1.5px solid var(--gray-300);
      border-radius: var(--r-sm); padding: 15px 28px; font-size: 16px; font-weight: 700; cursor: pointer;
      transition: border-color .2s;
    }
    .btn-hero-ghost:hover { border-color: #1a1a1a; }

    /* ── TRUST BAR ── */
    .trust-bar { background: var(--gray-50); border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); padding: 16px 20px; }
    .trust-bar-inner {
      max-width: 1100px; margin: 0 auto;
      display: flex; flex-direction: column; align-items: center;
      gap: 10px;
    }
    .trust-row { display: flex; align-items: center; justify-content: center; gap: 32px; flex-wrap: wrap; }
    .trust-item { display: flex; align-items: center; gap: 7px; font-size: 13px; color: var(--gray-700); }
    .trust-item .ic { color: var(--orange); font-weight: 700; font-size: 16px; }
    .trust-item-wide { font-weight: 600; }

    /* ── FORM ── */
    .form-section { background: var(--gray-50); padding: 56px 20px; }
    .form-inner { max-width: 720px; margin: 0 auto; }
    /* Sección combinada: pitch arriba + formulario abajo (apilado) */
    .combo-section { background: var(--gray-50); padding: 34px 20px; border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); }
    .combo-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.3fr); gap: 44px; align-items: start; }
    .combo-pitch { padding-top: 2px; }
    .combo-pitch h2 { font-size: 28px; font-weight: 700; line-height: 1.2; margin-bottom: 14px; }
    .combo-pitch h2 em { font-style: normal; color: var(--orange); }
    .combo-pitch p { font-size: 14px; color: var(--gray-500); line-height: 1.7; margin-bottom: 12px; text-align: justify; }
    .combo-pitch .nocomm-card { margin-top: 18px; }
    .form-card {
      width: 100%; background: #fff; border-radius: var(--r-lg);
      border: 1.5px solid var(--gray-200); padding: 22px 30px;
    }
    .form-card-header { text-align: center; margin-bottom: 12px; }
    .form-tag {
      display: inline-block;
      background: var(--orange-light); color: var(--orange-dark);
      font-size: 12px; font-weight: 700; border-radius: var(--r-pill);
      padding: 4px 14px; margin-bottom: 10px;
      text-transform: uppercase; letter-spacing: .05em;
    }
    .form-card h2 { font-size: 24px; font-weight: 700; margin-bottom: 6px; }
    .form-card-sub { font-size: 15px; color: var(--gray-500); }
    .form-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 11px 16px; }
    .form-group { display: flex; flex-direction: column; gap: 5px; min-width: 0; }
    .form-group.full { grid-column: 1 / -1; }
    .consumo-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 16px; align-items: start; margin-top: 4px; }
    .form-label { font-size: 13px; font-weight: 600; color: var(--gray-700); }
    .form-input, .form-select {
      width: 100%; min-width: 0; box-sizing: border-box;
      border: 1.5px solid var(--gray-300); border-radius: var(--r-sm);
      padding: 11px 13px; font-size: 15px; color: #1a1a1a;
      background: #fff; transition: border-color .15s;
      -webkit-appearance: none; appearance: none;
    }
    .form-input:focus, .form-select:focus { outline: none; border-color: var(--orange); }
    .form-input::placeholder { color: #bbb; }
    /* Selector con flecha custom */
    .select-wrap { position: relative; }
    .select-wrap::after {
      content: '▾'; position: absolute; right: 13px; top: 50%;
      transform: translateY(-50%); pointer-events: none;
      color: var(--gray-500); font-size: 13px;
    }
    .select-wrap .form-select { padding-right: 32px; width: 100%; }

    /* Upload */
    .upload-area {
      border: 1.5px dashed var(--gray-300); border-radius: var(--r-sm);
      padding: 9px 13px; cursor: pointer; position: relative; min-height: 46px;
      display: flex; align-items: center; gap: 10px; text-align: left;
      transition: border-color .15s, background .15s;
    }
    .upload-area:hover { border-color: var(--orange); background: var(--orange-light); }
    .upload-area input[type="file"] {
      position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%;
    }
    .upload-icon {
      width: 28px; height: 28px; background: var(--orange-light);
      border-radius: var(--r-sm); display: flex; align-items: center;
      justify-content: center; margin: 0; flex-shrink: 0;
    }
    .upload-text { min-width: 0; }
    .upload-title { font-size: 14px; font-weight: 600; }
    .upload-sub { font-size: 12px; color: var(--gray-500); }
    .upload-sub b { color: var(--orange); }
    .upload-ok { display: none; margin-top: 10px; font-size: 13px; color: var(--green-text); font-weight: 600; }
    .upload-or { display: flex; align-items: center; text-align: center; margin: 12px 0; color: var(--gray-500); font-size: 13px; }
    .upload-or::before, .upload-or::after { content: ''; flex: 1; height: 1px; background: var(--gray-200); }
    .upload-or span { padding: 0 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; font-size: 11px; }

    .form-check { display: flex; align-items: flex-start; gap: 10px; }
    .form-check input[type="checkbox"] { margin-top: 3px; width: 16px; height: 16px; accent-color: var(--orange); flex-shrink: 0; }
    .form-check-label { font-size: 13px; color: var(--gray-500); }
    .form-check-label a { color: var(--orange); text-decoration: underline; }

    .btn-primary {
      width: 100%; background: var(--orange); color: #fff;
      border: none; border-radius: var(--r-sm);
      padding: 16px; font-size: 17px; font-weight: 700;
      cursor: pointer; margin-top: 8px;
    }
    .btn-primary:hover { background: var(--orange-dark); }

    .form-reassure {
      display: flex; justify-content: center; flex-wrap: wrap;
      gap: 18px; margin-top: 16px;
    }
    .reassure-item { display: flex; align-items: center; gap: 5px; font-size: 13px; color: var(--gray-500); }
    .reassure-item .ic { color: var(--orange); }

    /* ── NO COMISIÓN ── */
    .nocomm-section { padding: 64px 20px; background: #fff; }
    .nocomm-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
    .nocomm-badge {
      display: inline-flex; align-items: center; gap: 7px;
      background: var(--green-bg); color: var(--green-text);
      font-size: 13px; font-weight: 700; border-radius: var(--r-pill);
      padding: 5px 14px; margin-bottom: 14px;
    }
    .nocomm-section h2 { font-size: 30px; font-weight: 700; margin-bottom: 14px; line-height: 1.2; }
    .nocomm-section h2 em { font-style: normal; color: var(--orange); }
    .nocomm-section p { font-size: 15px; color: var(--gray-500); line-height: 1.7; margin-bottom: 12px; }
    .nocomm-card { background: var(--gray-50); border-radius: var(--r-md); border: 1.5px solid var(--gray-200); padding: 24px; }
    .nocomm-row { display: flex; gap: 13px; padding: 14px 0; border-bottom: 1px solid var(--gray-200); }
    .nocomm-row:first-child { padding-top: 0; }
    .nocomm-row:last-child { border-bottom: none; padding-bottom: 0; }
    .nocomm-dot { width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; font-size: 14px; }
    .dot-red { background: #FEECEC; }
    .dot-green { background: var(--green-bg); }
    .nocomm-row-title { font-size: 14px; font-weight: 600; margin-bottom: 2px; }
    .nocomm-row-sub { font-size: 13px; color: var(--gray-500); }

    /* ── CÓMO FUNCIONA ── */
    .section { padding: 64px 20px; }
    .bg-gray { background: var(--gray-50); }
    .section-header { text-align: center; margin-bottom: 44px; }
    .section-tag {
      display: inline-block; background: var(--orange-light); color: var(--orange-dark);
      font-size: 12px; font-weight: 700; border-radius: var(--r-pill);
      padding: 4px 14px; margin-bottom: 10px;
      text-transform: uppercase; letter-spacing: .05em;
    }
    .section-title { font-size: 30px; font-weight: 700; margin-bottom: 8px; }
    .section-sub { font-size: 16px; color: var(--gray-500); max-width: 540px; margin: 0 auto; }

    .steps-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
    .step-card { background: #fff; border-radius: var(--r-md); border: 1.5px solid var(--gray-200); padding: 22px 18px; position: relative; }
    .step-num { width: 32px; height: 32px; background: var(--orange); color: #fff; border-radius: 50%; font-size: 14px; font-weight: 700; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
    .step-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
    .step-card p { font-size: 13px; color: var(--gray-500); line-height: 1.6; }
    .step-arrow { position: absolute; right: -10px; top: 38px; width: 20px; height: 2px; background: var(--orange); z-index: 1; }
    .step-card:last-child .step-arrow { display: none; }

    /* ── GARANTÍA SECCIÓN ── */
    .guarantee-section {
      padding: 64px 20px; border-top: 3px solid var(--orange);
      background-color: #17251C;
      background-image:
        linear-gradient(27deg, #132019 5px, transparent 5px),
        linear-gradient(207deg, #132019 5px, transparent 5px),
        linear-gradient(27deg, #233A2A 5px, transparent 5px),
        linear-gradient(207deg, #233A2A 5px, transparent 5px),
        linear-gradient(90deg, #1A2C20 10px, transparent 10px),
        linear-gradient(#1C2F22 25%, #17251C 25%, #17251C 50%, transparent 50%, transparent 75%, #25402D 75%, #25402D);
      background-size: 20px 20px;
      background-position: 0 5px, 10px 0, 0 10px, 10px 5px, 0 0, 0 0;
    }
    .guarantee-inner { max-width: 860px; margin: 0 auto; text-align: center; }
    .guarantee-eyebrow {
      display: inline-flex; align-items: center; gap: 7px;
      background: rgba(255,98,0,0.14); color: #F58C5A;
      border: 1px solid rgba(255,98,0,0.35);
      font-size: 12px; font-weight: 700; border-radius: var(--r-pill);
      padding: 5px 14px; margin-bottom: 18px; text-transform: uppercase; letter-spacing: .05em;
    }
    .guarantee-section h2 { font-size: 32px; font-weight: 700; color: #fff; margin-bottom: 10px; line-height: 1.2; }
    .guarantee-section p { font-size: 16px; color: rgba(255,255,255,.62); margin-bottom: 28px; max-width: 620px; margin-left: auto; margin-right: auto; }
    .guarantee-section p strong { color: #fff; }
    .guarantee-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-bottom: 28px; }
    .guarantee-card { background: #ECECEE; border: 1px solid rgba(255,255,255,.08); border-radius: var(--r-md); padding: 20px 14px; }
    .guarantee-card-num { font-size: 27px; font-weight: 700; color: var(--orange); }
    .guarantee-card-lbl { font-size: 13px; color: #5F5E5A; margin-top: 5px; }
    .btn-white-outline {
      border: none; background: var(--orange); color: #fff;
      border-radius: var(--r-pill); padding: 14px 32px;
      font-size: 15px; font-weight: 700; cursor: pointer;
      transition: background .2s;
    }
    .btn-white-outline:hover { background: var(--orange-dark); }

    /* ── CÓMO FUNCIONA + GARANTÍA (dos columnas) ── */
    .hg-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: stretch; }
    .hg-left { display: flex; flex-direction: column; }
    .hg-head { text-align: left; margin-bottom: 26px; }
    .hg-left .section-title { font-size: 26px; }
    .hg-left .section-sub { text-align: left; }
    .hg-steps { max-width: none; grid-template-columns: 1fr 1fr; flex: 1; grid-auto-rows: 1fr; }
    .hg-steps .step-card p { text-align: justify; }
    .hg-right.guarantee-section { padding: 32px 28px; border-radius: var(--r-lg); overflow: hidden; }
    .hg-right .guarantee-inner { max-width: none; text-align: left; }
    .hg-right .guarantee-inner h2 { font-size: 23px; line-height: 1.25; }
    .hg-right .guarantee-inner > p { text-align: justify; }
    .hg-right .guarantee-cards { grid-template-columns: 1fr; gap: 10px; margin-bottom: 22px; }
    .hg-right .guarantee-card { display: flex; align-items: center; gap: 16px; text-align: left; padding: 14px 18px; }
    .hg-right .guarantee-card-num { flex: 0 0 38%; font-size: 20px; line-height: 1.15; }
    .hg-right .guarantee-card-lbl { flex: 1; margin-top: 0; }

    /* ── PARA QUIÉN ── */
    .targets-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
    .target-card { background: #fff; border-radius: var(--r-md); border: 1.5px solid var(--gray-200); padding: 0 0 26px; overflow: hidden; }
    .target-card.featured { border-color: var(--orange); border-width: 2px; }
    .target-img { display: block; width: 100%; height: auto; aspect-ratio: 400 / 240; object-fit: cover; }
    .target-card > h3, .target-card > p, .target-card > .check-list, .target-card > .target-badge { margin-left: 22px; margin-right: 22px; }
    .target-badge { display: inline-block; background: var(--orange-light); color: var(--orange-dark); font-size: 11px; font-weight: 700; border-radius: var(--r-pill); padding: 2px 10px; margin-top: 16px; margin-bottom: 4px; text-transform: uppercase; }
    .target-card > h3 { font-size: 17px; font-weight: 700; margin-top: 16px; margin-bottom: 7px; }
    .target-card > .target-badge + h3 { margin-top: 6px; }
    .target-card p { font-size: 14px; color: var(--gray-500); line-height: 1.6; margin-bottom: 14px; }
    .check-list { list-style: none; display: flex; flex-direction: column; gap: 6px; }
    .check-list li { display: flex; align-items: flex-start; gap: 6px; font-size: 13px; color: var(--gray-700); }
    .check-list li::before { content: '✓'; color: var(--orange); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

    /* ── TARIFA ── */
    .price-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
    .price-card { background: #fff; border-radius: var(--r-md); border: 1.5px solid var(--gray-200); padding: 26px 22px; text-align: center; display: flex; flex-direction: column; }
    .price-card.featured { border-color: var(--orange); border-width: 2px; }
    .price-icon { width: 46px; height: 46px; background: var(--orange-light); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; font-size: 22px; }
    .price-badge { display: inline-block; background: var(--orange-light); color: var(--orange-dark); font-size: 11px; font-weight: 700; border-radius: var(--r-pill); padding: 2px 10px; margin-bottom: 10px; text-transform: uppercase; align-self: center; }
    .price-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
    .price-num { font-size: 30px; font-weight: 700; color: var(--orange); line-height: 1.1; }
    .price-num small { display: block; font-size: 12px; font-weight: 400; color: var(--gray-500); margin-top: 4px; }
    .price-divider { height: 1px; background: var(--gray-200); margin: 16px 0; }
    .price-list { list-style: none; display: flex; flex-direction: column; gap: 7px; text-align: left; margin-top: auto; }
    .price-list li { display: flex; align-items: flex-start; gap: 7px; font-size: 13px; color: var(--gray-700); }
    .price-list li::before { content: '✓'; color: var(--orange); font-weight: 700; flex-shrink: 0; }
    .price-note { max-width: 1100px; margin: 22px auto 0; text-align: center; font-size: 13px; color: var(--gray-500); }
    .price-note a { color: var(--orange); }

    /* ── PASO 3.0 A 2.0 (ascensor comunidades) ── */
    .elev-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: start; }
    .elev-text h3 { font-size: 17px; font-weight: 700; margin: 18px 0 6px; }
    .elev-text h3:first-child { margin-top: 0; }
    .elev-text p { font-size: 14px; color: var(--gray-500); line-height: 1.7; margin-bottom: 10px; }
    .elev-steps { list-style: none; counter-reset: s; display: flex; flex-direction: column; gap: 10px; margin: 14px 0 0; }
    .elev-steps li { counter-increment: s; position: relative; padding-left: 38px; font-size: 14px; color: var(--gray-700); min-height: 26px; display: flex; align-items: center; }
    .elev-steps li::before { content: counter(s); position: absolute; left: 0; top: 0; width: 26px; height: 26px; background: var(--orange); color: #fff; border-radius: 50%; font-size: 13px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
    .elev-compare { background: #fff; border: 1.5px solid var(--gray-200); border-radius: var(--r-md); padding: 22px; }
    .elev-compare h4 { font-size: 14px; font-weight: 700; margin-bottom: 14px; text-align: center; color: var(--gray-700); }
    .elev-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
    .elev-col { border-radius: var(--r-sm); padding: 16px 14px; text-align: center; }
    .elev-col.bad { background: #FEECEC; }
    .elev-col.good { background: var(--green-bg); }
    .elev-col .tag { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
    .elev-col.bad .tag { color: #C0392B; }
    .elev-col.good .tag { color: var(--green-text); }
    .elev-col .big { font-size: 26px; font-weight: 700; margin: 6px 0 2px; }
    .elev-col.bad .big { color: #C0392B; }
    .elev-col.good .big { color: var(--green-text); }
    .elev-col .small { font-size: 12px; color: var(--gray-500); line-height: 1.4; }
    .elev-arrow { text-align: center; font-size: 22px; color: var(--orange); margin: 10px 0; font-weight: 700; }
    .elev-highlight { background: var(--orange-light); border-radius: var(--r-sm); padding: 14px 16px; margin-top: 16px; font-size: 13px; color: var(--orange-dark); line-height: 1.6; }
    .elev-note { font-size: 12px; color: var(--gray-500); margin-top: 14px; line-height: 1.6; }

    /* ── TESTIMONIOS ── */
    .testi-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
    .testi-card { background: var(--gray-50); border-radius: var(--r-md); padding: 22px; border: 1.5px solid var(--gray-200); }
    .stars { color: var(--orange); font-size: 17px; margin-bottom: 10px; }
    .testi-text { font-size: 15px; color: #1a1a1a; line-height: 1.65; margin-bottom: 14px; font-style: italic; }
    .testi-author { font-size: 13px; font-weight: 700; }
    .testi-loc { font-size: 12px; color: var(--gray-500); }
    .saving-badge { display: inline-block; background: var(--green-bg); color: var(--green-text); font-size: 12px; font-weight: 700; border-radius: var(--r-pill); padding: 3px 10px; margin-top: 9px; }

    /* ── FAQ ── */
    .faq-list { max-width: 700px; margin: 0 auto; }
    .faq-item { border-bottom: 1px solid var(--gray-200); }
    .faq-item:first-child { border-top: 1px solid var(--gray-200); }
    details summary {
      font-size: 16px; font-weight: 600; cursor: pointer;
      list-style: none; display: flex; justify-content: space-between;
      align-items: center; color: #1a1a1a; padding: 17px 0;
    }
    details summary::-webkit-details-marker { display: none; }
    details summary::after { content: '+'; font-size: 22px; color: var(--orange); flex-shrink: 0; margin-left: 12px; }
    details[open] summary::after { content: '−'; }
    details .db { font-size: 15px; color: var(--gray-500); line-height: 1.7; padding-bottom: 16px; }

    /* ── FOOTER CTA ── */
    .footer-cta { background: var(--gray-50); padding: 64px 20px; text-align: center; border-top: 1px solid var(--gray-200); }
    .footer-cta h2 { font-size: 30px; font-weight: 700; margin-bottom: 8px; }
    .footer-cta p { font-size: 16px; color: var(--gray-500); margin-bottom: 24px; }
    .btn-orange {
      display: inline-block; background: var(--orange); color: #fff;
      border: none; border-radius: var(--r-pill);
      padding: 15px 34px; font-size: 16px; font-weight: 700; cursor: pointer;
    }
    .btn-orange:hover { background: var(--orange-dark); }
    .cta-note { font-size: 13px; color: var(--gray-500); margin-top: 10px; }

    /* ── WHATSAPP FLOTANTE ── */
    .wa-float {
      position: fixed; bottom: 24px; right: 24px; z-index: 999;
      width: 56px; height: 56px; border-radius: 50%;
      background: #25D366;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 16px rgba(0,0,0,.25);
      cursor: pointer;
      transition: transform .2s, box-shadow .2s;
    }
    .wa-float:hover { transform: scale(1.08); box-shadow: 0 6px 22px rgba(0,0,0,.32); }
    .wa-float svg { width: 30px; height: 30px; }

    /* ── FOOTER ── */
    footer { background: #111; color: #aaa; padding: 28px 20px; }
    .footer-inner { max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
    .footer-logo img { height: 42px; width: auto; display: block; }
    .footer-links { display: flex; gap: 18px; flex-wrap: wrap; }
    .footer-links a { font-size: 13px; color: #777; }
    .footer-links a:hover { color: #fff; }
    .footer-copy { font-size: 12px; color: #555; }

    /* ── ALERT (errores form) ── */
    .alert-error {
      background: #FEECEC; color: #C0392B; border-radius: var(--r-sm);
      padding: 12px 16px; font-size: 14px; margin-bottom: 16px;
      border-left: 4px solid #C0392B;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 960px) {
      .hero { grid-template-columns: 1fr; }
      .hero-left { padding: 48px 24px; }
      .hero-right { padding: 40px 24px; }
      .hero h1 { font-size: 40px; }
      .nocomm-inner { grid-template-columns: 1fr; }
      .combo-inner { grid-template-columns: 1fr; gap: 28px; }
      .hg-inner { grid-template-columns: 1fr; gap: 28px; }
      .steps-grid { grid-template-columns: 1fr 1fr; }
      .step-arrow { display: none; }
      .targets-grid { grid-template-columns: 1fr; }
      .price-grid { grid-template-columns: 1fr; }
      .elev-inner { grid-template-columns: 1fr; gap: 24px; }
      .guarantee-cards { grid-template-columns: 1fr; }
      .testi-grid { grid-template-columns: 1fr; }
      .nav-links { display: none; }
      .form-grid { grid-template-columns: 1fr 1fr; }
      .consumo-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 600px) {
      .form-grid { grid-template-columns: 1fr; }
      .hero-left { padding: 36px 18px; }
      .hero-right { padding: 32px 18px; }
      .hero h1 { font-size: 32px; }
      .hero-sub { font-size: 16px; }
      .section { padding: 44px 16px; }
      .section-title { font-size: 24px; }
      .form-card { padding: 24px 16px; }
      .steps-grid { grid-template-columns: 1fr; }
      .guarantee-section h2 { font-size: 24px; }
      .trust-bar-inner { gap: 14px; }
      .top-guarantee p { font-size: 12px; }
      .footer-cta h2 { font-size: 24px; }
      .nav-access { display: none; }   /* en móvil dejamos solo el botón principal */
    }

    /* ── MENÚ MÓVIL ── */
    /* Botón flotante (espejo del de WhatsApp, lado izquierdo) */
    .menu-float {
      display: none;
      position: fixed; bottom: 24px; left: 24px; z-index: 1300;
      width: 56px; height: 56px; border-radius: 50%;
      background: var(--green); border: 0; padding: 0; cursor: pointer;
      align-items: center; justify-content: center;
      box-shadow: 0 4px 16px rgba(0,0,0,.25);
      transition: transform .2s, box-shadow .2s, background .25s;
    }
    .menu-float:hover { transform: scale(1.08); box-shadow: 0 6px 22px rgba(0,0,0,.32); }
    .mf-lines { position: relative; width: 24px; height: 18px; }
    .mf-lines span {
      position: absolute; left: 0; width: 24px; height: 2.5px; border-radius: 2px;
      background: #fff; transition: transform .3s ease, opacity .2s ease;
    }
    .mf-lines span:nth-child(1) { top: 0; }
    .mf-lines span:nth-child(2) { top: 8px; }
    .mf-lines span:nth-child(3) { top: 16px; }
    body.m-open .menu-float { background: var(--orange); }
    body.m-open .mf-lines span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    body.m-open .mf-lines span:nth-child(2) { opacity: 0; }
    body.m-open .mf-lines span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    .m-menu { position: fixed; inset: 0; z-index: 1200; visibility: hidden; }
    body.m-open { overflow: hidden; }
    body.m-open .m-menu { visibility: visible; }
    .m-menu-backdrop {
      position: absolute; inset: 0; background: rgba(10,20,14,.55);
      -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px);
      opacity: 0; transition: opacity .35s ease;
    }
    body.m-open .m-menu-backdrop { opacity: 1; }
    .m-menu-panel {
      position: absolute; top: 0; left: 0; height: 100%;
      width: min(86%, 360px);
      background: linear-gradient(200deg, rgba(30,60,43,.72) 0%, rgba(20,41,29,.75) 65%);
      -webkit-backdrop-filter: blur(13px); backdrop-filter: blur(13px);
      color: #fff; border-right: 3px solid var(--orange);
      box-shadow: 24px 0 60px rgba(0,0,0,.34);
      display: flex; flex-direction: column;
      transform: translateX(-100%);
      transition: transform .4s cubic-bezier(.4,0,.2,1);
    }
    body.m-open .m-menu-panel { transform: translateX(0); }
    .m-menu-head {
      padding: 22px 24px; border-bottom: 1px solid rgba(255,255,255,.09);
    }
    .m-menu-logo { height: 44px; width: auto; display: block; }
    .m-menu-links { display: flex; flex-direction: column; padding: 8px 0; flex: 1; }
    .m-menu-links a {
      display: flex; align-items: center; justify-content: space-between;
      padding: 16px 24px; font-size: 17px; font-weight: 500;
      color: rgba(255,255,255,.92); text-decoration: none;
      border-left: 3px solid transparent;
      transition: background .2s, border-color .2s, color .2s;
    }
    .m-menu-links a + a { border-top: 1px solid rgba(255,255,255,.06); }
    .m-menu-links a .m-arrow {
      color: var(--orange); font-size: 18px;
      transform: translateX(-5px); opacity: 0;
      transition: transform .22s ease, opacity .22s ease;
    }
    .m-menu-links a:hover, .m-menu-links a:active {
      background: rgba(243,114,51,.10); border-left-color: var(--orange); color: #fff;
    }
    .m-menu-links a:hover .m-arrow, .m-menu-links a:active .m-arrow { transform: translateX(0); opacity: 1; }
    .m-menu-foot {
      padding: 20px 24px 96px; border-top: 1px solid rgba(255,255,255,.09);
      display: flex; flex-direction: column; gap: 14px;
    }
    .m-menu-cta {
      width: 100%; background: var(--orange); color: #fff; border: 0;
      border-radius: 99px; padding: 15px; font-size: 16px; font-weight: 700;
      cursor: pointer; transition: background .2s;
    }
    .m-menu-cta:hover { background: var(--orange-dark); }
    .m-menu-access { color: rgba(255,255,255,.78); text-align: center; font-size: 14px; text-decoration: underline; }
    .m-menu-access:hover { color: #fff; }

    @media (max-width: 960px) {
      .menu-float { display: flex; }
    }

    /* ── SECCIONES PERSONALIZADAS (creadas desde el panel) ── */
    .custom-sec-body { max-width: 860px; margin: 0 auto; font-size: 16px; color: #333; line-height: 1.75; }
    .custom-sec-body p { margin-bottom: 14px; }
    .custom-sec-body h3 { font-size: 19px; font-weight: 700; color: #1E3C2B; margin: 22px 0 10px; }
    .custom-sec-body ul, .custom-sec-body ol { padding-left: 24px; margin-bottom: 14px; }
    .custom-sec-body li { margin-bottom: 7px; }
    .custom-sec-body a { color: var(--orange-dark); text-decoration: underline; }
    .custom-sec-body blockquote { border-left: 4px solid var(--green); background: #EFF3EA; padding: 12px 18px; border-radius: 0 8px 8px 0; margin: 18px 0; font-style: italic; }
    .custom-sec-body img { border-radius: 12px; margin: 16px 0; max-width: 100%; height: auto; }
