:root{
      --rl-primary:#A1122E; /* Rojo Vino */
      --rl-accent:#FF6C39;  /* Naranja Salsa */
      --rl-mango:#FFC94A;   /* Amarillo Mango */
      --rl-night:#2E1650;   /* Violeta Noche */
      --rl-bg:#090909;
      --rl-text:#ffffff;
      --rl-soft:rgba(255,255,255,.08);
      --rl-soft-2:rgba(255,255,255,.12);
    }
    /* Reset básico */
    *{box-sizing:border-box}
    html,body{margin:0;padding:0;background:
      radial-gradient(1200px 600px at 10% -10%, rgba(46,22,80,.4), transparent),
      linear-gradient(180deg, var(--rl-primary), var(--rl-bg) 60%);
      color:var(--rl-text);
      font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";}
    a{color:inherit;text-decoration:none}
    img{max-width:100%;display:block}
    .container{max-width:1200px;margin:0 auto;padding:0 16px}
    /* Helpers */
    .btn{display:inline-flex;align-items:center;justify-content:center;gap:.5rem;padding:.9rem 1.1rem;border-radius:999px;border:1px solid transparent;font-weight:700;cursor:pointer;transition:.2s}
    .btn-accent{background:var(--rl-accent);color:#000}
    .btn-mango{background:var(--rl-mango);color:#000}
    .btn-ghost{background:transparent;border-color:var(--rl-soft-2);color:#fff}
    .btn-ghost:hover{background:rgba(255,255,255,.06)}
    .badge{display:inline-flex;align-items:center;gap:.4rem;padding:.35rem .6rem;border-radius:999px;border:1px solid var(--rl-soft-2);background:rgba(255,255,255,.07);font-size:.8rem}
    .card{background:rgba(255,255,255,.05);border:1px solid var(--rl-soft-2);border-radius:1.25rem;padding:1rem}
    .grid{display:grid;gap:1rem}
    .shadow{box-shadow:0 10px 30px rgba(0,0,0,.35)}
    .muted{color:rgba(255,255,255,.75)}
    .small{font-size:.92rem}
    .tiny{font-size:.78rem;color:rgba(255,255,255,.6)}
    .pill{border-radius:999px}
    .hide{display:none!important}
    /* Header */
    header{position:sticky;top:0;z-index:50;background:rgba(0,0,0,.35);backdrop-filter: blur(10px);border-bottom:1px solid var(--rl-soft-2)}
    .nav{display:flex;align-items:center;gap:1.2rem}
    .logo span:first-child{color:var(--rl-accent)}
    .logo span:last-child{color:var(--rl-mango)}
    .nav a{opacity:.9}
    .nav a:hover{opacity:1}
    .nav-toggle{display:none}
    @media (max-width: 900px){
      .nav{display:none}
      .nav-toggle{display:inline-flex}
      .nav-mobile{display:flex;flex-direction:column;gap:.7rem;padding:1rem;border-top:1px solid var(--rl-soft-2)}
    }
    /* Hero */
    .hero{padding:64px 0 26px}
    .hero h1{font-size: clamp(2rem, 5vw, 3.5rem);line-height:1.1;margin:0 0 .5rem}
    .hero p{font-size: clamp(1rem, 2.2vw, 1.2rem);max-width: 48ch}
    .hero .kpis{display:grid;grid-template-columns:repeat(4,1fr);gap:1rem;margin-top:18px}
    .kpi{ text-align:center;padding:14px;border:1px solid var(--rl-soft-2);background:rgba(255,255,255,.04);border-radius:1rem}
    .kpi .value{font-size:1.6rem;font-weight:900;color:var(--rl-mango)}
    .kpi .label{font-size:.9rem;color:rgba(255,255,255,.75)}
    @media (max-width:900px){ .hero{padding:42px 0 12px} .hero .kpis{grid-template-columns:repeat(2,1fr)} }
    @media (max-width:500px){ .hero .kpis{grid-template-columns:1fr} }
    /* Sections */
    section{padding:46px 0}
    section .title{font-weight:900;font-size: clamp(1.4rem, 3.2vw, 2.2rem)}
    /* Features */
    .features{grid-template-columns:repeat(3,1fr)}
    @media (max-width:1000px){ .features{grid-template-columns:repeat(2,1fr)} }
    @media (max-width:700px){ .features{grid-template-columns:1fr} }
    .feature{display:flex;gap:.8rem}
    .icon{width:42px;height:42px;display:grid;place-items:center;border-radius:12px;background: rgba(255, 108, 57, .13);flex:0 0 42px}
    .feature h4{margin:.1rem 0 .2rem;font-size:1.02rem}
    .feature p{margin:0;color:rgba(255,255,255,.78);font-size:.95rem;line-height:1.45}
    /* Steps & Lists */
    .list{display:grid;gap:.65rem;margin:1rem 0}
    .list li{display:flex;gap:.5rem;align-items:flex-start}
    .check{color:var(--rl-mango)}
    /* Regions */
    .regions{grid-template-columns:repeat(4,1fr)}
    @media (max-width:1000px){ .regions{grid-template-columns:repeat(3,1fr)} }
    @media (max-width:700px){ .regions{grid-template-columns:repeat(2,1fr)} }
    .region{border:1px solid var(--rl-soft-2);background:rgba(255,255,255,.05);border-radius:16px;padding:.7rem .9rem;display:flex;gap:.5rem;align-items:center}
    /* FAQ */
    .accordion-item{border:1px solid var(--rl-soft-2);border-radius:1rem;background:rgba(255,255,255,.05);overflow:hidden}
    .accordion-head{padding:1rem 1.1rem;display:flex;justify-content:space-between;gap:.6rem;cursor:pointer;background:transparent;border:0;color:#fff;width:100%;text-align:left;font-weight:700}
    .accordion-head:focus-visible{outline:2px solid var(--rl-mango);outline-offset:2px}
    .accordion-content{padding:0 1.1rem;display:grid;grid-template-rows:0fr;transition: grid-template-rows .25s ease, padding .25s ease}
    .accordion-content > div{overflow:hidden}
    .accordion-item.open .accordion-content{grid-template-rows:1fr;padding:0 1.1rem 1rem 1.1rem}
    .caret{transition:transform .2s ease}
    .accordion-item.open .caret{transform:rotate(180deg)}
    /* Footer */
    footer{border-top:1px solid var(--rl-soft-2)}
    /* Animations */
    .fade{animation:fade .45s ease both}
    @keyframes fade{from{opacity:0;transform:translateY(6px)}to{opacity:1;transform:translateY(0)}}
    /* Highlight "Sociales & Fiestas" */
    .highlight{position:relative;border:1px solid var(--rl-soft-2);border-radius:20px;padding:20px;background:
      radial-gradient(800px 200px at 30% -40%, rgba(255, 201, 74, .18), transparent),
      linear-gradient(180deg, rgba(255,108,57,.20), rgba(255,255,255,.04));}
    .highlight .tag{position:absolute;top:-12px;left:16px;background:var(--rl-mango);color:#000;padding:.3rem .6rem;border-radius:999px;font-weight:800;font-size:.82rem;border:1px solid rgba(0,0,0,.15)}
    .highlight h3{margin:.4rem 0 .2rem}
    .chip{display:inline-flex;align-items:center;gap:.35rem;border:1px solid var(--rl-soft-2);padding:.35rem .6rem;border-radius:999px;background:rgba(255,255,255,.07);font-size:.86rem}


/* Generated classes from inline styles */
.gen-style-1 { color:var(--rl-accent); }
.gen-style-2 { color:var(--rl-mango); }
.gen-style-3 { display:flex;align-items:center;gap:.35rem;font-weight:900;font-size:1.25rem;letter-spacing:.2px; }
.gen-style-4 { display:flex;align-items:center;gap:.5rem; }
.gen-style-5 { display:flex;align-items:center;justify-content:space-between;padding:12px 16px; }
.gen-style-6 { display:flex;gap:.6rem;flex-wrap:wrap;margin-top:.6rem; }
.gen-style-7 { display:flex;gap:.6rem;justify-content:center;flex-wrap:wrap;margin-top:.6rem; }
.gen-style-8 { display:flex;flex-wrap:wrap;gap:.4rem;margin-top:12px; }
.gen-style-9 { display:flex;flex-wrap:wrap;gap:.6rem;margin-top:14px; }
.gen-style-10 { font-weight:800;margin-bottom:.25rem; }
.gen-style-11 { font-weight:800;margin-bottom:.5rem; }
.gen-style-12 { font-weight:800;margin-bottom:.6rem; }
.gen-style-13 { grid-template-columns:1.1fr 1fr;gap:1.2rem;align-items:center; }
@media (max-width:700px){ .gen-style-13{grid-template-columns:1fr} }
.gen-style-14 { grid-template-columns:1.2fr 1fr;align-items:center;gap:1.2rem; }
@media (max-width:700px){ .gen-style-14{grid-template-columns:1fr} }
.gen-style-15 { grid-template-columns:1.2fr 1fr;align-items:center;gap:1rem; }
@media (max-width:700px){ .gen-style-15{grid-template-columns:1fr} }
.gen-style-16 { grid-template-columns:1fr 1.1fr;gap:1.2rem;align-items:center; }
@media (max-width:700px){ .gen-style-16{grid-template-columns:1fr} }
.gen-style-17 { grid-template-columns:repeat(2,1fr); }
@media (max-width:500px){ .gen-style-17{grid-template-columns:1fr} }
.gen-style-18 { margin:.6rem 0; }
.gen-style-19 { margin:0 0 .5rem 1.1rem;line-height:1.6; }
.gen-style-20 { margin-left:.4rem; }
.gen-style-21 { margin-top:.6rem; }
.gen-style-22 { margin-top:10px; }
.gen-style-23 { margin-top:12px; }
.gen-style-24 { margin-top:14px; }
.gen-style-25 { max-width:62ch; }
.gen-style-26 { padding-top:0; }
.gen-style-27 { text-align:center; }
.gen-style-28 { text-align:center;padding:18px 0; }
.gen-style-29 { border-top:1px solid var(--rl-soft-2);background:rgba(0,0,0,.25); }
.gen-style-30 { border-top:1px solid var(--rl-soft-2);padding:52px 0;background:linear-gradient(180deg, rgba(46,22,80,.25), transparent); }