/* ------------------------------
   NEXO IGUAZÚ • Estética Morpho
-------------------------------- */
:root{
  --bg: #061428;
  --bg2:#081a35;
  --text:#eaf2ff;
  --muted:#b8c7e6;
  --accent:#2fd0ff;
  --accent2:#2b7bff;
  --gold:#d7b46a;
  --line: rgba(255,255,255,0.10);
  --shadow: 0 14px 30px rgba(0,0,0,0.35);
  --radius: 16px;
}
*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
  line-height:1.45;
  color:var(--text);
  background:
    radial-gradient(1200px 600px at 20% -10%, rgba(47,208,255,0.18), transparent 55%),
    radial-gradient(1200px 700px at 80% 0%, rgba(43,123,255,0.18), transparent 55%),
    linear-gradient(180deg, var(--bg), var(--bg2));
}
.pricing-widget { padding: 32px 16px; max-width: 980px; margin: 0 auto; }
.price-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.card { border: 1px solid rgba(0,0,0,.12); border-radius: 14px; padding: 16px; background: #fff; }
.label { font-size: 14px; opacity: .7; margin-bottom: 8px; }
.value { font-size: 32px; font-weight: 700; line-height: 1.1; }
.subvalue { margin-top: 6px; font-size: 14px; opacity: .8; }
.hint { margin-top: 10px; font-size: 13px; opacity: .75; }
.actions { display: flex; gap: 10px; margin-top: 10px; }
.actions button { width: 44px; height: 38px; border-radius: 10px; border: 1px solid rgba(0,0,0,.15); background: #f7f7f7; cursor: pointer; font-size: 18px; }
.rules { margin-top: 14px; font-size: 14px; opacity: .9; }

/* Topbar */
.topbar{
  position:sticky; top:0; z-index:50;
  display:flex; align-items:center; justify-content:space-between;
  gap:14px;
  padding:12px 14px;
  background: rgba(6,20,40,0.72);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.brand{
  display:flex; align-items:center; gap:10px;
  text-decoration:none; color:var(--text);
  min-width: 220px;
}
.brand__logo{
  width:44px; height:44px; border-radius:12px;
  object-fit:cover;
  box-shadow: 0 8px 18px rgba(0,0,0,0.35);
}
.brand__text{ display:flex; flex-direction:column; gap:1px; }
.brand__text small{ color:var(--muted); font-weight:600; letter-spacing:0.2px; }

.nav{ display:flex; flex-wrap:wrap; gap:6px; justify-content:flex-end; }
.nav a{
  color:var(--text); text-decoration:none;
  padding:8px 10px; border-radius:10px;
  border:1px solid transparent;
  font-weight:600;
}
.nav a:hover{ border-color: rgba(47,208,255,0.25); background: rgba(47,208,255,0.06); }
.nav a.active{ background: rgba(47,208,255,0.10); border-color: rgba(47,208,255,0.22); }
.nav__cta{ background: rgba(215,180,106,0.12) !important; border-color: rgba(215,180,106,0.22) !important; }

/* Layout */
.container{ max-width: 1120px; margin: 0 auto; padding: 28px 16px; }
.container.narrow{ max-width: 860px; }

/* Hero */
.hero{
  position:relative;
  display:grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items:stretch;
  margin-top: 8px;
}
.hero::before{
  content:"";
  position:absolute; inset:-30px -10px auto auto;
  width: 520px; height: 360px;
  background: url("assets/morpho-watermark.svg") no-repeat center / contain;
  opacity: 0.18;
  pointer-events:none;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.45));
}
.hero__copy, .hero__card{
  background: rgba(11,36,68,0.55);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
  overflow:hidden;
}
.pill{
  display:inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(47,208,255,0.22);
  background: rgba(47,208,255,0.06);
  color: var(--muted);
  font-weight:700;
  margin:0 0 10px;
}
.hero h1{ margin: 6px 0 10px; font-size: clamp(1.6rem, 3vw, 2.35rem); line-height:1.15; }
.lead{ color: var(--muted); margin: 0 0 14px; font-size: 1.03rem; }

.hero__cta{ display:flex; flex-wrap:wrap; gap:10px; margin: 10px 0 14px; }
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:8px;
  padding: 11px 14px;
  border-radius: 12px;
  text-decoration:none;
  color: #00111f;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  font-weight:800;
  border: 1px solid rgba(255,255,255,0.08);
}
.btn--ghost{
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(47,208,255,0.28);
}
.btn--ghost:hover{ background: rgba(47,208,255,0.07); }
.btn--sm{ padding: 9px 12px; border-radius: 12px; }

.btn-link{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 9px 12px;
  border-radius: 12px;
  text-decoration:none;
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
}
.btn-link:hover{ border-color: rgba(47,208,255,0.22); }

.hero__meta{
  display:grid; gap:8px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}
.meta{ display:flex; gap:10px; flex-wrap:wrap; }
.meta__k{ color: var(--muted); font-weight:800; }
.meta__v{ color: var(--text); font-weight:700; }
.link{ color: var(--accent); text-decoration:none; font-weight:800; }
.link:hover{ text-decoration:underline; }

.hero__card h2{ margin: 0 0 6px; letter-spacing:0.4px; }
.tagline{ margin: 0 0 12px; color: rgba(215,180,106,0.95); font-weight:800; }
.hint{ margin: 12px 0 0; color: var(--muted); }

.check{ list-style:none; padding:0; margin: 0; display:grid; gap:8px; }
.check li{ color: var(--text); font-weight:700; }
.check li::before{ content:"✓"; margin-right: 8px; color: var(--accent); font-weight:900; }

/* Sections */
.section{ margin-top: 26px; }
.section h2{ margin: 0 0 10px; font-size: 1.55rem; }
.sub{ color: var(--muted); margin: 0 0 16px; }

.grid2{ display:grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.grid3{ display:grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; }

.panel{
  background: rgba(11,36,68,0.50);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px;
}
.panel h3{ margin: 0 0 6px; }
.panel p{ margin: 0; color: var(--muted); }

.panel--accent{
  margin-top: 14px;
  border-color: rgba(215,180,106,0.22);
  background: rgba(215,180,106,0.06);
}
.note{
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(215,180,106,0.22);
  background: rgba(215,180,106,0.08);
  color: var(--muted);
}
.badges{ list-style:none; padding:0; margin: 10px 0 0; display:flex; flex-wrap:wrap; gap:8px; }
.badges li{
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(47,208,255,0.18);
  background: rgba(47,208,255,0.05);
  color: var(--text);
  font-weight:800;
  font-size: 0.95rem;
}
.icons{ list-style:none; padding-left: 18px; margin: 8px 0 0; color: var(--text); font-weight:800; display:grid; gap:6px; }

/* Cards */
.cards{ display:grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 14px; }
.card{
  background: rgba(11,36,68,0.50);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px;
  display:flex; flex-direction:column; gap: 10px;
}
.card h3{ margin: 0; }
.card p{ margin: 0; color: var(--muted); }
.mini{ margin: 0; padding-left: 18px; color: var(--text); font-weight:700; }
.actions{ display:flex; gap: 8px; flex-wrap:wrap; margin-top:auto; }

.bullets{ margin: 8px 0 0; padding-left: 18px; color: var(--text); font-weight:700; }
.ol{ color: var(--text); font-weight:700; }
.ol li{ margin: 6px 0; }
.embed{
  margin: 16px 0;
  border-radius: var(--radius);
  border: 1px dashed rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.05);
  padding: 16px;
  min-height: 120px;
  display:grid;
  place-items:center;
  text-align:center;
}
code{ background: rgba(255,255,255,0.08); padding: 2px 6px; border-radius: 8px; }

.steps{ list-style:none; padding:0; margin: 10px 0 0; display:grid; gap:10px; }
.steps li{ display:flex; gap:10px; align-items:flex-start; color: var(--text); font-weight:800; }
.steps span{
  width: 28px; height: 28px; border-radius: 10px;
  display:inline-flex; align-items:center; justify-content:center;
  background: rgba(47,208,255,0.10);
  border: 1px solid rgba(47,208,255,0.24);
  color: var(--accent);
  flex: 0 0 auto;
}

.panel--morpho{
  display:grid; grid-template-columns: 1.2fr 0.8fr;
  align-items:center; gap: 12px;
  margin-top: 14px;
}
.morpho{ width: 100%; max-width: 320px; justify-self:end; opacity: 0.95; filter: drop-shadow(0 16px 26px rgba(0,0,0,0.35)); }

.contact__grid{ display:grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 14px; }
.mono{ font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; color: var(--muted); }

.footer{
  margin-top: 30px;
  padding: 22px 16px;
  border-top: 1px solid var(--line);
  background: rgba(6,20,40,0.55);
}
.footer__inner{
  max-width:1120px; margin:0 auto;
  display:flex; gap: 16px; align-items:flex-start; justify-content:space-between;
  flex-wrap:wrap;
}
.small{ color: var(--muted); font-weight:700; font-size: 0.95rem; }

.wa{
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 80;
  display:flex; align-items:center; gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  text-decoration:none;
  color: var(--text);
  border: 1px solid rgba(47,208,255,0.24);
  background: rgba(11,36,68,0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}
.wa__dot{
  width: 12px; height: 12px; border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: 0 0 0 6px rgba(47,208,255,0.10);
}
.wa__txt{ font-weight:900; letter-spacing:0.2px; }
.price-system { padding: 32px 16px; max-width: 980px; margin: 0 auto; }
.ps-sub { margin-top: 8px; opacity: .8; }

.ps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; margin-top: 16px; }
.ps-card { border: 1px solid rgba(0,0,0,.12); border-radius: 14px; padding: 16px; background: #fff; }

.ps-label { display: block; font-size: 14px; opacity: .75; margin-bottom: 8px; }
.ps-select { width: 100%; height: 44px; border-radius: 12px; border: 1px solid rgba(0,0,0,.15); padding: 0 12px; font-size: 16px; background: #fafafa; }

.ps-note { margin-top: 12px; font-size: 14px; opacity: .85; }

.ps-results .ps-row { display: flex; justify-content: space-between; gap: 10px; padding: 10px 0; }
.ps-k { opacity: .75; }
.ps-v { font-weight: 700; font-size: 18px; }

.ps-divider { height: 1px; background: rgba(0,0,0,.10); margin: 12px 0; }
.ps-small { font-size: 13px; opacity: .85; }

.ps-table { margin-top: 10px; display: grid; gap: 6px; }
.ps-table-row { display: flex; justify-content: space-between; padding: 8px 10px; border-radius: 10px; background: rgba(0,0,0,.04); }
.ps-table-row.active { outline: 2px solid rgba(0,0,0,.18); background: rgba(0,0,0,.06); }


@media (max-width: 960px){
  .hero{ grid-template-columns: 1fr; }
  .hero::before{ inset: -18px -10px auto auto; width: 420px; height: 300px; opacity: 0.14; }
  .grid2{ grid-template-columns: 1fr; }
  .grid3{ grid-template-columns: 1fr; }
  .panel--morpho{ grid-template-columns: 1fr; }
  .morpho{ justify-self:start; max-width: 260px; }
  .nav{ gap: 4px; }
  .nav a{ padding: 8px 9px; }
}
