/* Abenteuer.mx - main.css (claro corporativo) */
:root{
  /* Dark - elegante empresarial */
  --bg:#070A0F;
  --surface:#0D1220;
  --surface2:#111A2E;
  --text:#E8EDF7;
  --muted:#A7B0C2;
  --brand:#6D5EF8;
  --brand2:#2BB8FF;
  --ok:#22C55E;
  --warn:#F59E0B;
  --shadow: 0 22px 60px rgba(0,0,0,.55);
  --shadow2: 0 14px 34px rgba(0,0,0,.40);
  --radius:18px;
  --radius2:26px;
  --max:1120px;
  --ring: 0 0 0 4px rgba(109,94,248,.25);
  --border: rgba(255,255,255,.10);
}

*{box-sizing:border-box}

html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background: radial-gradient(1200px 600px at 20% -10%, rgba(109,94,248,.18), transparent 55%),
              radial-gradient(1200px 600px at 80% -10%, rgba(43,184,255,.16), transparent 55%),
              var(--bg);
  line-height:1.55;
}

a{color:inherit; text-decoration:none}
img{max-width:100%; height:auto}

.wrapper{width:min(var(--max), calc(100% - 40px)); margin:0 auto}
.section{padding:64px 0}
.section.sm{padding:36px 0}

.badge{
  display:inline-flex; align-items:center; gap:10px;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(11,87,208,.08);
  color:var(--brand);
  font-weight:700;
  letter-spacing:.2px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid transparent;
  font-weight:800;
  cursor:pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  user-select:none;
}
.btn:focus{outline:none; box-shadow: var(--ring)}
.btn:active{transform: translateY(1px)}
.btn-primary{
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  color:white;
  box-shadow: 0 16px 44px rgba(109,94,248,.30);
}
.btn-primary:hover{transform: translateY(-1px); box-shadow: 0 20px 55px rgba(109,94,248,.34)}
.btn-outline{
  background:rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.14);
  color:var(--text);
}
.btn-outline:hover{background:rgba(255,255,255,.10); box-shadow: var(--shadow2); transform: translateY(-1px)}
.btn-soft{
  background: rgba(109,94,248,.12);
  color: var(--brand);
  border-color: rgba(109,94,248,.22);
}
.btn-soft:hover{background: rgba(109,94,248,.16); transform: translateY(-1px)}

.header{
  position:sticky; top:0; z-index:50;
  background: rgba(7,10,15,.72);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.brand{
  display:flex; align-items:center; gap:12px;
}
.brand img{width:44px; height:44px; border-radius:12px}
.brand .name{font-weight:900; letter-spacing:.2px}
.brand .sub{font-size:12px; color:var(--muted); font-weight:700}

.nav{display:flex; align-items:center; gap:18px}
.nav a{
  padding:10px 10px; border-radius:12px;
  color:var(--muted);
  font-weight:800;
}
.nav a:hover{background: rgba(109,94,248,.12); color:var(--brand)}
.nav .cta{margin-left:6px}

.menu-btn{
  display:none;
  border:1px solid var(--border);
  background:rgba(255,255,255,.06);
  border-radius:14px;
  padding:10px 12px;
  font-weight:900;
}

.hero{
  padding:54px 0 10px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:26px;
  align-items:stretch;
}
.hero-card{
  border-radius: var(--radius2);
  background: linear-gradient(180deg, rgba(246,248,255,.9), rgba(255,255,255,.95));
  border: 1px solid rgba(16,24,40,.10);
  box-shadow: var(--shadow);
  overflow:hidden;
  position:relative;
}
.hero-card .media{
  position:absolute; inset:0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.92), rgba(255,255,255,.65)),
    url("/assets/img/hero/hero.jpg");
  background-size: cover;
  background-position: center;
  filter:saturate(1.05);
}
.hero-card .content{
  position:relative;
  padding:34px 28px;
}
.h1{
  font-size: clamp(34px, 4.2vw, 52px);
  line-height:1.05;
  margin:14px 0 12px;
  letter-spacing:-.6px;
}
.h1 .grad{
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.lead{color:var(--muted); font-size:17px; margin:0 0 18px}
.hero-actions{display:flex; flex-wrap:wrap; gap:10px; margin-top:14px}
.hero-points{display:flex; flex-wrap:wrap; gap:10px; margin-top:16px}
.pill{
  display:inline-flex; gap:10px; align-items:center;
  border:1px solid var(--border);
  background: rgba(255,255,255,.06);
  padding:10px 12px;
  border-radius:999px;
  font-weight:800;
  color:var(--text);
}

.card{
  background: rgba(13,18,32,.88);
  border:1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow2);
}
.card.pad{padding:18px}
.kpi{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:12px;
  height:100%;
}
.kpi .item{
  background: var(--surface);
  border:1px solid var(--border);
  border-radius: 16px;
  padding:14px;
}
.kpi .item b{display:block; font-size:18px}
.kpi .item span{color:var(--muted); font-weight:700}

.grid-3{display:grid; grid-template-columns: repeat(3, 1fr); gap:16px}
.grid-2{display:grid; grid-template-columns: repeat(2, 1fr); gap:16px}
@media (max-width: 980px){
  .hero-grid{grid-template-columns: 1fr}
  .grid-3{grid-template-columns: 1fr}
  .grid-2{grid-template-columns: 1fr}
  .nav{display:none}
  .menu-btn{display:inline-flex}
  .nav.open{
    display:flex;
    position:absolute;
    left:0; right:0; top:72px;
    flex-direction:column;
    background: rgba(7,10,15,.92);
    border-bottom:1px solid var(--border);
    padding:12px 20px 18px;
  }
}

.icon-row{display:flex; gap:10px; flex-wrap:wrap}
.social{
  display:inline-flex; align-items:center; gap:10px;
  padding:10px 12px;
  border-radius:14px;
  font-weight:900;
  border:1px solid var(--border);
  background: rgba(255,255,255,.06);
  transition: transform .15s ease, box-shadow .2s ease;
}
.social:hover{transform: translateY(-1px); box-shadow: var(--shadow2)}
.social .dot{
  width:12px; height:12px; border-radius:50%;
  background: var(--muted);
}
.social.fb .dot{background:#1877F2}
.social.ig .dot{background:#E1306C}
.social.x .dot{background:#ffffff}
.social.tg .dot{background:#229ED9}
.social.wa .dot{background:#25D366}

.feature{
  padding:18px;
  border-radius: var(--radius);
  border:1px solid var(--border);
  background: rgba(255,255,255,.06);
  transition: transform .15s ease, box-shadow .2s ease;
}
.feature:hover{transform: translateY(-2px); box-shadow: var(--shadow)}
.feature h3{margin:0 0 6px; letter-spacing:-.2px}
.feature p{margin:0; color:var(--muted); font-weight:650}

.list{
  margin:0; padding-left:18px;
  color:var(--muted);
  font-weight:650;
}
hr.sep{border:none; border-top:1px solid rgba(255,255,255,.10); margin:18px 0}

.footer{
  border-top:1px solid var(--border);
  background: linear-gradient(180deg, rgba(13,18,32,.55), rgba(7,10,15,.92));
}
.footer-top{padding:34px 0}
.footer-bottom{
  padding:16px 0;
  color:var(--muted);
  font-weight:700;
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}
.footer a{color:var(--muted)}
.footer a:hover{color:var(--brand)}
.small{font-size:13px; color:var(--muted); font-weight:650}

.fab{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:60;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.fab a{
  display:flex; align-items:center; gap:10px;
  padding:12px 14px;
  border-radius:16px;
  background:#25D366;
  color:#052e16;
  font-weight:950;
  box-shadow: 0 14px 30px rgba(37,211,102,.28);
  border:1px solid rgba(0,0,0,.08);
}
.fab a:hover{transform: translateY(-1px)}
.fab .hint{
  background: rgba(255,255,255,.06);
  color:var(--text);
  border:1px solid var(--border);
  box-shadow: var(--shadow2);
  font-weight:900;
}

.reveal{opacity:0; transform: translateY(14px); transition: opacity .6s ease, transform .6s ease}
.reveal.on{opacity:1; transform:none}

.modal{
  position:fixed; inset:0; z-index:80;
  display:none; align-items:center; justify-content:center;
  background: rgba(0,0,0,.62);
  padding:16px;
}
.modal.open{display:flex}
.modal .box{
  width:min(740px, 100%);
  border-radius: 22px;
  background: rgba(255,255,255,.06);
  border:1px solid var(--border);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.modal .box .top{
  display:flex; align-items:center; justify-content:space-between;
  padding:16px 18px;
  background: var(--surface);
  border-bottom:1px solid var(--border);
}
.modal .box .top b{font-size:16px}
.modal .box .top button{
  border:none; background:rgba(255,255,255,.06); border-radius:12px;
  padding:10px 12px; font-weight:900; cursor:pointer;
  border:1px solid var(--border);
}
.modal .content{padding:16px 18px}
.field{display:grid; gap:6px; margin-bottom:12px}
.field label{font-weight:900}
.field input, .field select, .field textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.06);
  font-weight:700;
  color: var(--text);
}
.field textarea{min-height:92px; resize:vertical}
.form-actions{display:flex; gap:10px; flex-wrap:wrap; margin-top:6px}

.notice{
  border-left:4px solid var(--brand);
  background: rgba(109,94,248,.12);
  padding:12px 14px;
  border-radius: 14px;
  color: var(--text);
  font-weight:750;
}



/* ============================
   Social buttons + Brand icons
   ============================ */
.social{
  padding:10px 14px;
  border-radius:16px;
  gap:10px;
}
.social .ico{
  width:18px; height:18px;
  display:inline-flex;
}
.social .ico img{width:18px; height:18px; display:block}
.social.fb{border-color:rgba(24,119,242,.28); background:rgba(24,119,242,.06); color:#0b2a6a}
.social.fb .ico{color:#1877F2}
.social.ig{border-color:rgba(225,48,108,.28); background:rgba(225,48,108,.06); color:#0b2a6a}
.social.ig .ico{color:#E1306C}
.social.x{border-color:rgba(17,24,39,.22); background:rgba(17,24,39,.05); color:#111827}
.social.x .ico{color:#111827}
.social.tg{border-color:rgba(34,158,217,.28); background:rgba(34,158,217,.06); color:#0b2a6a}
.social.tg .ico{color:#229ED9}
.social.wa{border-color:rgba(37,211,102,.28); background:rgba(37,211,102,.08); color:#052e16}
.social.wa .ico{color:#25D366}

/* ============================
   Pro nav underline animation
   ============================ */
.nav a{position:relative; overflow:hidden}
.nav a::after{
  content:"";
  position:absolute;
  left:12px; right:12px; bottom:6px;
  height:2px;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  transform: scaleX(0);
  transform-origin:left;
  transition: transform .22s ease;
  border-radius:999px;
}
.nav a:hover::after{transform: scaleX(1)}
.nav a[aria-current="page"]{
  color:var(--brand);
  background: rgba(109,94,248,.12);
}
.nav a[aria-current="page"]::after{transform: scaleX(1)}

/* ============================
   Buttons micro-interactions
   ============================ */
.btn{position:relative}
.btn .ico{width:18px; height:18px; display:inline-flex}
.btn .ico img{width:18px; height:18px; display:block}
.btn .shine{
  position:absolute; inset:-2px;
  border-radius: inherit;
  background: radial-gradient(120px 60px at 10% 10%, rgba(255,255,255,.35), transparent 60%);
  opacity:0;
  transition: opacity .25s ease;
  pointer-events:none;
}
.btn:hover .shine{opacity:1}

/* ============================
   Hero banner (image + info on top)
   ============================ */
.hero{padding:28px 0 12px}
.hero-banner{
  border-radius: var(--radius2);
  border:1px solid var(--border);
  box-shadow: var(--shadow);
  overflow:hidden;
  position:relative;
  min-height: 420px;
  background:
    linear-gradient(120deg, rgba(255,255,255,.92), rgba(255,255,255,.65)),
    url("/assets/img/hero/hero.jpg");
  background-size: cover;
  background-position:center;
}
.hero-banner::before{
  content:"";
  position:absolute; inset:0;
  background: radial-gradient(800px 420px at 18% 25%, rgba(11,87,208,.18), transparent 60%),
              radial-gradient(800px 420px at 78% 20%, rgba(0,163,255,.14), transparent 62%);
  pointer-events:none;
}
.hero-banner .inner{
  position:relative;
  padding:36px 28px;
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:18px;
  align-items:stretch;
}
@media (max-width: 980px){
  .hero-banner .inner{grid-template-columns:1fr; padding:28px 18px}
  .hero-banner{min-height: unset}
}

/* ============================
   Reviews + stars
   ============================ */
.stars{display:inline-flex; gap:4px; color:#F79009; align-items:center}
.stars img{width:16px; height:16px}
.review{padding:18px}
.review p{margin:10px 0 0; color:var(--muted); font-weight:650}
.review .who{margin-top:12px; color:var(--muted); font-weight:800; font-size:13px}

/* ============================
   Footer polish
   ============================ */
.footer-top .card{height:100%}
.footer-cta{display:flex; gap:10px; flex-wrap:wrap; margin-top:12px}

/* ============================
   Better mobile tap targets
   ============================ */
@media (max-width: 520px){
  .btn{width:100%}
  .social{width:100%; justify-content:center}
}


.devby{display:inline-flex; align-items:center; gap:10px; font-weight:800; color:var(--muted);}
.devby:hover{color:var(--text);}
.devby img{opacity:.9; filter: drop-shadow(0 6px 14px rgba(0,0,0,.35));}





/* Abenteuer Visa - Dark Corporate Theme (2026)
   - Relative asset paths (no leading /)
   - Responsive + accessible
*/

:root{
  --bg:#0b0f16;
  --bg2:#0e1420;
  --panel:#101a2a;
  --panel2:#0c1422;
  --text:#eaf0ff;
  --muted:#a9b4cf;
  --muted2:#7f8aad;
  --line: rgba(255,255,255,0.10);

  --brand:#6aa8ff;
  --brand2:#7cf0c4;
  --danger:#ff6a6a;
  --warn:#ffd38a;

  --shadow: 0 18px 48px rgba(0,0,0,0.55);
  --radius: 18px;
  --radius2: 24px;
  --max: 1180px;

  --ease: cubic-bezier(.2,.8,.2,1);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background:
    radial-gradient(1200px 700px at 15% -10%, rgba(106,168,255,0.18), transparent 55%),
    radial-gradient(1000px 650px at 95% 10%, rgba(124,240,196,0.12), transparent 55%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  color: var(--text);
  line-height: 1.55;
}

img{max-width:100%; height:auto; display:block}

a{color:inherit; text-decoration:none}
a:focus-visible, button:focus-visible{outline:3px solid rgba(106,168,255,0.55); outline-offset:3px; border-radius:12px}

.wrapper{max-width:var(--max); margin:0 auto; padding:0 20px}

/* Top bar */
.topbar{
  position:sticky;
  top:0;
  z-index:50;
  background: rgba(11,15,22,0.72);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}

.header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:16px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width: 220px;
}
.brand-mark{
  width:38px;
  height:38px;
  border-radius:12px;
  background: linear-gradient(135deg, rgba(106,168,255,0.22), rgba(124,240,196,0.18));
  border:1px solid var(--line);
  box-shadow: 0 10px 24px rgba(0,0,0,0.35);
  display:grid;
  place-items:center;
}
.brand-mark svg{width:22px; height:22px}
.brand-title{font-weight:800; letter-spacing:.2px; line-height:1.05}
.brand-sub{font-size:12px; color:var(--muted); margin-top:2px}

.nav{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.nav a{
  font-size:14px;
  color: var(--muted);
  padding:10px 10px;
  border-radius:12px;
  border:1px solid transparent;
  transition: transform .18s var(--ease), background .18s var(--ease), color .18s var(--ease), border-color .18s var(--ease);
}

.nav a:hover{
  color: var(--text);
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.08);
  transform: translateY(-1px);
}

.nav a.active{
  color: var(--text);
  background: rgba(106,168,255,0.10);
  border-color: rgba(106,168,255,0.22);
}

.menu-btn{
  display:none;
  border:1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  border-radius:14px;
  padding:10px 12px;
  cursor:pointer;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border-radius: 14px;
  padding: 12px 16px;
  border:1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  cursor:pointer;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease), border-color .18s var(--ease);
  position:relative;
  overflow:hidden;
}

.btn:hover{transform: translateY(-1px); box-shadow: 0 14px 28px rgba(0,0,0,0.35); border-color: rgba(255,255,255,0.16)}

.btn-primary{
  border-color: rgba(106,168,255,0.25);
  background: linear-gradient(135deg, rgba(106,168,255,0.22), rgba(106,168,255,0.10));
}

.btn-outline{background: transparent}

.btn-ghost{border-color: transparent; background: transparent; color: var(--muted)}
.btn-ghost:hover{background: rgba(255,255,255,0.05); color: var(--text)}

.shine{
  position:absolute;
  inset:-2px;
  background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,0.22) 45%, transparent 60%);
  transform: translateX(-120%);
  filter: blur(1px);
  pointer-events:none;
}
.btn:hover .shine{animation: shine 1.0s var(--ease) 1}
@keyframes shine{to{transform: translateX(120%)}}

.cta{white-space:nowrap}

/* Mobile nav overlay */
.nav-drawer{
  display:none;
}

@media (max-width: 980px){
  .menu-btn{display:inline-flex}
  .nav{display:none}
  .nav-drawer{
    display:block;
    position:fixed;
    inset:0;
    z-index:60;
    background: rgba(0,0,0,0.55);
    opacity:0;
    pointer-events:none;
    transition: opacity .2s var(--ease);
  }
  .nav-drawer.open{opacity:1; pointer-events:auto}
  .drawer-panel{
    position:absolute;
    right:0;
    top:0;
    height:100%;
    width:min(420px, 92vw);
    background: linear-gradient(180deg, rgba(16,26,42,0.98), rgba(11,15,22,0.98));
    border-left:1px solid var(--line);
    box-shadow: -24px 0 60px rgba(0,0,0,0.55);
    padding:18px;
    transform: translateX(12px);
  }
  .drawer-head{display:flex; align-items:center; justify-content:space-between; gap:12px; padding-bottom:12px; border-bottom:1px solid var(--line)}
  .drawer-links{padding:14px 0; display:flex; flex-direction:column; gap:6px}
  .drawer-links a{
    padding:12px 12px;
    border-radius:14px;
    border:1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03);
    color: var(--text);
  }
  .drawer-links a.muted{color: var(--muted)}
  .drawer-links a:hover{background: rgba(106,168,255,0.10); border-color: rgba(106,168,255,0.22)}
}

/* Sections */
.section{padding: 56px 0}
.section.tight{padding: 34px 0}
.section-title{font-size: 30px; margin:0 0 10px; letter-spacing:.2px}
.section-kicker{color: var(--muted); margin:0 0 22px}

.hero{
  padding: 54px 0 18px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items: stretch;
}

.hero-card{
  background: linear-gradient(180deg, rgba(16,26,42,0.85), rgba(12,20,34,0.78));
  border:1px solid var(--line);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  overflow:hidden;
  position:relative;
}

.hero-card .inner{padding: 28px}

.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: var(--muted);
  font-size: 12px;
}
.badge-dot{width:8px; height:8px; border-radius:999px; background: var(--brand2); box-shadow: 0 0 0 4px rgba(124,240,196,0.12)}

.h1{font-size: 44px; line-height:1.08; margin:14px 0 10px}
.h1 .grad{background: linear-gradient(120deg, var(--brand), var(--brand2)); -webkit-background-clip:text; background-clip:text; color:transparent}

.lead{color: var(--muted); font-size: 16px; margin: 0 0 18px}

.hero-actions{display:flex; flex-wrap:wrap; gap:12px; margin-top: 18px}
.hero-meta{display:flex; flex-wrap:wrap; gap:10px; margin-top: 18px; color: var(--muted2); font-size: 13px}
.hero-meta span{display:inline-flex; align-items:center; gap:8px; padding:8px 10px; border-radius: 999px; border:1px solid rgba(255,255,255,0.10); background: rgba(255,255,255,0.03)}

.hero-media{
  border-radius: var(--radius2);
  border:1px solid var(--line);
  background: linear-gradient(180deg, rgba(16,26,42,0.65), rgba(12,20,34,0.60));
  box-shadow: var(--shadow);
  overflow:hidden;
  position:relative;
}

.hero-media::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(600px 360px at 20% 20%, rgba(106,168,255,0.16), transparent 60%),
    radial-gradient(520px 340px at 80% 30%, rgba(124,240,196,0.12), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,0.10), rgba(0,0,0,0.35));
  pointer-events:none;
}

.hero-media .media-inner{position:relative; padding: 24px}

.kpi-grid{display:grid; grid-template-columns: repeat(2, 1fr); gap: 12px}
.kpi{
  border:1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  border-radius: 18px;
  padding: 14px;
}
.kpi b{display:block; font-size: 18px}
.kpi small{color: var(--muted); display:block; margin-top: 4px}

.card{
  border:1px solid var(--line);
  background: linear-gradient(180deg, rgba(16,26,42,0.70), rgba(12,20,34,0.65));
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

.grid-3{display:grid; grid-template-columns: repeat(3, 1fr); gap: 16px}
.grid-2{display:grid; grid-template-columns: repeat(2, 1fr); gap: 16px}

@media (max-width: 980px){
  .hero-grid{grid-template-columns: 1fr}
  .h1{font-size: 38px}
}

@media (max-width: 640px){
  .h1{font-size: 34px}
  .grid-3{grid-template-columns: 1fr}
  .grid-2{grid-template-columns: 1fr}
}

.card-pad{padding: 18px}
.card h3{margin: 0 0 8px; font-size: 18px}
.card p{margin: 0; color: var(--muted)}

.icon-pill{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  display:grid;
  place-items:center;
  margin-bottom: 12px;
}
.icon-pill img{width: 20px; height: 20px}

.steps{counter-reset: step}
.step{display:flex; gap:14px; align-items:flex-start}
.step-num{
  width: 36px;
  height: 36px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  background: rgba(106,168,255,0.12);
  border:1px solid rgba(106,168,255,0.24);
  color: var(--text);
  font-weight: 800;
}

.hr{height:1px; background: var(--line); margin: 18px 0}

/* Social buttons */
.socials{display:flex; flex-wrap:wrap; gap:10px}
.social{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  color: var(--text);
  transition: transform .18s var(--ease), background .18s var(--ease), border-color .18s var(--ease);
}
.social:hover{transform: translateY(-1px); border-color: rgba(255,255,255,0.18); background: rgba(255,255,255,0.05)}
.social img{width:18px; height:18px}
.social .label{color: var(--muted); font-size: 13px}

/* Footer */
.footer{
  border-top: 1px solid var(--line);
  padding: 28px 0;
  background: rgba(0,0,0,0.18);
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
}
.footer small{color: var(--muted)}

.devby{
  display:flex;
  align-items:center;
  gap:10px;
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
}
.devby img{width:18px; height:18px}
.devby a{color: var(--text)}
.devby a:hover{text-decoration: underline}

@media (max-width: 860px){
  .footer-grid{grid-template-columns:1fr}
}

/* Reveal animations */
.reveal{opacity:0; transform: translateY(10px); transition: opacity .55s var(--ease), transform .55s var(--ease)}
.reveal.show{opacity:1; transform:none}

/* Forms */
.input{
  width:100%;
  background: rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  padding: 12px 12px;
  color: var(--text);
}
label{display:block; font-size: 13px; color: var(--muted); margin: 10px 0 6px}

.notice{
  border:1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius);
  padding: 14px;
  color: var(--muted);
}
.notice b{color: var(--text)}

/* Table-ish list */
.list{display:flex; flex-direction:column; gap: 10px}
.list-item{
  display:flex;
  gap: 12px;
  align-items:flex-start;
  padding: 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
}
.list-item strong{display:block}
.list-item span{color: var(--muted)}

/* Skip link */
.skip{
  position:absolute;
  left:-999px;
  top: 8px;
  background: rgba(106,168,255,0.18);
  border:1px solid rgba(106,168,255,0.28);
  padding: 10px 12px;
  border-radius: 14px;
  color: var(--text);
  z-index: 80;
}
.skip:focus{left: 12px}


/* --- Mobile nav: implemented with .nav.open + .backdrop.open (matches HTML/JS) --- */
.backdrop{
  display:none;
}

@media (max-width: 980px){
  .backdrop{
    display:block;
    position:fixed;
    inset:0;
    z-index:55;
    background: rgba(0,0,0,0.55);
    opacity:0;
    pointer-events:none;
    transition: opacity .18s var(--ease);
  }
  .backdrop.open{opacity:1; pointer-events:auto}

  .nav{
    display:flex;
    position:fixed;
    top:0;
    right:0;
    height:100%;
    width:min(420px, 92vw);
    z-index:60;
    flex-direction:column;
    gap:8px;
    padding:18px;
    background: linear-gradient(180deg, rgba(16,26,42,0.98), rgba(11,15,22,0.98));
    border-left:1px solid var(--line);
    box-shadow: -24px 0 60px rgba(0,0,0,0.55);
    transform: translateX(110%);
    opacity:0.98;
    transition: transform .22s var(--ease);
  }
  .nav.open{transform: translateX(0)}

  .nav a{
    padding:12px 12px;
    border-radius:14px;
    border:1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03);
  }
  .nav a:hover{background: rgba(106,168,255,0.10); border-color: rgba(106,168,255,0.22)}
  .nav a.cta{margin-top:8px}
}

body.nav-open{overflow:hidden}

/* =========================================================
   PROUESTA SITIO - style.css
   - Diseño moderno, ligero y profesional
   - Animaciones suaves (sin exagerar)
   - Responsive + accesible
   ========================================================= */

:root{
  --bg:#07111e;
  --panel:rgba(255,255,255,.06);
  --card:rgba(255,255,255,.075);
  --text:#f5f7ff;
  --muted:rgba(245,247,255,.72);
  --line:rgba(255,255,255,.12);
  --shadow:0 16px 60px rgba(0,0,0,.42);
  --shadow-soft:0 10px 28px rgba(0,0,0,.30);
  --radius:22px;
  --radius-sm:16px;
  --max:1120px;
  --pad:18px;

  --accent:#2b6cff;
  --accent2:#00d1b2;
  --g1: rgba(43,108,255,.22);
  --g2: rgba(0,209,178,.16);
  --ok:#2de3a6;
  --warn:#ffcd4a;
  --danger:#ff5b6a;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  color:var(--text);
  background:
    radial-gradient(900px 600px at 20% 10%, var(--g1), transparent 60%),
    radial-gradient(900px 600px at 80% 20%, var(--g2), transparent 55%),
    linear-gradient(180deg, #06101c 0%, #07111e 40%, #050d17 100%);
  overflow-x:hidden;
}

a{ color:inherit; text-decoration:none; }
img{ max-width:100%; height:auto; display:block; }
.container{ width:min(var(--max), calc(100% - 32px)); margin-inline:auto; }

.skip{
  position:absolute; left:-9999px; top:10px;
  padding:10px 14px; border-radius:12px;
  background:var(--text); color:#0b1220;
  z-index:999;
}
.skip:focus{ left:12px; }

header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(14px);
  background: linear-gradient(180deg, rgba(7,17,30,.82) 0%, rgba(7,17,30,.55) 100%);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.navbar{
  display:flex; align-items:center; justify-content:space-between;
  gap:16px; padding:14px 0;
}
.brand{
  display:flex; align-items:center; gap:10px;
}
.brand img{ width:40px; height:40px; border-radius:14px; }
.brand .name{ font-weight:900; letter-spacing:.2px; }
.brand .tag{ display:block; font-size:12px; color:var(--muted); font-weight:700; margin-top:2px; }

.nav{
  display:flex; align-items:center; gap:14px;
}
.nav a{
  padding:10px 12px;
  border-radius:12px;
  color:rgba(245,247,255,.86);
  font-weight:700;
  transition: transform .18s ease, background .18s ease, color .18s ease;
}
.nav a:hover{ background:rgba(255,255,255,.06); transform: translateY(-1px); }
.nav a.active{ background:rgba(43,108,255,.18); color:var(--text); }

.actions{ display:flex; align-items:center; gap:10px; }
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:12px 14px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.06);
  color:var(--text);
  font-weight:900;
  letter-spacing:.2px;
  box-shadow: var(--shadow-soft);
  cursor:pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  user-select:none;
}
.btn:hover{ transform: translateY(-1px); background:rgba(255,255,255,.09); border-color:rgba(255,255,255,.18); }
.btn.primary{
  border-color: rgba(43,108,255,.55);
  background: linear-gradient(135deg, rgba(43,108,255,.95), rgba(0,209,178,.85));
  color:#08101c;
}
.btn.primary:hover{ box-shadow: 0 18px 60px rgba(43,108,255,.25); }
.btn.ghost{
  background:transparent;
  box-shadow:none;
}

.icon-btn{
  width:42px; height:42px;
  border-radius:16px;
  display:inline-grid; place-items:center;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.06);
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.icon-btn:hover{ transform: translateY(-1px); background:rgba(255,255,255,.09); border-color:rgba(255,255,255,.18); }

.burger{ display:none; }

.hero{
  padding:28px 0 18px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:18px;
  align-items:stretch;
}
.hero-card{
  border:1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow);
  position:relative;
}
.map-banner{
  height: 420px;
  background:
    radial-gradient(900px 600px at 70% 15%, rgba(43,108,255,.25), transparent 60%),
    radial-gradient(700px 500px at 30% 70%, rgba(0,209,178,.18), transparent 60%),
    url("../img/slider/slide-1.svg");
  background-size: cover;
  background-position: center;
  filter:saturate(1.05) contrast(1.02);
}
.map-overlay{
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(7,17,30,.82) 0%, rgba(7,17,30,.28) 58%, rgba(7,17,30,0) 100%);
}
.hero-content{
  position:absolute; inset:0;
  display:flex; align-items:flex-end;
  padding: 28px;
}
.kicker{
  display:inline-flex; gap:10px; align-items:center;
  font-weight:900; color:rgba(245,247,255,.88);
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.10);
  border-radius:999px;
  padding:8px 12px;
}
.h1{
  margin:14px 0 10px;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height:1.05;
  letter-spacing:-.6px;
  font-weight:950;
}
.sub{
  margin:0 0 18px;
  color:rgba(245,247,255,.78);
  font-size: 16px;
  max-width: 52ch;
}
.hero-cta{ display:flex; gap:10px; flex-wrap:wrap; align-items:center; }

.side{
  padding:18px;
}
.side .box{
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.05);
  border-radius: var(--radius);
  padding:16px;
  box-shadow: var(--shadow-soft);
}
.side .box + .box{ margin-top:14px; }
.list{
  margin:12px 0 0; padding:0; list-style:none;
}
.list li{
  display:flex; gap:10px; align-items:flex-start;
  padding:10px 0;
  border-top:1px dashed rgba(255,255,255,.14);
  color:rgba(245,247,255,.80);
}
.list li:first-child{ border-top:none; padding-top:0; }
.badge{
  width:28px; height:28px; border-radius:12px;
  background:rgba(43,108,255,.18);
  border:1px solid rgba(43,108,255,.35);
  display:grid; place-items:center;
  flex:0 0 auto;
}

.section{ padding:34px 0; }
.section h2{
  margin:0 0 10px;
  font-size: 22px;
  letter-spacing:-.2px;
}
.section p.lead{ margin:0; color:var(--muted); max-width: 76ch; }

.cards{
  margin-top:16px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.card{
  padding:16px;
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  box-shadow: var(--shadow-soft);
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.card:hover{ transform: translateY(-2px); background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.16); }
.card .title{ font-weight:950; margin:10px 0 6px; }
.card .desc{ color:var(--muted); margin:0; line-height:1.5; }
.card .mini{ margin-top:12px; display:flex; gap:10px; flex-wrap:wrap; }

.carousel{
  margin-top:16px;
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  box-shadow: var(--shadow);
  overflow:hidden;
  position:relative;
}
.carousel-track{
  display:flex;
  transition: transform .55s cubic-bezier(.2,.75,.2,1);
  will-change: transform;
}
.slide{
  min-width:100%;
  position:relative;
}
.slide img{ width:100%; height:420px; object-fit:cover; }
.slide .caption{
  position:absolute; left:18px; bottom:18px;
  padding:14px 14px;
  border-radius: 18px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(7,17,30,.55);
  backdrop-filter: blur(10px);
  max-width:min(560px, calc(100% - 36px));
}
.slide .caption b{ display:block; font-size:18px; }
.slide .caption span{ display:block; color:rgba(245,247,255,.75); margin-top:4px; }
.carousel-controls{
  position:absolute; inset:auto 12px 12px auto;
  display:flex; gap:8px;
}
.dots{
  position:absolute; left:18px; bottom:18px;
  display:flex; gap:8px;
  transform: translateY(78px);
}
.dot{
  width:10px; height:10px; border-radius:999px;
  border:1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.10);
  cursor:pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.dot.active{ background: linear-gradient(135deg, rgba(43,108,255,.95), rgba(0,209,178,.85)); border-color: transparent; transform: scale(1.2); }

.reviews{
  margin-top:16px;
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:14px;
  align-items:stretch;
}
.review-card{
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  box-shadow: var(--shadow-soft);
  padding:16px;
}
.review-top{ display:flex; gap:12px; align-items:center; }
.avatar{ width:54px; height:54px; border-radius:18px; overflow:hidden; border:1px solid rgba(255,255,255,.12); }
.stars{ color: rgba(255,205,74,.95); letter-spacing:2px; font-weight:900; }
.quote{ margin:12px 0 0; color:rgba(245,247,255,.82); line-height:1.6; }
.small{ color:var(--muted); font-size:13px; margin-top:8px; }

.cta-wide{
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background: linear-gradient(135deg, rgba(43,108,255,.18), rgba(0,209,178,.12));
  box-shadow: var(--shadow);
  padding:18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.cta-wide h3{ margin:0; font-size:18px; }
.cta-wide p{ margin:6px 0 0; color:var(--muted); }

footer{
  padding:26px 0 38px;
  border-top:1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.12);
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap:14px;
}
.footer-grid h4{ margin:0 0 8px; font-size:14px; letter-spacing:.2px; }
.footer-grid a{ color:rgba(245,247,255,.80); display:inline-block; padding:6px 0; }
.footer-grid a:hover{ color:var(--text); }
.footer-bottom{
  margin-top:16px;
  display:flex; gap:10px; justify-content:space-between; align-items:center;
  flex-wrap:wrap;
  color:rgba(245,247,255,.58);
  font-size:13px;
}

/* Floating actions */
.fab{
  position:fixed; right:16px; bottom:16px; z-index:60;
  display:flex; flex-direction:column; gap:10px;
}
.fab a, .fab button{
  width:52px; height:52px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.07);
  box-shadow: var(--shadow-soft);
  display:grid; place-items:center;
  cursor:pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.fab a:hover, .fab button:hover{ transform: translateY(-2px); background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.20); }
.fab a[data-brand="whatsapp"]{ background: rgba(37,211,102,.16); border-color: rgba(37,211,102,.35); }
.fab a[data-brand="instagram"]{ background: rgba(255,95,166,.14); border-color: rgba(255,95,166,.30); }
.fab a[data-brand="facebook"]{ background: rgba(24,119,242,.14); border-color: rgba(24,119,242,.30); }

.chat{
  position:fixed; right:16px; bottom:86px; z-index:70;
  width:min(360px, calc(100% - 32px));
  border-radius: 22px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(7,17,30,.78);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
  overflow:hidden;
  transform: translateY(10px);
  opacity:0;
  pointer-events:none;
  transition: opacity .18s ease, transform .18s ease;
}
.chat.open{
  opacity:1; transform: translateY(0);
  pointer-events:auto;
}
.chat-head{
  padding:14px 14px;
  display:flex; align-items:center; justify-content:space-between; gap:10px;
  border-bottom:1px solid rgba(255,255,255,.10);
}
.chat-head b{ font-weight:950; }
.chat-body{ padding:14px; }
.pills{ display:flex; gap:10px; flex-wrap:wrap; margin-top:10px; }
.pill{
  padding:10px 12px;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: rgba(245,247,255,.86);
  font-weight:800;
  cursor:pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.pill:hover{ transform: translateY(-1px); background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.18); }
.note{ color:var(--muted); font-size:13px; line-height:1.5; margin:10px 0 0; }

hr.sep{
  border:none; border-top:1px solid rgba(255,255,255,.10);
  margin: 12px 0;
}

@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .map-banner{ height: 380px; }
  .cards{ grid-template-columns: 1fr; }
  .reviews{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; }
  .nav{ display:none; }
  .burger{ display:inline-grid; place-items:center; }
  .nav.mobile-open{
    display:flex;
    position:absolute; left:16px; right:16px; top:70px;
    flex-direction:column; gap:6px;
    padding:10px;
    border-radius: 18px;
    background: rgba(7,17,30,.92);
    border:1px solid rgba(255,255,255,.10);
    box-shadow: var(--shadow);
  }
}
@media (prefers-reduced-motion: reduce){
  *{ scroll-behavior:auto !important; transition:none !important; animation:none !important; }
}
