/* vivacanal/styles.css */
:root{
  --bg:#11151f;
  --bg2:#0b0f17;

  --text:#fbfdff;
  --muted:rgba(251,253,255,.84);
  --muted2:rgba(251,253,255,.68);

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

  --wa:#25D366;
  --line:rgba(255,255,255,.16);
  --panel:rgba(255,255,255,.085);

  --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);
  line-height:1.5;
  background:
    radial-gradient(900px 520px at 14% 12%, rgba(125,211,252,.20), transparent 58%),
    radial-gradient(900px 520px at 86% 16%, rgba(255,138,61,.18), transparent 58%),
    linear-gradient(180deg, var(--bg), var(--bg2));
}
a{color:inherit;text-decoration:none}
.wrap{width:min(var(--max), calc(100% - 24px)); margin:0 auto}

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  width:100%;
  min-height:48px;
  padding:12px 16px;
  border-radius:999px;
  font-size:14px;
  font-weight:900;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  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,.08)}
.btn--text{background: transparent; color: var(--muted)}
.btn--wa{background: rgba(37,211,102,.20); border-color: rgba(37,211,102,.48)}

.topbar{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(12px);
  background: rgba(14,18,27,.88);
  border-bottom:1px solid var(--line);
}
.topbar__row{
  display:flex; flex-direction:column; align-items:flex-start; gap:12px;
  padding:12px 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:none; grid-template-columns:1fr; gap:10px; width:100%}

.float{
  position:fixed; left:12px; right:12px; bottom:12px;
  z-index:60;
  display:grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap:8px;
  padding:8px;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(14,18,27,.94);
  backdrop-filter: blur(14px);
  box-shadow: 0 22px 42px rgba(0,0,0,.34);
}
.fab{
  border-radius:16px;
  width:100%;
  min-height:52px;
  padding:12px 14px;
  font-size:12px;
  font-weight:950;
  letter-spacing:.02em;
  border:1px solid transparent;
  box-shadow:none;
  background: rgba(255,255,255,.08);
}
.fab--test{
  border-color: rgba(255,176,120,.34);
  background:
    linear-gradient(180deg, rgba(255,168,92,.20), rgba(255,122,24,.08)),
    #171a20;
  color:#ffe5cf;
}
.fab--wa{
  border-color: rgba(66,228,135,.34);
  background:
    linear-gradient(180deg, rgba(49,208,109,.18), rgba(20,159,73,.08)),
    #161c18;
  color:#dcffea;
}
.fab--test::before,
.fab--wa::before{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:24px;
  height:24px;
  border-radius:999px;
  font-size:12px;
  font-weight:950;
  flex-shrink:0;
}
.fab--test::before{
  content:"P";
  background: rgba(255,168,92,.18);
  color:#ffd0aa;
}
.fab--wa::before{
  content:"W";
  background: rgba(49,208,109,.18);
  color:#b8ffd1;
}

.hero{padding: 18px 0 10px}
.hero__grid{display:grid; grid-template-columns: 1fr; gap:16px; align-items:start}
.pill{
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color: var(--muted);
  font-weight:900;
  font-size:12px;
}
h1{margin:12px 0 10px; font-size: clamp(32px, 9vw, 44px); line-height:1.05; letter-spacing:-0.8px}
.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:15px; line-height:1.6}
.hero__ctaRow{display:grid; grid-template-columns:1fr; gap:10px; margin: 12px 0 14px}

.metrics{display:grid; grid-template-columns: repeat(2,1fr); gap:10px; margin-top: 12px}
.metric{
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.08);
  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,.18);
  background:
    radial-gradient(520px 260px at 20% 0%, rgba(125,211,252,.20), rgba(255,255,255,.08)),
    radial-gradient(520px 260px at 85% 20%, rgba(255,138,61,.16), rgba(255,255,255,.04));
  box-shadow: 0 16px 28px rgba(0,0,0,.24);
  padding: 16px;
}
.card__top{display:flex; flex-direction:column; align-items:flex-start; justify-content:space-between; gap:10px}
.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,.40);
  background: rgba(125,211,252,.16);
  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: 32px 0}
.section--alt{
  border-top:1px solid rgba(255,255,255,.14);
  border-bottom:1px solid rgba(255,255,255,.14);
  background: linear-gradient(180deg, rgba(255,255,255,.05), transparent 42%);
}
.head{display:grid; gap:8px; margin-bottom: 14px}
.head h2{margin:0; font-size:24px; letter-spacing:-0.4px}
.head p{margin:0; color: var(--muted); max-width: 620px; font-weight:800; line-height:1.55}

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

.ctaPanel{
  margin-top: 14px;
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.18);
  background:
    radial-gradient(520px 220px at 15% 50%, rgba(125,211,252,.16), transparent 60%),
    radial-gradient(520px 220px at 85% 50%, rgba(255,138,61,.14), transparent 60%),
    rgba(255,255,255,.07);
  padding: 16px;
  display:grid; gap:12px;
}
.ctaPanel__t{font-weight:950}
.ctaPanel__s{color: var(--muted); font-weight:800; font-size:13px; margin-top:4px}
.ctaPanel__btns{display:grid; gap:10px}

.plans-stack{display:grid; gap:20px}
.plan-group{
  border-radius: calc(var(--radius) + 4px);
  border:1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.07);
  padding:16px;
  box-shadow: 0 14px 26px rgba(0,0,0,.18);
}
.plan-group--premium{
  border-color: rgba(255,138,61,.28);
  background:
    radial-gradient(700px 320px at 15% 0%, rgba(255,138,61,.16), transparent 55%),
    radial-gradient(700px 320px at 85% 0%, rgba(125,211,252,.14), transparent 55%),
    rgba(255,255,255,.04);
}
.plan-group--test{
  border-color: rgba(125,211,252,.22);
  background:
    radial-gradient(640px 260px at 10% 0%, rgba(125,211,252,.14), transparent 55%),
    rgba(255,255,255,.04);
}
.plan-group--basic{
  border-color: rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
}
.plan-group__intro{display:grid; gap:10px; margin-bottom:14px}
.plan-group__eyebrow{
  color: var(--copper2);
  font-size:12px;
  font-weight:950;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.plan-group__intro h3{margin:4px 0 4px; font-size:26px; letter-spacing:-0.4px}
.plan-group__intro p{
  margin:0;
  max-width:760px;
  color: var(--muted);
  font-weight:800;
  line-height:1.6;
}
.plan-group__pill{
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.10);
  font-size:12px;
  font-weight:950;
  white-space:nowrap;
  justify-self:start;
}
.plan-grid{display:grid; grid-template-columns: 1fr; gap:12px}
.plan{
  position:relative;
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.09);
  padding: 42px 16px 16px;
  box-shadow: 0 12px 24px rgba(0,0,0,.18);
}
.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--featured{border-width: 2px; box-shadow: 0 24px 44px rgba(255,138,61,.18)}
.plan--test{
  padding-top: 22px;
  border-color: rgba(125,211,252,.26);
  background:
    radial-gradient(540px 240px at 20% 0%, rgba(125,211,252,.12), transparent 60%),
    rgba(255,255,255,.05);
}
.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));
}
.plan--basic{
  border-color: rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  box-shadow: 0 10px 22px rgba(0,0,0,.12);
}
.plan--basic .plan__price{
  color: rgba(243,247,255,.84);
}
.plan--basic .badge2{
  border-color: rgba(255,255,255,.16);
  background: rgba(255,255,255,.05);
}
.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,.36);
  background: rgba(125,211,252,.16);
}
.badge2--best{border-color: rgba(255,138,61,.28); background: rgba(255,138,61,.12)}
.plan__top{display:flex; align-items:flex-start; justify-content:space-between; gap:10px; margin-bottom: 10px}
.plan__name{font-weight:950; font-size:18px}
.plan__sub{color: var(--muted2); font-weight:900; font-size:12px; margin-top:4px}
.plan__price{font-weight:950; font-size:24px; letter-spacing:-0.3px; 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}

.slider{
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  padding: 12px;
  box-shadow: 0 12px 24px rgba(0,0,0,.18);
}
.slider__track{
  display:grid;
  gap:12px;
}
.slide{min-width: 0}
.faq details{
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.08);
  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,.16);
  background: rgba(255,255,255,.08);
  padding: 16px;
  display:grid; gap:12px;
}
.footerCta__t{font-weight:950}
.footerCta__btns{display:grid; gap:10px}

.footer{
  border-top:1px solid rgba(255,255,255,.10);
  padding: 20px 0 88px;
}
.footer__row{
  display:grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-items:start;
}
.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-start}

@media (min-width: 640px){
  .wrap{width:min(var(--max), calc(100% - 32px))}
  .btn{width:auto}
  .topbar__ctas{display:grid; grid-template-columns:repeat(2, max-content); width:auto}
  .float{
    left:auto; right:14px; bottom:14px;
    grid-template-columns:1fr;
    padding:0;
    border:none;
    background:transparent;
    backdrop-filter:none;
    box-shadow:none;
  }
  .hero__ctaRow{grid-template-columns:repeat(2, max-content); align-items:center}
  .grid{grid-template-columns: repeat(2,1fr)}
  .head h2{font-size:28px}
  .ctaPanel{grid-template-columns: 1fr auto; align-items:center}
  .ctaPanel__btns,
  .footerCta__btns{display:flex; flex-wrap:wrap}
  .plan-group{padding:18px}
  .slider__track{
    display:flex;
    overflow-x:auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
  }
  .slider__track::-webkit-scrollbar{height:8px}
  .slider__track::-webkit-scrollbar-thumb{background:rgba(255,255,255,.18); border-radius:999px}
  .slide{min-width: 62%; scroll-snap-align: start}
}

@media (min-width: 900px){
  .topbar__row{flex-direction:row; align-items:center; justify-content:space-between}
  .hero{padding: 34px 0 24px}
  .hero__grid{grid-template-columns: 1.08fr .92fr; gap:18px}
  .lead{font-size:16px}
  .metrics{grid-template-columns: repeat(4,1fr)}
  .card__top{flex-direction:row; align-items:flex-start}
  .head{display:flex; align-items:flex-end; justify-content:space-between; gap:12px; flex-wrap:wrap}
  .grid{grid-template-columns: repeat(4,1fr)}
  .plan-grid{grid-template-columns: repeat(3,1fr)}
  .plan--featured{transform: translateY(-4px) scale(1.02)}
  .slide{min-width: calc(33.333% - 8px)}
  .footer{padding: 18px 0}
  .footer__row{grid-template-columns: 1.2fr .8fr 1fr; align-items:center}
  .footer__cta{justify-content:flex-end}
}
