    :root{

      --bg:#fbf7f7;

      --card:#ffffff;

      --text:#191919;

      --muted:#5a5a5a;



      --wine:#3b0f18;

      --wine2:#6a1c2d;



      --pink:#c84b68;

      --pink2:#b53f5b;



      --yellow:#f5bf24;

      --green:#1f8f4c;



      --btn-red-1: #ef4444;

      --btn-red-2: #dc2626;

      --btn-green-1: #22c55e;

      --btn-green-2: #16a34a;



      --tag-bad-bg: #fee2e2;

      --tag-bad-text: #991b1b;

      --tag-good-bg: #dcfce7;

      --tag-good-text: #166534;



      --wa-teal: #68cba5; 

      --wa-teal-dark: #52af8c;



      --radius:22px;

      --shadow: 0 14px 34px rgba(0,0,0,.12);

      --border: 1px solid rgba(0,0,0,.08);

      --container: 1060px;

      --font: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";

    }



    /* --- BASIC RESET --- */

    *{ box-sizing:border-box; }

    html,body{ height:100%; margin:0; }



    body{

      font-family:var(--font);

      background:var(--bg);

      color:var(--text);

      line-height:1.35;

    }



    a{ color:inherit; text-decoration:none; }

    img{ max-width:100%; display:block; }



    .wrap{

      width:min(var(--container), calc(100% - 36px));

      margin:0 auto;

    }



    /* --- TOP BAR --- */

    .topbar{

      background: linear-gradient(180deg, var(--wine2), var(--wine));

      color:#fff;

      position:sticky; top:0; z-index:50;

      border-bottom: 1px solid rgba(255,255,255,.10);

    }

    .topbar .row{

      display:flex;

      align-items:center;

      justify-content:center; 

      padding:16px 0;

    }

    .navLogo { height: 32px; width: auto; display: block; }



    /* --- HERO --- */

    .hero{ padding:22px 0 8px; }

    .heroGrid{

      display:grid;

      grid-template-columns: 1fr;

      gap:16px;

      align-items:start;

    }



    .heroContent {

      display: flex;

      flex-direction: column;

      align-items: center; 

      text-align: center;  

    }



    .pretag {

      display: inline-flex;

      align-items: center;

      gap: 10px;

      padding: 10px 12px;

      border-radius: 999px;

      border: 1px solid rgba(0,0,0,.08); 

      background: rgba(255,255,255,.6);   

      font-weight: 900;

      font-size: 13px;

      color: #232323;

      margin: 0 0 10px;

      cursor: pointer !important;

      box-shadow: none !important;        

      user-select: none;                  

      pointer-events: auto !important;

      transition: transform .08s ease, filter .12s ease;

    }



    .pretag:hover{ transform: translateY(-1px); filter: brightness(.99); }

    .pretag:active{ transform: translateY(1px); }



    .pretag .pin{

      width:10px;height:10px;border-radius:6px;

      background: var(--pink);

      box-shadow: 0 10px 20px rgba(200,75,104,.25);

    }



    .h1{

      font-size:34px;

      line-height:1.05;

      margin:0 0 10px;

      font-weight:1000;

      letter-spacing:-.6px;

    }

    .h1 .accent{ color: var(--pink); }

    .h1 .case{

      color: var(--pink2);

      text-decoration: underline;

      text-decoration-thickness: 3px;

      text-underline-offset: 5px;

      white-space:nowrap;

    }



    .credRow{

      display:flex;

      flex-wrap:wrap;

      gap:10px;

      align-items:center;

      margin: 4px 0 18px;

      justify-content: center;

    }



    .stars, .credTag {

      display: inline-flex;

      align-items: center;

      gap: 8px;

      padding: 10px 12px;

      border-radius: 999px;

      font-weight: 1000;

      font-size: 13px;

      cursor: pointer !important;

      box-shadow: none !important;

      border: 1px solid transparent;

      user-select: none;

      pointer-events: auto !important;

      transition: transform .08s ease, filter .12s ease;

    }

    .stars { background: var(--tag-bad-bg); color: var(--tag-bad-text); }

    .credTag { background: var(--tag-good-bg); color: var(--tag-good-text); }

    .stars:hover, .credTag:hover{ transform: translateY(-1px); filter: brightness(.99); }

    .stars:active, .credTag:active{ transform: translateY(1px); }



    .sub{

      margin:0 0 16px;

      color:var(--muted);

      max-width: 50ch;

      font-size:15px;

    }



    /* --- BUTTONS --- */

    .btn{

      display:inline-flex;

      align-items:center;

      justify-content:center;

      gap:10px;

      padding:14px 16px;

      border-radius:18px;

      font-weight:1000;

      border:none;

      cursor:pointer;

      transition: transform .08s ease, filter .12s ease;

      user-select:none;

      white-space:nowrap;

    }

    .btn:active{ transform: translateY(1px); }



    .btnLg { padding: 18px 32px; font-size: 18px; border-radius: 24px; }



    .btnPrimary{

      background: linear-gradient(180deg, #ffd45b, var(--yellow));

      color:#1a1a1a;

      box-shadow: 0 14px 30px rgba(245,191,36,.25);

    }

    .btnRed{

      background: linear-gradient(180deg, var(--btn-red-1), var(--btn-red-2));

      color:#fff;

      box-shadow: 0 14px 30px rgba(220, 38, 38, .35);

    }

    .btnGreen{

      background: linear-gradient(180deg, var(--btn-green-1), var(--btn-green-2));

      color:#fff;

      box-shadow: 0 14px 30px rgba(22, 163, 74, .35);

    }

    .btnWhatsapp{

      background: linear-gradient(90deg, var(--wa-teal), var(--wa-teal-dark));

      color:#fff;

      font-size: 20px;

      padding: 16px 24px;

      border-radius: 99px;

      box-shadow: 0 14px 30px rgba(82,175,140,.3);

    }

    .btnWhatsapp img { width: 32px; height: 32px; display: block; }

    .btnWide{ width:100%; }



    /* --- VSL VIDEO --- */

    .vsl-wrap{ width: 100%; max-width:490px; margin:0 auto; }

    .vsl-videoBox{

      position:relative;

      width:100%;

      max-width: 240px;

      margin: 0 auto;

      aspect-ratio:9/16;

      border-radius:18px;

      overflow:hidden;

      background:#000;

      box-shadow:0 10px 30px rgba(0,0,0,.25);

      border: 1px solid rgba(255,255,255,.10);

    }

    .vsl-videoBox video{ width:100%; height:100%; object-fit:cover; cursor:pointer; }



    .vsl-overlay{

      position:absolute;

      inset:0;

      display:flex;

      align-items:center;

      justify-content:center;

      z-index:5;

      cursor: pointer;

    }

    .vsl-overlayPill{

      pointer-events:auto;

      width:calc(100% - 32px);

      padding:10px;

      border-radius:22px;

      background:rgba(0,0,0,.35);

      backdrop-filter:blur(6px);

      box-shadow:0 18px 40px rgba(0,0,0,.25);

    }

    .vsl-overlayCard{

      background:rgba(205,76,107,.92);

      border-radius:16px;

      padding:16px;

      text-align:center;

      color:#fff;

      border: 1px solid rgba(255,255,255,.18);

    }

    .vsl-title{font-size:18px;font-weight:1000;margin-bottom:4px;}

    .vsl-sub{font-size:13px;opacity:.90;margin-bottom:12px;}

    .vsl-overlayCard button{

      padding:10px 16px;

      border-radius:12px;

      border:none;

      font-weight:1000;

      cursor:pointer;

      background: #fff;

      color:#1a1a1a;

    }

    .vsl-controls{

      position:absolute;

      left:14px;

      bottom:18px;

      display:flex;

      gap:10px;

      z-index:4;

    }

    .vsl-controls button{

      width:44px;

      height:44px;

      border-radius:14px;

      border:1px solid rgba(255,255,255,.25);

      background:rgba(0,0,0,.55);

      color:#fff;

      font-size:18px;

      cursor:pointer;

      backdrop-filter: blur(6px);

    }

    .vsl-progress{

      position:absolute;

      left:10px;

      right:10px;

      bottom:10px;

      height:10px;

      background:rgba(255,255,255,.18);

      border-radius:999px;

      overflow:hidden;

      z-index:3;

    }

    .vsl-progress-fill{

      height:100%;

      width:0%;

      background: linear-gradient(90deg, #C05A6E, #ff5b8b);

      transition:width .1s linear;

    }



    /* --- LOGOS & CREDIBILIDAD --- */

    .logos-credibilidad {

      padding: 40px 0;

      text-align: center;

    }

    .logos-credibilidad h4 {

      font-size: 14px;

      text-transform: uppercase;

      letter-spacing: 1px;

      color: var(--muted);

      margin-bottom: 25px;

      font-weight: 800;

    }

    .logos-container, .logos-container1 {

      display: flex;

      flex-wrap: wrap;

      justify-content: center;

      align-items: center;

      gap: 30px;

      opacity: 0.7;

    }

    .logos-container img { height: 40px; width: auto; filter: grayscale(100%); transition: all 0.3s ease; }

    .logos-container1 img { height: 80px; width: auto; filter: grayscale(100%); transition: all 0.3s ease; }

    .logos-container img:hover { filter: grayscale(0%); opacity: 1; transform: scale(1.05); }



    @media (max-width: 600px) {

      .logos-container { gap: 20px; }

      .logos-container img { height: 22px; }

    }



    /* --- RESULTADOS --- */

    .results{ padding: 6px 0 22px; }

    .sectionTitle{

      text-align:center;

      font-weight:1000;

      font-size:22px;

      letter-spacing:-.2px;

      margin: 32px 0 14px;

    }

    .resultCard{ 

        display:grid; grid-template-columns: 1fr; gap:24px; 

        background: var(--card); border-radius: var(--radius); border: var(--border);

        box-shadow: 0 10px 26px rgba(0,0,0,.06); padding:16px;

    }

    .resultTextContent {

      display: flex;

      flex-direction: column;

      align-items: center;

      text-align: center;

    }

    .resultCard h3{ margin:0 0 6px; font-size:22px; font-weight:1000; color: var(--pink2); }

    .resultMeta{ margin: 0 0 10px; font-size: 13px; font-weight: 900; color: var(--muted); text-transform: uppercase; letter-spacing: .6px; opacity: .9; }

    .quote{ padding:14px; border-radius:18px; border: 1px solid rgba(0,0,0,.08); background: rgba(255,255,255,.75); font-size:14px; }

    

    .tag{ 

        padding:8px 12px; border-radius:14px; font-weight:900; font-size:13px;

        border: 1px solid transparent; display: inline-flex; align-items: center; gap: 6px;

        margin: 10px 0;

    }

    .tagGood { background: var(--tag-good-bg); color: var(--tag-good-text); border-color: rgba(22, 101, 52, 0.2); }



    /* Sistema Visual (Flechas) */

    .sistema-visual {

      background: #ffffff;

      border: 1px solid rgba(0,0,0,0.08);

      border-radius: 20px;

      padding: 20px;

      margin: 20px 0;

      text-align: center;

      box-shadow: 0 4px 15px rgba(0,0,0,0.03);

    }

    .flow-container { display: flex; align-items: center; justify-content: center; gap: 10px; }

    .flow-step { padding: 10px 15px; border-radius: 12px; font-weight: 800; font-size: 14px; color: #191919; min-width: 85px; }

    .step-red { background-color: #f89494; }

    .step-yellow { background-color: #ffd45b; }

    .step-green { background-color: #a3e5bb; }

    .flow-arrow { font-size: 20px; color: var(--muted); font-weight: bold; }



    @media (max-width: 600px) {

      .flow-step { font-size: 12px; padding: 8px 10px; min-width: 70px; }

    }



    /* Mockup Container Scroll */

    .mockup-container {

      width: 100%; height: 480px;

      background: #1a1a1a; border-radius: 18px;

      overflow-y: auto; overflow-x: hidden;

      border: 6px solid #222;

      box-shadow: 0 20px 40px rgba(0,0,0,0.15);

      position: relative;

    }

    .mockup-container img { width: 100%; height: auto; display: block; }

    .mockup-container::-webkit-scrollbar { width: 5px; }

    .mockup-container::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.2); border-radius: 10px; }



    /* --- PROBLEMAS (ACORDEÓN) --- */

    .problem-item {

      margin-bottom: 15px;

      border: var(--border); border-radius: var(--radius);

      background: var(--card); overflow: hidden;

      box-shadow: var(--shadow);

    }

    .problem-trigger {

      display: flex; justify-content: space-between; align-items: center;

      padding: 20px; cursor: pointer;

    }

    .problemHead{ display:flex; align-items:center; gap:12px; }

    .pill{

      background: var(--yellow); color:#191919; font-weight:1000;

      border-radius: 18px; padding:10px 12px; min-width:56px; text-align:center;

    }

    .problemHead h3{ margin:0; font-size:16px; font-weight:1000; }

    .btn-solucion {

      background: var(--yellow); color: var(--text); border: none;

      padding: 10px 20px; border-radius: 99px; font-weight: 1000; font-size: 14px;

    }

    

    .solucion-content {

      max-height: 0; overflow: hidden;

      transition: max-height 0.4s ease-out, padding 0.3s ease;

      background: #fff;

    }

    .solucion-content.active {

      max-height: 1000px; 

      padding: 30px 20px;

      border-top: 1px solid rgba(0,0,0,0.05);

    }



    .solucion-grid {

      display: flex; align-items: center; gap: 20px; justify-content: center; flex-wrap: wrap;

    }

    .solucion-grid img { max-width: 180px; border-radius: 12px; box-shadow: 0 4px 12px rgba(0,0,0,0.08); }

    .plus-sign { font-size: 32px; font-weight: bold; color: var(--pink); }

    .sol-footer-text { text-align: center; margin-top: 20px; font-weight: 700; color: var(--muted); }



    /* --- TESTIMONIOS --- */

    .testimonios-section { padding: 40px 0 20px; }

    .reviews-grid { 

      display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 20px;

    }

    .review-card { 

      padding: 25px; border-radius: 25px; background: #fff; 

      position: relative; box-shadow: 0 10px 30px rgba(0,0,0,0.05); 

      border: 1px solid rgba(0,0,0,0.05); 

    }

    .review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }

    .review-avatar { 

      width: 45px; height: 45px; border-radius: 50%; background: var(--pink); 

      display: grid; place-items: center; color: white; font-weight: bold; font-size: 18px;

    }

    .review-info b { display: block; font-size: 17px; color: var(--text); }

    .review-info small { color: #AAA; font-size: 12px; }

    .review-stars { color: #F5BF24; font-size: 18px; margin: 5px 0; }

    .review-card p { font-size: 15px; line-height: 1.5; color: var(--muted); margin: 10px 0 0; }

    .g-icon { width: 22px; position: absolute; top: 20px; right: 20px; opacity: 0.9; }



    /* --- IMPORTANT SECTION --- */

    .important{

      margin: 32px 0;

      background: linear-gradient(180deg, var(--wine2), var(--wine));

      color:#fff; border-radius: 28px; padding: 24px;

    }

    .important h3{ margin:0 0 10px; text-align:center; font-size:22px; color: var(--yellow); }

    .important p{ margin:0; text-align:center; font-size:15px; }

    .important .hl{ color: var(--yellow); font-weight:1000; }

    .btnWrap{ margin-top:18px; display: flex; justify-content: center; }



    /* --- QUESTIONS / FOOTER --- */

    .questions{ padding: 0 0 24px; }

    .qList{ display:grid; gap:10px; margin-top:10px; }

    .qItem{ display:flex; gap:10px; padding:12px; border-radius:18px; border: 1px solid rgba(0,0,0,.08); }

    .qNum{ font-weight:1000; color: var(--pink2); }

    .ctaRow { margin-top: 32px; display: flex; justify-content: center; width: 100%; }



    footer{ padding: 32px 0; text-align:center; font-size:13px; color: var(--muted); }

    .footLinks{ display:flex; justify-content:center; gap:12px; margin: 12px 0; font-weight:900; flex-wrap: wrap; }



    /* --- MEDIA QUERIES PC --- */

    @media (min-width: 880px){

      .heroGrid{ grid-template-columns: 1.1fr 0.9fr; gap:40px; align-items: center; }

      .heroContent { align-items: flex-start; text-align: left; }

      .credRow { justify-content: flex-start; }

      .h1{ font-size:48px; }

      .problemGrid{ grid-template-columns: repeat(3, 1fr); }

      .resultCard{ grid-template-columns: 1fr 1fr; align-items:center; }

      .resultTextContent { align-items: flex-start; text-align: left; }

      .btnWide{ width:auto; }

      .reviews-grid { grid-template-columns: repeat(3, 1fr); }

    }



    /* =========================================================

       ✅ EDER WIDGET DEMO CSS

       ========================================================= */

    .ew-fabWrap{

      position:fixed; right:18px; bottom:18px; z-index:9999;

      display:flex; flex-direction:column; gap:10px; align-items:flex-end;

      font-family:var(--font);

    }

    .ew-fab{

      border:0; cursor:pointer; color:#fff;

      padding:12px 14px; border-radius:999px;

      box-shadow: 0 18px 50px rgba(0,0,0,.20);

      display:flex; align-items:center; gap:10px; font-weight:1000;

      transition: transform .12s ease, filter .12s ease;

      user-select:none;

    }

    .ew-fab:hover{ transform: translateY(-2px); filter: brightness(1.03); }

    .ew-fab:active{ transform: translateY(0px); }



    .ew-fabDemo{ background: linear-gradient(135deg, #23314a, #111a29); border:1px solid rgba(255,255,255,.16); }

    .ew-fabWA{ background: linear-gradient(90deg, var(--wa-teal), var(--wa-teal-dark)); }



    .ew-fabIcon{

      width:30px; height:30px; display:grid; place-items:center;

      border-radius:10px; background: rgba(255,255,255,.16);

      flex:0 0 30px;

    }



    .ew-panel{

      position:fixed; right:18px; bottom:90px; z-index:9999;

      width:360px; max-width: calc(100vw - 36px);

      height:520px; max-height: calc(100vh - 140px);

      border-radius: 18px;

      background:#121a26;

      border:1px solid rgba(255,255,255,.14);

      box-shadow: 0 22px 60px rgba(0,0,0,.38);

      overflow:hidden;

      display:none;

      font-family:var(--font);

    }

    .ew-panel.open{ display:flex; flex-direction:column; }



    .ew-head{

      padding:12px;

      background: linear-gradient(135deg, rgba(200,75,104,.28), rgba(31,143,76,.18));

      border-bottom: 1px solid rgba(255,255,255,.14);

      display:flex; align-items:center; justify-content:space-between; gap:10px;

      color:#fff;

    }

    .ew-headLeft{ display:flex; align-items:center; gap:10px; }

    .ew-badge{

      width:36px; height:36px; border-radius:12px;

      background: rgba(255,255,255,.14);

      display:grid; place-items:center;

      border: 1px solid rgba(255,255,255,.18);

    }

    .ew-title{ line-height:1.1; }

    .ew-title b{ display:block; font-size:14px; }

    .ew-title span{ display:block; font-size:12px; opacity:.85; }



    .ew-x{

      border:0; background: transparent; color: rgba(255,255,255,.88);

      font-size:18px; cursor:pointer; padding:6px 10px; border-radius:10px;

    }

    .ew-x:hover{ background: rgba(255,255,255,.10); }



    .ew-body{

      padding:12px;

      background: radial-gradient(900px 520px at 10% 0%, rgba(200,75,104,.18), transparent 42%),

                  radial-gradient(900px 520px at 90% 30%, rgba(31,143,76,.16), transparent 42%),

                  #0f1622;

      flex:1;

      overflow:auto;

    }



    .ew-row{ display:flex; margin:10px 0; }

    .ew-row.bot{ justify-content:flex-start; }

    .ew-row.user{ justify-content:flex-end; }



    .ew-bubble{

      max-width: 86%;

      padding:10px 12px;

      border-radius: 14px;

      border: 1px solid rgba(255,255,255,.14);

      font-size:13px;

      line-height:1.35;

      color:#fff;

    }

    .ew-row.bot .ew-bubble{ background: rgba(255,255,255,.08); }

    .ew-row.user .ew-bubble{ background: rgba(255,255,255,.16); }



   /* --- BOTONES DE OPCIONES (CHIPS) --- */
.ew-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
    justify-content: flex-end; /* Alineados a la derecha para que parezcan del usuario */
}

.ew-chip {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid var(--yellow); /* Borde amarillo para resaltar */
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

/* Efecto HOVER: Amarillo con texto negro */
.ew-chip:hover {
    background: var(--yellow) !important;
    color: #000000 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 191, 36, 0.3);
}

/* --- MENSAJES DEL USUARIO (Cuando hace click) --- */
/* Cambiamos el color de la burbuja del usuario a Verde para confirmar la acción */
.ew-row.user .ew-bubble {
    background: var(--green) !important;
    color: #ffffff !important;
    font-weight: 600;
    border: none;
    box-shadow: 0 4px 10px rgba(31, 143, 76, 0.2);
}

/* Consistencia con el panel */
.ew-panel {
    background: var(--wine2) !important; /* Usamos tu color vino de la web */
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ew-head {
    background: var(--wine) !important;
}

    .ew-foot{

      padding:10px 12px;

      border-top: 1px solid rgba(255,255,255,.14);

      background: rgba(0,0,0,.18);

      display:flex; gap:8px; align-items:center;

    }

    .ew-input{

      flex:1;

      border-radius: 999px;

      border: 1px solid rgba(255,255,255,.16);

      background: rgba(255,255,255,.08);

      color:#fff;

      padding:10px 12px;

      font-size:13px;

      outline:none;

    }

    .ew-send{

      border:0; cursor:pointer;

      padding:10px 12px;

      border-radius: 999px;

      background: rgba(245,191,36,.95);

      color:#191919;

      font-weight:1000;

    }

    .ew-send:hover{ filter: brightness(1.04); }

    .ew-note{ font-size:11px; opacity:.85; margin-top:10px; color:#fff; }