:root{
  --bg:#f6f8fc;
  --card:#ffffff;
  --text:#0b1220;
  --muted:#546176;
  --line:#e6ecf5;

  --primary:#1f5eff;
  --primary2:#0b3fd4;
  --cta:#ffb020;
  --wa:#16a34a;
  --danger:#ef4444;

  --shadow: 0 14px 30px rgba(10, 25, 60, .10);
  --shadow2: 0 10px 24px rgba(10, 25, 60, .08);
  --r:18px;
  --r2:26px;

  --container: 1120px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"Cairo", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:linear-gradient(180deg, #f7f9ff 0%, var(--bg) 50%, #ffffff 100%);
}
a{color:inherit; text-decoration:none}
.container{width:min(var(--container), 92%); margin-inline:auto;}

.topbar{
  position:sticky; top:0; z-index:50;
  background:rgba(255,255,255,.82);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.topbar__inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:14px; padding:10px 0;
}
.brand{display:flex; align-items:center; gap:10px}
.brand__logo{
  width:42px; height:42px; border-radius:14px;
  display:grid; place-items:center;
  background:linear-gradient(135deg, rgba(31,94,255,.12), rgba(255,176,32,.18));
  border:1px solid var(--line);
}
.brand__name{font-weight:800; line-height:1.1}
.brand__sub{font-size:.9rem; color:var(--muted)}
.topbar__cta{display:flex; gap:8px; flex-wrap:wrap}

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:.64rem .95rem; border-radius:14px; border:1px solid transparent;
  font-weight:800; transition: transform .12s ease, box-shadow .12s ease;
  white-space:nowrap;
}
.btn:hover{transform: translateY(-1px); box-shadow: var(--shadow2)}
.btn--primary{background:linear-gradient(135deg, var(--primary), var(--primary2)); color:#fff}
.btn--ghost{background:#fff; border-color: var(--line); color:var(--text)}
.btn--whatsapp{background:linear-gradient(135deg, #22c55e, var(--wa)); color:#fff}
.btn--danger{background:linear-gradient(135deg, #ff5a5a, var(--danger)); color:#fff}
.btn--lg{padding:.85rem 1.1rem; border-radius:16px}
.btn--xl{padding:1rem 1.2rem; border-radius:18px}

.hero{padding:44px 0 18px}
.hero__grid{display:grid; grid-template-columns: 1.15fr .85fr; gap:22px; align-items:stretch}

.badge{
  display:inline-flex; align-items:center; gap:8px;
  padding:.45rem .75rem; border:1px solid var(--line);
  border-radius:999px; background:rgba(255,255,255,.78);
  color:var(--muted); font-weight:700; margin:0 0 14px; width:fit-content;
}
h1{margin:0 0 12px; font-size: clamp(1.7rem, 3vw, 2.5rem); line-height:1.15}
.lead{margin:0 0 16px; color:var(--muted); font-size:1.07rem; line-height:1.9}
.hero__actions{display:flex; gap:10px; flex-wrap:wrap; margin:16px 0 14px}

.hero__meta{display:grid; grid-template-columns: repeat(3, 1fr); gap:10px; margin-top:10px}
.metaCard{background:rgba(255,255,255,.88); border:1px solid var(--line); border-radius:16px; padding:12px}
.metaCard__k{font-size:.9rem; color:var(--muted); font-weight:700}
.metaCard__v{font-weight:900}

.visualCard{
  background:rgba(255,255,255,.9);
  border:1px solid var(--line);
  border-radius: var(--r2);
  overflow:hidden;
  box-shadow: var(--shadow);
}
.visualCard__top{
  display:flex; align-items:center; gap:6px;
  padding:12px 14px; border-bottom:1px solid var(--line);
  background:linear-gradient(135deg, rgba(31,94,255,.06), rgba(255,176,32,.10));
}
.dot{width:10px; height:10px; border-radius:999px; background:#e8eefc; border:1px solid var(--line)}
.visualCard__title{margin-inline-start:8px; color:var(--muted); font-weight:900}
.visualCard__body{padding:14px}

.heroGallery{
  display:grid;
  grid-template-columns: 1fr;
  gap:10px;
}
.heroGallery img{
  width:100%;
  height:auto;
  border-radius:18px;
  border:1px solid var(--line);
  box-shadow: var(--shadow2);
  display:block;
}
.inlineLink{color:var(--primary); font-weight:1000; text-decoration:underline; text-underline-offset:4px}
.note{margin-top:10px; color:var(--muted); font-size:.95rem; line-height:1.7}

.section{padding:34px 0}
.section--soft{background:linear-gradient(180deg, rgba(31,94,255,.04), rgba(255,255,255,0))}
.sectionHead{margin-bottom:16px}
.sectionHead h2{margin:0 0 6px; font-size:1.65rem}
.sectionHead p{margin:0; color:var(--muted); line-height:1.8}

.grid{display:grid; gap:12px}
.cards{grid-template-columns: repeat(3, 1fr)}
.card{
  background:rgba(255,255,255,.92);
  border:1px solid var(--line);
  border-radius: var(--r);
  padding:16px;
  box-shadow: var(--shadow2);
}
.card__icon{
  width:42px; height:42px; border-radius:14px;
  display:grid; place-items:center;
  background:linear-gradient(135deg, rgba(31,94,255,.12), rgba(255,176,32,.16));
  border:1px solid var(--line);
  margin-bottom:10px;
}
.card h3{margin:0 0 6px; font-size:1.1rem}
.card p{margin:0; color:var(--muted); line-height:1.85}

.steps{grid-template-columns: repeat(3, 1fr)}
.step{
  background:rgba(255,255,255,.92);
  border:1px solid var(--line);
  border-radius: var(--r);
  padding:16px;
  box-shadow: var(--shadow2);
}
.step__n{
  width:38px; height:38px; border-radius:14px;
  display:grid; place-items:center;
  font-weight:1000;
  background:linear-gradient(135deg, rgba(31,94,255,.18), rgba(255,176,32,.20));
  border:1px solid var(--line);
  margin-bottom:10px;
}
.step h3{margin:0 0 6px}
.step p{margin:0; color:var(--muted); line-height:1.85}

.routesGrid{display:grid; grid-template-columns: repeat(3, 1fr); gap:10px}
.routeCard{
  background:#fff; border:1px solid var(--line);
  border-radius:16px; padding:12px 14px;
  display:flex; align-items:center; justify-content:space-between; gap:12px;
  box-shadow: var(--shadow2);
  transition: transform .12s ease, box-shadow .12s ease;
}
.routeCard:hover{transform: translateY(-1px); box-shadow: var(--shadow)}
.routeCard span{font-weight:900}
.routeCard em{color:var(--primary); font-style:normal; font-weight:900}

.routeDetail{
  background:rgba(255,255,255,.95);
  border:1px solid var(--line);
  border-radius: var(--r2);
  padding:16px;
  box-shadow: var(--shadow2);
  margin-bottom:12px;
  scroll-margin-top: 88px;
}
.routeDetail__head{display:flex; align-items:flex-start; justify-content:space-between; gap:10px; flex-wrap:wrap}
.routeDetail h3{margin:0; font-size:1.2rem}
.routeDetail__actions{display:flex; gap:8px; flex-wrap:wrap}
.routeDetail__text{margin:10px 0 0; color:var(--muted); line-height:1.9}
.routeDetail--urgent{border-color: rgba(239,68,68,.35); background: linear-gradient(180deg, rgba(239,68,68,.06), rgba(255,255,255,.96))}
.routeDetail--quick{border-color: rgba(255,176,32,.45); background: linear-gradient(180deg, rgba(255,176,32,.08), rgba(255,255,255,.96))}

.ctaBox{
  background:linear-gradient(135deg, rgba(31,94,255,.10), rgba(255,176,32,.12));
  border:1px solid var(--line);
  border-radius: var(--r2);
  padding:18px;
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:14px; align-items:center;
  box-shadow: var(--shadow);
}
.ctaBox h2{margin:0 0 6px}
.ctaBox p{margin:0; color:var(--muted); line-height:1.85}
.ctaBox__actions{display:flex; flex-direction:column; gap:10px}
.checklist{margin:10px 0 0; padding:0; list-style:none; color:var(--muted)}
.checklist li{margin:6px 0; font-weight:700}

.faq{display:grid; gap:10px}
.faqItem{
  background:#fff; border:1px solid var(--line);
  border-radius:16px; box-shadow: var(--shadow2);
  overflow:hidden;
}
.faqItem summary{cursor:pointer; padding:14px 14px; font-weight:900; list-style:none}
.faqItem summary::-webkit-details-marker{display:none}
.faqItem__body{padding:0 14px 14px; color:var(--muted); line-height:1.85; font-weight:700}
.faqItem[open] summary{background:rgba(31,94,255,.06); border-bottom:1px solid var(--line)}

.footer{background:#0b1220; color:#eaf0ff; padding:26px 0 14px}
.footer__grid{display:grid; grid-template-columns: 1.1fr .7fr 1fr; gap:16px}
.footer__brand{font-weight:1000; font-size:1.2rem}
.footer__desc{color:#b9c6e6; line-height:1.9; margin:8px 0 0}
.footer__mini{display:flex; gap:12px; margin-top:10px; flex-wrap:wrap}
.footer__mini a{color:#eaf0ff; font-weight:900; opacity:.95}
.footer__title{font-weight:1000; margin-bottom:8px}
.footer__links{margin:0; padding:0; list-style:none; display:grid; gap:8px}
.footer__links a{color:#eaf0ff; opacity:.95; font-weight:800}
.footer__bottom{
  display:flex; justify-content:space-between; align-items:center; gap:12px;
  padding-top:12px; margin-top:14px;
  border-top:1px solid rgba(230,236,245,.12);
  color:#b9c6e6; font-weight:800;
}
.footer__bottom a{color:#eaf0ff; opacity:.9}

.floating{
  position:fixed; left:14px; bottom:14px;
  display:flex; flex-direction:column; gap:10px; z-index:60;
}
.floatBtn{
  width:52px; height:52px; border-radius:18px;
  display:grid; place-items:center;
  box-shadow: var(--shadow);
  border:1px solid rgba(255,255,255,.25);
  font-size:20px;
}
.floatBtn--call{background:linear-gradient(135deg, var(--primary), var(--primary2)); color:#fff}
.floatBtn--wa{background:linear-gradient(135deg, #22c55e, var(--wa)); color:#fff}

@media (max-width: 980px){
  .hero__grid{grid-template-columns: 1fr}
  .hero__meta{grid-template-columns: 1fr}
  .cards{grid-template-columns: 1fr}
  .steps{grid-template-columns: 1fr}
  .routesGrid{grid-template-columns: 1fr}
  .ctaBox{grid-template-columns: 1fr}
  .footer__grid{grid-template-columns: 1fr}
  .topbar__inner{align-items:flex-start; flex-direction:column}
  .topbar__cta{width:100%}
  .btn{flex:1}
}
