/* vivacanal/styles.css */
:root{
  --bg:#0C0F16;
  --bg2:#070A10;

  --text:#F3F7FF;
  --muted:rgba(243,247,255,.72);
  --muted2:rgba(243,247,255,.56);

  --ice:#7DD3FC;
  --ice2:#BAE6FD;
  --copper:#FF8A3D;
  --copper2:#FFC08A;

  --wa:#25D366;
  --tg:#229ED9;

  --line:rgba(255,255,255,.10);
  --panel:rgba(255,255,255,.05);

  --radius:18px;
  --shadow:0 18px 48px rgba(0,0,0,.6);
  --max:1120px;
  --font:"Montserrat",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family:var(--font);
  color:var(--text);
  background:
    radial-gradient(900px 520px at 14% 12%, rgba(125,211,252,.16), transparent 60%),
    radial-gradient(900px 520px at 86% 16%, rgba(255,138,61,.14), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg2));
}
a{color:inherit;text-decoration:none}
.wrap{width:min(var(--max), calc(100% - 32px)); margin:0 auto}

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:12px 14px;
  border-radius:999px;
  font-size:14px;
  font-weight:900;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  transition: transform .08s ease, filter .2s ease, background .2s ease, border-color .2s ease;
  white-space:nowrap;
}
.btn:active{transform:translateY(1px)}
.btn:hover{filter:brightness(1.06)}
.btn--primary{
  color:#071018;
  background: linear-gradient(135deg, var(--ice2), var(--copper2));
  border-color: transparent;
  box-shadow: 0 14px 26px rgba(125,211,252,.14);
}
.btn--ghost{background: rgba(255,255,255,.06)}
.btn--text{background: transparent; color: var(--muted)}
.btn--wa{background: rgba(37,211,102,.16); border-color: rgba(37,211,102,.40)}
.btn--tg{background: rgba(34,158,217,.16); border-color: rgba(34,158,217,.40)}

.topbar{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(12px);
  background: rgba(7,10,16,.74);
  border-bottom:1px solid var(--line);
}
.topbar__row{
  display:flex; align-items:center; justify-content:space-between; gap:12px;
  padding:10px 0;
}
.logo{display:flex; align-items:center; gap:10px}
.logo__mark{
  width:12px;height:12px;border-radius:4px;
  background: linear-gradient(135deg, var(--ice2), var(--copper2));
  box-shadow: 0 0 0 4px rgba(125,211,252,.10);
}
.logo__name{font-weight:950}
.logo__sub{color: var(--muted); font-weight:800; font-size:12px}
.topbar__ctas{display:flex; gap:10px; flex-wrap:wrap}

.float{
  position:fixed; right:14px; bottom:14px;
  z-index:60;
  display:grid; gap:10px;
}
.fab{
  border-radius:999px;
  padding:12px 14px;
  font-size:13px;
  font-weight:950;
  border:1px solid rgba(255,255,255,.14);
  box-shadow: var(--shadow);
  background: rgba(255,255,255,.06);
}
.fab--test{border-color: rgba(255,138,61,.40); background: rgba(255,138,61,.18)}
.fab--wa{border-color: rgba(37,211,102,.45); background: rgba(37,211,102,.18)}
.fab--tg{border-color: rgba(34,158,217,.45); background: rgba(34,158,217,.18)}

.hero{padding: 26px 0 16px}
.hero__grid{display:grid; grid-template-columns: 1.1fr .9fr; gap:14px; align-items:start}
.pill{
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  color: var(--muted);
  font-weight:900;
  font-size:13px;
}
h1{margin:12px 0 10px; font-size: clamp(28px, 5vw, 44px); line-height:1.08; letter-spacing:-0.6px}
.grad{
  background: linear-gradient(90deg, var(--ice2), var(--copper2), var(--ice));
  -webkit-background-clip:text;
  background-clip:text;
  color: transparent;
}
.lead{margin:0 0 14px; color: var(--muted); font-size:16px; line-height:1.55}
.hero__ctaRow{display:flex; flex-wrap:wrap; gap:10px; margin: 10px 0 12px}

.metrics{display:grid; grid-template-columns: repeat(4,1fr); gap:10px; margin-top: 10px}
.metric{
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  padding: 12px;
}
.metric__n{font-weight:950; font-size:18px}
.metric__t{color: var(--muted); font-weight:800; font-size:12px; margin-top:4px}

.card{
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.14);
  background:
    radial-gradient(520px 260px at 20% 0%, rgba(125,211,252,.16), rgba(255,255,255,.04)),
    radial-gradient(520px 260px at 85% 20%, rgba(255,138,61,.12), rgba(255,255,255,.02));
  box-shadow: var(--shadow);
  padding: 14px;
}
.card__top{display:flex; align-items:flex-start; justify-content:space-between; gap:12px}
.card__t{font-weight:950}
.card__s{color: var(--muted); font-weight:800; font-size:13px; margin-top:4px}
.tag{
  font-size:12px; font-weight:950;
  padding: 6px 10px;
  border-radius:999px;
  border:1px solid rgba(125,211,252,.30);
  background: rgba(125,211,252,.10);
  color: rgba(243,247,255,.95);
}
.card__btns{display:grid; gap:10px; margin-top: 12px}
.fine{margin-top: 10px; color: var(--muted2); font-weight:800; font-size:12px}
.miniLinks{margin-top: 12px; display:grid; gap:8px}
.miniLink{font-weight:950; color: var(--muted)}

.section{padding: 22px 0}
.section--alt{
  border-top:1px solid rgba(255,255,255,.10);
  border-bottom:1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(255,255,255,.03), transparent 40%);
}
.head{display:flex; align-items:flex-end; justify-content:space-between; gap:12px; margin-bottom: 14px; flex-wrap:wrap}
.head h2{margin:0; font-size:22px; letter-spacing:-0.2px}
.head p{margin:0; color: var(--muted); max-width: 620px; font-weight:800}

.grid{display:grid; grid-template-columns: repeat(4,1fr); gap:12px}
.box{
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  padding: 14px;
}
.box h3{margin:0 0 8px}
.box p{margin:0 0 12px; color: var(--muted); font-weight:800; line-height:1.55}
.box__btns{display:flex; gap:10px; flex-wrap:wrap}

.ctaPanel{
  margin-top: 14px;
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.14);
  background:
    radial-gradient(520px 220px at 15% 50%, rgba(125,211,252,.12), transparent 60%),
    radial-gradient(520px 220px at 85% 50%, rgba(255,138,61,.10), transparent 60%),
    rgba(255,255,255,.03);
  padding: 14px;
  display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap;
}
.ctaPanel__t{font-weight:950}
.ctaPanel__s{color: var(--muted); font-weight:800; font-size:13px; margin-top:4px}
.ctaPanel__btns{display:flex; gap:10px; flex-wrap:wrap}

.plans3{display:grid; grid-template-columns: repeat(3,1fr); gap:12px}
.plan{
  position:relative;
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  padding: 16px;
  box-shadow: 0 16px 34px rgba(0,0,0,.22);
}
.plan--mid{
  border-color: rgba(125,211,252,.22);
  background: radial-gradient(540px 260px at 40% 0%, rgba(125,211,252,.10), rgba(255,255,255,.04));
}
.plan--best{
  border-color: rgba(255,138,61,.22);
  background: radial-gradient(540px 260px at 40% 0%, rgba(255,138,61,.10), rgba(255,255,255,.04));
}
.badge2{
  position:absolute; top:12px; right:12px;
  font-size:12px; font-weight:950;
  padding:6px 10px; border-radius:999px;
  border:1px solid rgba(125,211,252,.25);
  background: rgba(125,211,252,.10);
}
.badge2--best{border-color: rgba(255,138,61,.28); background: rgba(255,138,61,.12)}
.plan__top{display:flex; align-items:baseline; justify-content:space-between; gap:10px; margin-bottom: 10px}
.plan__name{font-weight:950; font-size:16px}
.plan__sub{color: var(--muted2); font-weight:900; font-size:12px; margin-top:4px}
.plan__price{font-weight:950; font-size:22px; letter-spacing:-0.2px; color: var(--ice2)}
.ul{margin:0 0 14px; padding-left: 18px; color: var(--muted); font-weight:800; line-height:1.7; font-size:13px}
.plan__btns{display:grid; gap:10px}
.centerBtns{margin-top: 12px; display:flex; gap:10px; flex-wrap:wrap}

.slider{
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  padding: 12px;
  box-shadow: 0 16px 34px rgba(0,0,0,.22);
}
.slider__track{
  display:flex; gap:12px;
  overflow-x:auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
}
.slide{min-width: 82%; scroll-snap-align: start;}
@media (min-width: 980px){ .slide{min-width: calc(33.333% - 8px)} }
.slider__controls{
  margin-top: 10px;
  display:flex; align-items:center; justify-content:space-between; gap:10px;
}
.iconBtn{
  width:44px; height:44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: var(--text);
  font-size: 22px;
  font-weight: 950;
}
.dots{display:flex; gap:8px; align-items:center; justify-content:center; flex:1}
.dot{
  width:10px; height:10px; border-radius:999px;
  background: rgba(255,255,255,.20);
  border: 1px solid rgba(255,255,255,.18);
}
.dot.is-active{
  background: rgba(255,138,61,.65);
  border-color: rgba(255,138,61,.65);
}

.faq details{
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  padding: 12px 14px;
  margin-bottom: 10px;
}
.faq summary{cursor:pointer; font-weight:950}
.faq p{color: var(--muted); font-weight:800; line-height:1.6}
.faq__btns{display:flex; gap:10px; flex-wrap:wrap; margin-top: 10px}

.footerCta{
  margin-top: 14px;
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  padding: 16px;
  display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap;
}
.footerCta__t{font-weight:950}
.footerCta__btns{display:flex; gap:10px; flex-wrap:wrap}

.footer{
  border-top:1px solid rgba(255,255,255,.10);
  padding: 18px 0;
}
.footer__row{
  display:grid;
  grid-template-columns: 1.2fr .8fr 1fr;
  gap: 12px;
  align-items:center;
}
.footer__brand{font-weight:950}
.footer__muted{color: var(--muted); font-weight:800; font-size:13px}
.footer__links{display:flex; gap:12px; flex-wrap:wrap; color: var(--muted); font-weight:900}
.footer__cta{display:flex; justify-content:flex-end}

@media (max-width: 980px){
  .hero__grid{grid-template-columns: 1fr}
  .grid{grid-template-columns: repeat(2,1fr)}
  .plans3{grid-template-columns: 1fr}
  .metrics{grid-template-columns: repeat(2,1fr)}
  .footer__row{grid-template-columns: 1fr}
  .footer__cta{justify-content:flex-start}
  .topbar__ctas{gap:8px}
}
@media (max-width: 480px){
  .btn{padding:10px 12px; font-size:13px}
  .grid{grid-template-columns: 1fr}
  .slide{min-width: 92%}
}