
:root{
  --opx-bg:#050809;
  --opx-bg2:#071116;
  --opx-card:#0b171c;
  --opx-card2:#101b21;
  --opx-gold:#f5c518;
  --opx-gold2:#ffd84d;
  --opx-green:#37d6a3;
  --opx-cyan:#43d9ff;
  --opx-red:#ff6b5f;
  --opx-text:#fffaf0;
  --opx-muted:rgba(255,255,255,.68);
  --opx-line:rgba(245,197,24,.22);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--opx-bg);
  color:var(--opx-text);
  font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  overflow-x:hidden;
}
a{color:inherit}
img{max-width:100%;height:auto}
.opxTop{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(5,8,9,.86);
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(245,197,24,.16);
}
.opxTopInner{
  width:min(1220px,calc(100% - 28px));
  margin:0 auto;
  min-height:76px;
  display:flex;
  align-items:center;
  gap:22px;
}
.opxBrand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  flex:0 0 auto;
}
.opxBrand img{width:42px;height:42px;border-radius:12px}
.opxBrand strong{
  display:block;
  font-weight:1000;
  letter-spacing:.18em;
  line-height:1;
}
.opxBrand span{
  color:var(--opx-gold);
  font-size:.72rem;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.14em;
}
.opxNav{
  flex:1;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:4px;
}
.opxNavItem{position:relative}
.opxNav>a,.opxNavItem>button{
  appearance:none;
  border:0;
  background:transparent;
  color:rgba(255,255,255,.78);
  text-decoration:none;
  text-transform:uppercase;
  font-weight:1000;
  letter-spacing:.08em;
  font-size:.78rem;
  padding:16px 10px;
  cursor:pointer;
}
.opxNav>a:hover,.opxNavItem>button:hover{color:var(--opx-gold)}
.opxSub{
  position:absolute;
  left:50%;
  top:100%;
  transform:translateX(-50%) translateY(8px);
  min-width:290px;
  padding:10px;
  border-radius:20px;
  background:#081014;
  border:1px solid var(--opx-line);
  box-shadow:0 22px 70px rgba(0,0,0,.55);
  opacity:0;
  pointer-events:none;
  transition:.18s ease;
}
.opxNavItem:hover .opxSub{opacity:1;pointer-events:auto;transform:translateX(-50%) translateY(0)}
.opxSub a{
  display:block;
  padding:12px 13px;
  text-decoration:none;
  color:rgba(255,255,255,.76);
  border-radius:14px;
  font-size:.88rem;
  line-height:1.25;
}
.opxSub a:hover{background:rgba(245,197,24,.09);color:#fff}
.opxActions{display:flex;gap:10px;flex:0 0 auto}
.opxBtn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:0 18px;
  border-radius:999px;
  text-decoration:none;
  font-weight:1000;
  text-transform:uppercase;
  letter-spacing:.05em;
  border:1px solid rgba(245,197,24,.28);
}
.opxBtn.gold{
  background:linear-gradient(135deg,#fff1a8,#f5c518,#d99a00);
  color:#050505;
  border-color:transparent;
}
.opxBtn.dark{color:#fff;background:rgba(255,255,255,.04)}
.opxMenuBtn{
  display:none;
  width:48px;height:48px;border-radius:14px;
  border:1px solid rgba(245,197,24,.24);
  background:#0b1215;
  color:var(--opx-gold);
  font-size:1.4rem;
}
.opxDrawerOverlay{
  position:fixed;inset:0;background:rgba(0,0,0,.62);z-index:190;
  opacity:0;pointer-events:none;transition:.2s ease;
}
.opxDrawer{
  position:fixed;top:0;right:0;width:min(88vw,380px);height:100vh;z-index:200;
  background:#071014;border-left:1px solid var(--opx-line);
  transform:translateX(105%);transition:.24s ease;
  padding:18px;overflow:auto;
}
.opxDrawer.is-open{transform:translateX(0)}
.opxDrawerOverlay.is-open{opacity:1;pointer-events:auto}
.opxDrawerHead{display:flex;align-items:center;justify-content:space-between;margin-bottom:16px}
.opxDrawerClose{
  width:44px;height:44px;border-radius:12px;border:1px solid rgba(255,255,255,.14);
  background:#111;color:#fff;font-size:1.5rem;
}
.opxDrawer details{
  border:1px solid rgba(255,255,255,.1);
  border-radius:16px;
  padding:10px 12px;
  margin-bottom:10px;
  background:rgba(255,255,255,.035);
}
.opxDrawer summary{
  cursor:pointer;
  color:var(--opx-gold);
  font-weight:1000;
  text-transform:uppercase;
  letter-spacing:.06em;
}
.opxDrawer a{
  display:block;
  padding:12px 8px;
  color:rgba(255,255,255,.78);
  text-decoration:none;
}
.opxHero{
  position:relative;
  padding:92px 0 76px;
  background:
    radial-gradient(circle at 10% 10%, rgba(245,197,24,.16), transparent 34%),
    radial-gradient(circle at 82% 35%, rgba(55,214,163,.10), transparent 38%),
    linear-gradient(180deg,#050505,#071116);
}
.opxWrap{width:min(1180px,calc(100% - 32px));margin:0 auto}
.opxHeroGrid{
  display:grid;
  grid-template-columns:1.04fr .96fr;
  gap:34px;
  align-items:center;
}
.opxKicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 13px;
  border-radius:999px;
  background:rgba(245,197,24,.09);
  border:1px solid rgba(245,197,24,.28);
  color:var(--opx-gold);
  font-size:.76rem;
  letter-spacing:.09em;
  text-transform:uppercase;
  font-weight:1000;
}
h1,.opxH1{
  margin:18px 0 16px;
  font-size:clamp(3rem,7vw,6.8rem);
  line-height:.88;
  letter-spacing:.015em;
  text-transform:uppercase;
  font-weight:1000;
  text-wrap:balance;
}
h1 span,.opxH1 span{color:var(--opx-gold)}
.opxLead{
  font-size:clamp(1.05rem,2vw,1.35rem);
  line-height:1.55;
  color:rgba(255,255,255,.78);
  max-width:760px;
}
.opxCTA{display:flex;gap:12px;flex-wrap:wrap;margin-top:26px}
.opxTrustMini{
  display:flex;gap:10px;flex-wrap:wrap;margin-top:18px;color:rgba(255,255,255,.66);
  font-size:.92rem;
}
.opxTrustMini span{
  border:1px solid rgba(255,255,255,.11);
  background:rgba(255,255,255,.04);
  padding:8px 10px;border-radius:999px;
}
.opxMockPanel{
  border:1px solid rgba(245,197,24,.25);
  background:linear-gradient(180deg,rgba(255,255,255,.07),rgba(255,255,255,.025));
  border-radius:34px;
  padding:18px;
  box-shadow:0 24px 90px rgba(0,0,0,.45);
}
.opxMockPanel img{border-radius:28px;display:block;margin:auto;max-height:680px}
.opxSection{padding:76px 0;background:#071116}
.opxSection.alt{background:#05090b}
.opxSectionHead{text-align:center;max-width:900px;margin:0 auto 34px}
.opxSectionHead h2{
  margin:0 0 12px;
  font-size:clamp(2rem,4.5vw,4rem);
  line-height:1.02;
  text-transform:uppercase;
  letter-spacing:.025em;
  text-wrap:balance;
}
.opxSectionHead p{color:var(--opx-muted);line-height:1.65;font-size:1.06rem}
.opxGrid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.opxGrid.two{grid-template-columns:repeat(2,1fr)}
.opxGrid.four{grid-template-columns:repeat(4,1fr)}
.opxCard{
  padding:22px;border-radius:26px;background:linear-gradient(180deg,rgba(255,255,255,.06),rgba(255,255,255,.025));
  border:1px solid rgba(255,255,255,.1);
  box-shadow:0 18px 60px rgba(0,0,0,.22);
}
.opxCard.gold{border-color:rgba(245,197,24,.28);background:rgba(245,197,24,.07)}
.opxCard h3{margin:0 0 10px;font-size:1.18rem}
.opxCard p,.opxCard li{color:var(--opx-muted);line-height:1.58}
.opxCard ul{padding-left:18px}
.opxPill{display:inline-flex;padding:6px 10px;border-radius:999px;background:rgba(55,214,163,.1);color:var(--opx-green);font-weight:900;font-size:.76rem;text-transform:uppercase;letter-spacing:.06em}
.opxScreens{
  display:grid;grid-template-columns:repeat(4,1fr);gap:16px;align-items:start;
}
.opxPhone{
  border-radius:28px;padding:10px;background:#03090b;border:1px solid rgba(245,197,24,.20);
  box-shadow:0 20px 70px rgba(0,0,0,.35);
}
.opxPhone img{border-radius:22px;display:block}
.opxFormBox{
  display:grid;grid-template-columns:1fr 1fr;gap:28px;align-items:start;
  padding:28px;border-radius:34px;background:linear-gradient(135deg,rgba(245,197,24,.12),rgba(55,214,163,.06));
  border:1px solid rgba(245,197,24,.26);
}
.opxForm{
  display:grid;gap:12px;
}
.opxField label{
  display:flex;justify-content:space-between;gap:8px;
  color:#fff;font-weight:900;font-size:.9rem;margin-bottom:6px;
}
.opxField small{color:rgba(255,255,255,.52);font-weight:700}
.opxField input,.opxField select{
  width:100%;min-height:52px;border-radius:16px;border:1px solid rgba(245,197,24,.24);
  background:#060a0c;color:#fff;padding:0 14px;font-size:1rem;outline:none;
}
.opxField input:focus,.opxField select:focus{border-color:var(--opx-gold);box-shadow:0 0 0 3px rgba(245,197,24,.14)}
.opxCheck{display:flex;gap:10px;align-items:flex-start;color:rgba(255,255,255,.72);line-height:1.45;font-size:.92rem}
.opxCheck input{margin-top:4px;accent-color:var(--opx-gold)}
.opxSubmit{
  min-height:56px;border:0;border-radius:18px;cursor:pointer;
  background:linear-gradient(135deg,#fff1a8,#f5c518,#d99a00);
  color:#050505;font-weight:1000;text-transform:uppercase;letter-spacing:.05em;font-size:1rem;
}
.opxMsg{font-weight:900;min-height:24px}.opxMsg.ok{color:var(--opx-green)}.opxMsg.err{color:var(--opx-red)}
.opxFooter{
  padding:34px 0;color:rgba(255,255,255,.55);border-top:1px solid rgba(255,255,255,.08);background:#040607;
}
.opxFooter a{color:rgba(255,255,255,.78);text-decoration:none;margin-right:12px}
.opxSticky{
  position:fixed;right:16px;bottom:16px;z-index:80;
  min-height:52px;padding:0 18px;border-radius:999px;
  background:linear-gradient(135deg,#fff1a8,#f5c518,#d99a00);
  color:#050505!important;text-decoration:none;font-weight:1000;text-transform:uppercase;letter-spacing:.04em;
  box-shadow:0 18px 60px rgba(0,0,0,.45);
}
.opxSource{
  font-size:.86rem;color:rgba(255,255,255,.56);border-left:3px solid var(--opx-gold);
  padding-left:12px;margin-top:14px;
}
.opxSource a{color:var(--opx-gold)}
@media(max-width:1040px){
  .opxNav,.opxActions{display:none}
  .opxMenuBtn{display:grid;place-items:center;margin-left:auto}
  .opxHeroGrid,.opxFormBox{grid-template-columns:1fr}
  .opxMockPanel img{max-height:590px}
  .opxGrid,.opxGrid.two,.opxGrid.four{grid-template-columns:1fr 1fr}
  .opxScreens{grid-template-columns:1fr 1fr}
}
@media(max-width:680px){
  .opxTopInner{min-height:66px}
  .opxBrand strong{font-size:.88rem;letter-spacing:.13em}
  .opxBrand span{font-size:.62rem;letter-spacing:.08em}
  .opxHero{padding:54px 0 44px}
  h1,.opxH1{
    font-size:clamp(2.35rem,15vw,4.05rem)!important;
    line-height:1.02!important;
    letter-spacing:.006em!important;
    word-spacing:.08em!important;
  }
  .opxLead{font-size:1.02rem;line-height:1.55}
  .opxCTA .opxBtn{width:100%}
  .opxSection{padding:50px 0}
  .opxSectionHead h2{
    font-size:clamp(1.95rem,11vw,3.1rem)!important;
    line-height:1.07!important;
    letter-spacing:.006em!important;
    word-spacing:.06em!important;
  }
  .opxGrid,.opxGrid.two,.opxGrid.four,.opxScreens{grid-template-columns:1fr}
  .opxFormBox{padding:18px;border-radius:26px}
  .opxSticky{left:12px;right:12px;bottom:10px;text-align:center;justify-content:center}
}



/* ===== GOD LEVEL SEO / UX PATCH ===== */
.opxMascot{
  position:absolute;
  pointer-events:none;
  user-select:none;
  opacity:.95;
  filter:drop-shadow(0 24px 55px rgba(0,0,0,.48));
  z-index:1;
}
.opxMascot.hero{right:4vw;bottom:-30px;width:min(330px,34vw);opacity:.82}
.opxMascot.left{left:2vw;bottom:-20px;width:min(250px,25vw);opacity:.68}
.opxMascot.card{
  position:relative;
  width:min(170px,48%);
  margin:0 auto 14px;
  display:block;
}
.opxHero .opxWrap,
.opxSection .opxWrap{position:relative;z-index:2}
.opxLawList{
  display:flex;
  flex-wrap:wrap;
  gap:7px;
  margin-top:14px;
}
.opxLawList a{
  display:inline-flex;
  align-items:center;
  min-height:31px;
  padding:0 10px;
  border-radius:999px;
  background:rgba(245,197,24,.08);
  border:1px solid rgba(245,197,24,.22);
  color:#f5c518;
  text-decoration:none;
  font-weight:900;
  font-size:.76rem;
  letter-spacing:.02em;
}
.opxLawList a:hover{background:rgba(245,197,24,.16);color:#fff}
.opxMegaText{
  max-width:980px;
  margin:0 auto 28px;
  color:rgba(255,255,255,.72);
  line-height:1.75;
  font-size:1.05rem;
}
.opxTableWrap{
  width:100%;
  overflow:auto;
  border-radius:24px;
  border:1px solid rgba(245,197,24,.20);
  background:#060b0e;
  box-shadow:0 18px 60px rgba(0,0,0,.22);
}
.opxTable{
  width:100%;
  min-width:720px;
  border-collapse:collapse;
}
.opxTable th,
.opxTable td{
  padding:12px 14px;
  border-bottom:1px solid rgba(255,255,255,.08);
  text-align:left;
  color:rgba(255,255,255,.75);
}
.opxTable th{
  color:#050505;
  background:linear-gradient(135deg,#fff1a8,#f5c518,#d99a00);
  font-weight:1000;
  text-transform:uppercase;
  letter-spacing:.04em;
  font-size:.82rem;
}
.opxTable td:first-child{
  color:#fff;
  font-weight:1000;
}
.opxFeatureSplit{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:24px;
  align-items:center;
}
.opxFeatureImage{
  border-radius:34px;
  padding:22px;
  background:radial-gradient(circle at 50% 20%, rgba(245,197,24,.14), transparent 48%), rgba(255,255,255,.035);
  border:1px solid rgba(245,197,24,.18);
  text-align:center;
}
.opxFeatureImage img{
  max-height:360px;
  object-fit:contain;
}
.opxSeoChips{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}
.opxSeoChips span{
  padding:8px 11px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  color:rgba(255,255,255,.68);
  background:rgba(255,255,255,.035);
  font-size:.86rem;
}
.opxNoRegister a[href*="intent=login"],
.opxNoRegister a[href*="intent=register"],
a[href*="/app/?intent=login"],
a[href*="/app/?intent=register"]{
  display:none!important;
}
@media(max-width:1040px){
  .opxMascot.hero{display:none}
  .opxFeatureSplit{grid-template-columns:1fr}
}
@media(max-width:680px){
  .opxTable{min-width:640px}
  .opxHero .opxMockPanel{display:none}
  .opxMascot.left{display:none}
  .opxFeatureImage img{max-height:260px}
  .opxLawList a{font-size:.72rem}
}



/* ===== AJUSTES FINOS WEB PRO ===== */
.opxSticky,
.opxCROSticky,
.opxStickyReserve{
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  text-align:center!important;
  line-height:1!important;
  white-space:nowrap!important;
  min-width:168px;
  min-height:54px;
  padding:0 20px!important;
}

.opxFormBox{
  position:relative;
  overflow:hidden;
}
.opxFormBox::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(circle at 10% 15%, rgba(245,197,24,.16), transparent 32%),
    radial-gradient(circle at 90% 75%, rgba(55,214,163,.12), transparent 34%);
  pointer-events:none;
}
.opxFormBox > *{
  position:relative;
  z-index:1;
}
.opxReservePanel{
  padding:22px;
  border-radius:28px;
  background:rgba(0,0,0,.22);
  border:1px solid rgba(245,197,24,.18);
}
.opxReservePrice{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin:18px 0;
}
.opxReservePrice div{
  padding:14px;
  border-radius:18px;
  background:rgba(255,255,255,.045);
  border:1px solid rgba(255,255,255,.09);
}
.opxReservePrice strong{
  display:block;
  color:#f5c518;
  font-size:1.25rem;
}
.opxReservePrice span{
  color:rgba(255,255,255,.66);
  font-size:.9rem;
}
.opxLeadFormCard{
  padding:22px;
  border-radius:28px;
  background:linear-gradient(180deg,rgba(255,255,255,.09),rgba(255,255,255,.035));
  border:1px solid rgba(245,197,24,.28);
  box-shadow:0 22px 70px rgba(0,0,0,.34);
}
.opxLeadFormTitle{
  margin:0 0 8px;
  color:#fff;
  font-size:1.45rem;
  font-weight:1000;
  letter-spacing:.02em;
}
.opxLeadFormSub{
  margin:0 0 16px;
  color:rgba(255,255,255,.68);
  line-height:1.55;
}
.opxField input,
.opxField select{
  transition:.18s ease;
}
.opxField input:hover,
.opxField select:hover{
  border-color:rgba(245,197,24,.42);
}
.opxCheck{
  padding:12px;
  border-radius:16px;
  background:rgba(0,0,0,.18);
  border:1px solid rgba(255,255,255,.08);
}
.opxSubmit{
  box-shadow:0 18px 40px rgba(245,197,24,.18);
}
.opxSubmit:hover{
  transform:translateY(-1px);
  filter:saturate(1.08);
}
.opxFormTrust{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:8px;
  margin:12px 0 0;
}
.opxFormTrust span{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:36px;
  padding:6px 8px;
  border-radius:999px;
  background:rgba(55,214,163,.09);
  border:1px solid rgba(55,214,163,.18);
  color:#37d6a3;
  font-size:.78rem;
  font-weight:900;
  text-align:center;
}
.opxFormulaBox{
  padding:22px;
  border-radius:26px;
  background:#060b0e;
  border:1px solid rgba(245,197,24,.25);
  color:#fff;
  font-size:clamp(1.35rem,3vw,2.4rem);
  font-weight:1000;
  text-align:center;
  letter-spacing:.02em;
}
.opxCalcResult{
  padding:22px;
  border-radius:26px;
  background:rgba(55,214,163,.09);
  border:1px solid rgba(55,214,163,.22);
}
.opxCalcResult strong{
  display:block;
  font-size:clamp(2rem,5vw,4rem);
  color:#37d6a3;
  line-height:1;
}
.opxMedicalIndex{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:12px;
  margin:24px 0 0;
}
.opxMedicalIndex a{
  min-height:52px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:10px;
  border-radius:16px;
  text-decoration:none;
  text-align:center;
  font-weight:1000;
  color:#fff;
  background:rgba(255,255,255,.045);
  border:1px solid rgba(255,255,255,.10);
}
.opxMedicalIndex a:hover{
  color:#050505;
  background:#f5c518;
}
@media(max-width:980px){
  .opxMedicalIndex{
    grid-template-columns:1fr 1fr;
  }
}
@media(max-width:680px){
  .opxReservePrice,
  .opxFormTrust{
    grid-template-columns:1fr;
  }
  .opxMedicalIndex{
    grid-template-columns:1fr;
  }
  .opxSticky,
  .opxCROSticky,
  .opxStickyReserve{
    min-width:0!important;
    width:auto!important;
    left:12px!important;
    right:12px!important;
  }
}



/* ===== FIX DEFINITIVO METODO PIKI / FUNCIONES APP ===== */
.opxMethodHero{
  position:relative;
  padding:92px 0 76px;
  background:
    radial-gradient(circle at 12% 8%, rgba(245,197,24,.14), transparent 34%),
    radial-gradient(circle at 86% 42%, rgba(55,214,163,.11), transparent 38%),
    linear-gradient(180deg,#050607,#071116);
  overflow:hidden;
}
.opxMethodGrid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:34px;
  align-items:center;
}
.opxMethodVisual{
  border-radius:36px;
  padding:24px;
  background:
    radial-gradient(circle at 50% 8%, rgba(245,197,24,.18), transparent 45%),
    linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.025));
  border:1px solid rgba(245,197,24,.24);
  box-shadow:0 26px 90px rgba(0,0,0,.45);
  text-align:center;
}
.opxMethodVisual img{
  max-height:430px;
  object-fit:contain;
  filter:drop-shadow(0 26px 55px rgba(0,0,0,.55));
}
.opxMethodSteps{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}
.opxMethodStep{
  position:relative;
  min-height:340px;
  padding:22px;
  border-radius:30px;
  background:linear-gradient(180deg, rgba(255,255,255,.065), rgba(255,255,255,.025));
  border:1px solid rgba(255,255,255,.10);
  box-shadow:0 18px 60px rgba(0,0,0,.24);
  overflow:hidden;
}
.opxMethodStep.gold{
  border-color:rgba(245,197,24,.30);
  background:
    radial-gradient(circle at 15% 0%, rgba(245,197,24,.18), transparent 44%),
    linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.025));
}
.opxMethodLetter{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:54px;
  height:54px;
  border-radius:18px;
  background:#f5c518;
  color:#050505;
  font-size:2rem;
  font-weight:1000;
  margin-bottom:14px;
}
.opxMethodStep h3{
  margin:0 0 10px;
  color:#fff;
  font-size:1.35rem;
}
.opxMethodStep p{
  color:rgba(255,255,255,.68);
  line-height:1.58;
}
.opxMethodStep img{
  display:block;
  max-height:138px;
  object-fit:contain;
  margin:12px auto 0;
  filter:drop-shadow(0 18px 38px rgba(0,0,0,.42));
}
.opxFunctionGrid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.opxFunctionCard{
  padding:24px;
  border-radius:30px;
  background:linear-gradient(180deg, rgba(255,255,255,.065), rgba(255,255,255,.025));
  border:1px solid rgba(255,255,255,.10);
  box-shadow:0 18px 60px rgba(0,0,0,.22);
}
.opxFunctionCard.gold{
  border-color:rgba(245,197,24,.30);
  background:rgba(245,197,24,.07);
}
.opxFunctionCard img{
  display:block;
  height:150px;
  object-fit:contain;
  margin:0 auto 16px;
  filter:drop-shadow(0 18px 38px rgba(0,0,0,.42));
}
.opxFunctionCard h3{
  margin:0 0 10px;
  color:#fff;
  font-size:1.25rem;
}
.opxFunctionCard p{
  margin:0;
  color:rgba(255,255,255,.68);
  line-height:1.58;
}
.opxOldButtonsFix a[href*="intent=login"],
.opxOldButtonsFix a[href*="intent=register"],
.opxOldButtonsFix a[href*="demo=test"],
.opxOldButtonsFix a[href*="diagnostico"],
.opxOldButtonsFix a[href="/"],
.opxOldButtonsFix a[href="/app/"]{
  display:none!important;
}
@media(max-width:1040px){
  .opxMethodGrid{
    grid-template-columns:1fr;
  }
  .opxMethodSteps,
  .opxFunctionGrid{
    grid-template-columns:1fr 1fr;
  }
  .opxMethodVisual img{
    max-height:340px;
  }
}
@media(max-width:680px){
  .opxMethodHero{
    padding:54px 0 44px;
  }
  .opxMethodSteps,
  .opxFunctionGrid{
    grid-template-columns:1fr;
  }
  .opxMethodStep{
    min-height:auto;
  }
  .opxMethodVisual{
    border-radius:26px;
    padding:16px;
  }
  .opxMethodVisual img{
    max-height:260px;
  }
}



/* ===== UNIFICACIÓN WEB PÚBLICA ===== */
.opxArticle{
  max-width:940px;
  margin:0 auto;
}
.opxArticle h2{
  margin:42px 0 12px;
  color:#fff;
  font-size:clamp(1.7rem,3vw,2.7rem);
  line-height:1.08;
  text-transform:uppercase;
  letter-spacing:.018em;
}
.opxArticle p{
  color:rgba(255,255,255,.72);
  line-height:1.78;
  font-size:1.05rem;
}
.opxArticle ul{
  color:rgba(255,255,255,.72);
  line-height:1.75;
}
.opxArticle li{
  margin:8px 0;
}
.opxArticleBox{
  margin:28px 0;
  padding:24px;
  border-radius:28px;
  background:linear-gradient(180deg,rgba(255,255,255,.065),rgba(255,255,255,.025));
  border:1px solid rgba(245,197,24,.18);
}
.opxArticleBox.gold{
  background:rgba(245,197,24,.08);
  border-color:rgba(245,197,24,.30);
}
.opxMiniNav{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:24px;
}
.opxMiniNav a{
  display:inline-flex;
  align-items:center;
  min-height:40px;
  padding:0 12px;
  border-radius:999px;
  background:rgba(255,255,255,.045);
  border:1px solid rgba(255,255,255,.10);
  color:rgba(255,255,255,.78);
  text-decoration:none;
  font-weight:900;
  font-size:.88rem;
}
.opxMiniNav a:hover{
  color:#050505;
  background:#f5c518;
}
.opxLegalPage .opxArticleBox p{
  margin:0;
}
.opxBlogMeta{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:18px;
}
.opxBlogMeta span{
  padding:7px 10px;
  border-radius:999px;
  color:#37d6a3;
  background:rgba(55,214,163,.09);
  border:1px solid rgba(55,214,163,.18);
  font-size:.82rem;
  font-weight:900;
}
.opxUnifiedNotice{
  padding:18px;
  border-radius:22px;
  background:rgba(245,197,24,.08);
  border:1px solid rgba(245,197,24,.22);
  color:rgba(255,255,255,.76);
  line-height:1.6;
}



/* ===== LANDING RESERVA PRO FIX DEFINITIVO ===== */
.opxReserveLanding{
  min-height:calc(100vh - 76px);
  padding:74px 0 72px;
  background:
    radial-gradient(circle at 14% 18%, rgba(245,197,24,.16), transparent 34%),
    radial-gradient(circle at 86% 70%, rgba(55,214,163,.12), transparent 38%),
    linear-gradient(180deg,#040707,#071116);
  overflow:hidden;
}
.opxReserveGrid{
  width:min(1220px, calc(100% - 32px));
  margin:0 auto;
  display:grid;
  grid-template-columns:minmax(0, 1fr) minmax(420px, 520px);
  gap:42px;
  align-items:center;
}
.opxReserveCopy{
  max-width:690px;
}
.opxReserveCopy h1{
  margin:18px 0 18px;
  font-size:clamp(3.2rem,6.6vw,7.2rem);
  line-height:.9;
  letter-spacing:.012em;
  text-transform:uppercase;
  font-weight:1000;
}
.opxReserveCopy h1 span{
  color:#f5c518;
}
.opxReserveCopy p{
  max-width:640px;
}
.opxReserveBadges{
  display:flex;
  flex-wrap:wrap;
  gap:9px;
  margin-top:22px;
}
.opxReserveBadges span{
  padding:8px 11px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.045);
  color:rgba(255,255,255,.72);
  font-size:.86rem;
  font-weight:900;
}
.opxReserveSide{
  width:100%;
  max-width:520px;
  justify-self:end;
}
.opxReserveOfferTop{
  margin-bottom:14px;
  padding:18px;
  border-radius:26px;
  background:
    radial-gradient(circle at 10% 0%, rgba(245,197,24,.18), transparent 46%),
    linear-gradient(180deg,rgba(255,255,255,.075),rgba(255,255,255,.03));
  border:1px solid rgba(245,197,24,.26);
  box-shadow:0 18px 60px rgba(0,0,0,.28);
}
.opxReserveOfferTop h2{
  margin:10px 0 8px;
  font-size:clamp(1.7rem,3vw,2.8rem);
  line-height:1.02;
  text-transform:uppercase;
}
.opxReserveOfferTop p{
  margin:0;
  color:rgba(255,255,255,.70);
  line-height:1.55;
}
.opxReservePrices{
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  gap:8px;
  margin-top:14px;
}
.opxReservePrices div{
  padding:10px;
  border-radius:16px;
  background:rgba(0,0,0,.22);
  border:1px solid rgba(255,255,255,.09);
  text-align:center;
}
.opxReservePrices strong{
  display:block;
  color:#f5c518;
  font-size:.98rem;
}
.opxReservePrices span{
  color:rgba(255,255,255,.62);
  font-size:.78rem;
}
.opxReserveFormCard{
  padding:22px;
  border-radius:30px;
  background:
    radial-gradient(circle at 100% 0%, rgba(55,214,163,.10), transparent 42%),
    linear-gradient(180deg,rgba(255,255,255,.085),rgba(255,255,255,.035));
  border:1px solid rgba(245,197,24,.30);
  box-shadow:0 24px 80px rgba(0,0,0,.42);
}
.opxReserveFormCard h2{
  margin:0 0 8px;
  color:#fff;
  font-size:1.55rem;
  font-weight:1000;
}
.opxReserveFormCard > p{
  margin:0 0 16px;
  color:rgba(255,255,255,.68);
  line-height:1.52;
}
.opxReserveForm{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}
.opxReserveForm .opxField{
  margin:0;
}
.opxReserveForm .opxField.full,
.opxReserveForm .opxCheck,
.opxReserveForm .opxSubmit,
.opxReserveForm .opxMsg,
.opxReserveForm .opxFormTrust{
  grid-column:1 / -1;
}
.opxReserveForm .opxField label{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin:0 0 6px;
  color:#fff;
  font-weight:1000;
  font-size:.86rem;
}
.opxReserveForm .opxField small{
  color:rgba(255,255,255,.48);
  font-weight:800;
}
.opxReserveForm input,
.opxReserveForm select{
  width:100%;
  min-height:50px;
  border-radius:16px;
  border:1px solid rgba(245,197,24,.24);
  background:#05090b;
  color:#fff;
  padding:0 14px;
  outline:none;
  font-size:.98rem;
}
.opxReserveForm input:focus,
.opxReserveForm select:focus{
  border-color:#f5c518;
  box-shadow:0 0 0 3px rgba(245,197,24,.14);
}
.opxReserveForm .opxCheck{
  display:flex;
  gap:10px;
  align-items:flex-start;
  padding:12px;
  border-radius:16px;
  background:rgba(0,0,0,.24);
  border:1px solid rgba(255,255,255,.09);
  color:rgba(255,255,255,.72);
  line-height:1.42;
  font-size:.88rem;
}
.opxReserveForm .opxCheck input{
  width:auto;
  min-height:auto;
  margin-top:4px;
  accent-color:#f5c518;
}
.opxReserveForm .opxCheck a{
  color:#f5c518;
  font-weight:900;
}
.opxReserveForm .opxSubmit{
  min-height:56px;
  border:0;
  border-radius:18px;
  background:linear-gradient(135deg,#fff1a8,#f5c518,#d99a00);
  color:#050505;
  font-weight:1000;
  text-transform:uppercase;
  letter-spacing:.05em;
  cursor:pointer;
  box-shadow:0 18px 42px rgba(245,197,24,.20);
}
.opxReserveForm .opxSubmit:hover{
  transform:translateY(-1px);
  filter:saturate(1.08);
}
.opxReserveForm .opxFormTrust{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:8px;
}
.opxReserveForm .opxFormTrust span{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:34px;
  padding:6px;
  border-radius:999px;
  background:rgba(55,214,163,.09);
  border:1px solid rgba(55,214,163,.18);
  color:#37d6a3;
  font-size:.76rem;
  font-weight:900;
  text-align:center;
}
.opxReserveShots{
  padding:64px 0;
  background:#071116;
}
.opxSticky,
.opxCROSticky,
.opxStickyReserve{
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  text-align:center!important;
  line-height:1!important;
}
@media(max-width:1100px){
  .opxReserveGrid{
    grid-template-columns:1fr;
  }
  .opxReserveSide{
    justify-self:stretch;
    max-width:680px;
    margin:0 auto;
  }
  .opxReserveCopy{
    text-align:center;
    margin:0 auto;
  }
  .opxReserveCopy p{
    margin-left:auto;
    margin-right:auto;
  }
  .opxReserveBadges{
    justify-content:center;
  }
}
@media(max-width:680px){
  .opxReserveLanding{
    padding:48px 0 42px;
  }
  .opxReserveGrid{
    width:min(100% - 24px, 1220px);
    gap:26px;
  }
  .opxReserveCopy h1{
    font-size:clamp(2.55rem,14vw,4.1rem)!important;
    line-height:1.02!important;
    letter-spacing:.004em!important;
  }
  .opxReserveForm{
    grid-template-columns:1fr;
  }
  .opxReservePrices,
  .opxReserveForm .opxFormTrust{
    grid-template-columns:1fr;
  }
  .opxReserveFormCard,
  .opxReserveOfferTop{
    padding:18px;
    border-radius:24px;
  }
}



/* ===== PIKI IA REAL FIX ===== */
.opxPikiHero{
  min-height:calc(100vh - 76px);
  padding:82px 0 72px;
  background:
    radial-gradient(circle at 15% 15%, rgba(245,197,24,.16), transparent 34%),
    radial-gradient(circle at 82% 62%, rgba(55,214,163,.13), transparent 38%),
    linear-gradient(180deg,#040707,#071116);
  overflow:hidden;
}
.opxPikiHeroGrid{
  width:min(1220px, calc(100% - 32px));
  margin:0 auto;
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(320px,460px);
  gap:42px;
  align-items:center;
}
.opxPikiHero h1{
  margin:18px 0 18px;
  font-size:clamp(3.1rem,6.4vw,7rem);
  line-height:.92;
  letter-spacing:.01em;
  text-transform:uppercase;
}
.opxPikiHero h1 span{
  color:#f5c518;
}
.opxPikiVisual{
  padding:26px;
  border-radius:36px;
  background:
    radial-gradient(circle at 50% 15%, rgba(245,197,24,.16), transparent 44%),
    linear-gradient(180deg,rgba(255,255,255,.075),rgba(255,255,255,.03));
  border:1px solid rgba(245,197,24,.26);
  text-align:center;
  box-shadow:0 26px 90px rgba(0,0,0,.45);
}
.opxPikiVisual img{
  max-height:430px;
  object-fit:contain;
  filter:drop-shadow(0 28px 60px rgba(0,0,0,.55));
}
.opxPikiMethodGrid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}
.opxPikiMethodCard{
  padding:24px;
  border-radius:30px;
  background:linear-gradient(180deg,rgba(255,255,255,.065),rgba(255,255,255,.025));
  border:1px solid rgba(255,255,255,.10);
  box-shadow:0 18px 60px rgba(0,0,0,.24);
}
.opxPikiMethodCard.gold{
  border-color:rgba(245,197,24,.30);
  background:
    radial-gradient(circle at 15% 0%, rgba(245,197,24,.18), transparent 44%),
    linear-gradient(180deg,rgba(255,255,255,.07),rgba(255,255,255,.025));
}
.opxPikiMethodCard b{
  width:54px;
  height:54px;
  display:grid;
  place-items:center;
  border-radius:18px;
  background:#f5c518;
  color:#050505;
  font-size:2rem;
  font-weight:1000;
  margin-bottom:14px;
}
.opxPikiMethodCard h3{
  margin:0 0 10px;
  color:#fff;
  font-size:1.35rem;
}
.opxPikiMethodCard p{
  margin:0;
  color:rgba(255,255,255,.68);
  line-height:1.58;
}
.opxPikiMethodCard img{
  display:block;
  max-height:130px;
  object-fit:contain;
  margin:16px auto 0;
  filter:drop-shadow(0 18px 38px rgba(0,0,0,.42));
}
.opxPikiUseGrid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
@media(max-width:1040px){
  .opxPikiHeroGrid{
    grid-template-columns:1fr;
    text-align:center;
  }
  .opxPikiMethodGrid,
  .opxPikiUseGrid{
    grid-template-columns:1fr 1fr;
  }
  .opxPikiVisual img{
    max-height:330px;
  }
}
@media(max-width:680px){
  .opxPikiHero{
    padding:52px 0 44px;
  }
  .opxPikiHero h1{
    font-size:clamp(2.55rem,14vw,4.1rem)!important;
    line-height:1.03!important;
    letter-spacing:.004em!important;
  }
  .opxPikiMethodGrid,
  .opxPikiUseGrid{
    grid-template-columns:1fr;
  }
  .opxPikiVisual{
    padding:18px;
    border-radius:26px;
  }
  .opxPikiVisual img{
    max-height:250px;
  }
}



/* ===== LEGAL PRO EMAIL MARKETING ===== */
.opxLegalHero{
  padding:76px 0 48px;
  background:
    radial-gradient(circle at 12% 10%, rgba(245,197,24,.15), transparent 34%),
    radial-gradient(circle at 86% 50%, rgba(55,214,163,.10), transparent 38%),
    linear-gradient(180deg,#040707,#071116);
}
.opxLegalLayout{
  width:min(1160px, calc(100% - 32px));
  margin:0 auto;
  display:grid;
  grid-template-columns:280px minmax(0,1fr);
  gap:26px;
  align-items:start;
}
.opxLegalSide{
  position:sticky;
  top:92px;
  padding:18px;
  border-radius:24px;
  background:rgba(255,255,255,.045);
  border:1px solid rgba(245,197,24,.18);
}
.opxLegalSide h2{
  margin:0 0 12px;
  font-size:1rem;
  color:#f5c518;
  text-transform:uppercase;
  letter-spacing:.06em;
}
.opxLegalSide a{
  display:block;
  padding:10px 11px;
  border-radius:14px;
  color:rgba(255,255,255,.72);
  text-decoration:none;
  font-weight:850;
  font-size:.9rem;
}
.opxLegalSide a:hover{
  background:rgba(245,197,24,.10);
  color:#fff;
}
.opxLegalArticle{
  padding:26px;
  border-radius:30px;
  background:linear-gradient(180deg,rgba(255,255,255,.06),rgba(255,255,255,.025));
  border:1px solid rgba(255,255,255,.10);
  box-shadow:0 24px 80px rgba(0,0,0,.30);
}
.opxLegalArticle h2{
  margin:34px 0 12px;
  font-size:clamp(1.55rem,3vw,2.5rem);
  line-height:1.08;
  text-transform:uppercase;
}
.opxLegalArticle h2:first-child{
  margin-top:0;
}
.opxLegalArticle h3{
  margin:24px 0 8px;
  color:#f5c518;
  font-size:1.14rem;
}
.opxLegalArticle p,
.opxLegalArticle li{
  color:rgba(255,255,255,.72);
  line-height:1.72;
  font-size:1rem;
}
.opxLegalArticle ul{
  padding-left:20px;
}
.opxLegalNote{
  padding:16px;
  border-radius:20px;
  background:rgba(245,197,24,.08);
  border:1px solid rgba(245,197,24,.24);
  color:rgba(255,255,255,.78);
  line-height:1.6;
}
.opxLegalGood{
  padding:16px;
  border-radius:20px;
  background:rgba(55,214,163,.08);
  border:1px solid rgba(55,214,163,.22);
}
.opxLegalBad{
  padding:16px;
  border-radius:20px;
  background:rgba(255,90,90,.08);
  border:1px solid rgba(255,90,90,.22);
}
.opxLegalTable{
  width:100%;
  border-collapse:collapse;
  min-width:720px;
}
.opxLegalTable th,
.opxLegalTable td{
  padding:12px;
  border-bottom:1px solid rgba(255,255,255,.09);
  text-align:left;
  vertical-align:top;
  color:rgba(255,255,255,.72);
}
.opxLegalTable th{
  color:#050505;
  background:#f5c518;
  font-weight:1000;
}
.opxLegalTableWrap{
  overflow:auto;
  border-radius:20px;
  border:1px solid rgba(245,197,24,.18);
}
.opxLegalVersion{
  display:inline-flex;
  margin-top:14px;
  padding:7px 10px;
  border-radius:999px;
  background:rgba(255,255,255,.045);
  border:1px solid rgba(255,255,255,.10);
  color:rgba(255,255,255,.62);
  font-size:.82rem;
  font-weight:850;
}
@media(max-width:980px){
  .opxLegalLayout{
    grid-template-columns:1fr;
  }
  .opxLegalSide{
    position:relative;
    top:auto;
  }
}
@media(max-width:680px){
  .opxLegalHero{
    padding:52px 0 34px;
  }
  .opxLegalArticle{
    padding:18px;
    border-radius:24px;
  }
}
