/* ============================================================
   WEBX STUDIO — PRODUTOS
   Mobile-first
   ============================================================ */

:root{
  --paper:#FBFBFD;
  --surface:#FFFFFF;
  --surface-2:#F2F3F6;
  --ink:#1D1D1F;
  --ink-2:#626268;
  --ink-3:#85858A;
  --line:rgba(0,0,0,.11);
  --line-soft:rgba(0,0,0,.075);
  --accent:#0B63F6;
  --accent-ink:#0958DC;
  --accent-soft:rgba(11,99,246,.085);
  --shadow-s:0 1px 2px rgba(0,0,0,.035),0 10px 26px rgba(0,0,0,.05);
  --shadow-m:0 2px 6px rgba(0,0,0,.045),0 24px 64px rgba(0,0,0,.09);
  --container:1120px;
  --section:88px;
  --radius:20px;
  --ease:cubic-bezier(.2,.8,.2,1);
  color-scheme:light;
}

@media (min-width:768px){ :root{ --section:120px; } }

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
body{
  margin:0;
  overflow-x:hidden;
  background:var(--paper);
  color:var(--ink);
  font-family:"Inter",-apple-system,BlinkMacSystemFont,"SF Pro Text","Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  font-size:17px;
  line-height:1.6;
  letter-spacing:-.011em;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
img,svg{ display:block; max-width:100%; }
a{ color:inherit; text-decoration:none; }
button{ border:0; background:none; color:inherit; font:inherit; cursor:pointer; }
:focus-visible{ outline:2px solid var(--accent); outline-offset:3px; border-radius:6px; }
h1,h2,h3,h4,h5,p{ margin:0; }

.wrap{
  width:100%;
  max-width:var(--container);
  margin-inline:auto;
  padding-inline:22px;
}

.section{ padding-block:var(--section); }
.section--tight{ padding-block:calc(var(--section) * .64); }

.display{
  font-size:clamp(2.45rem, 7.4vw, 4.1rem);

  font-weight:600;

  line-height:1.05;

  letter-spacing:-.032em;
}

.lede{
  color:var(--ink-2);
  font-size:clamp(1.05rem,2vw,1.25rem);
  line-height:1.5;
  letter-spacing:-.016em;
}

.body-2{ color:var(--ink-2); font-size:.98rem; line-height:1.62; }

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:50px;
  padding-inline:25px;
  border-radius:999px;
  font-size:.96rem;
  font-weight:500;
  letter-spacing:-.015em;
  transition:transform .25s var(--ease),background-color .25s var(--ease),border-color .25s var(--ease),box-shadow .25s var(--ease);
}
.btn:active{ transform:scale(.97); }
.btn--primary{
  background:var(--accent);
  color:#fff;
  box-shadow:0 1px 2px rgba(11,99,246,.22),0 8px 20px rgba(11,99,246,.12);
}
.btn--primary:hover{ background:var(--accent-ink); }
.btn--sm{ min-height:38px; padding-inline:18px; font-size:.9rem; }
.btn svg{
  width:16px;
  height:16px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.7;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.btn--outline-blue{
  color:var(--accent);
  background:rgba(255,255,255,.68);
  border:1px solid rgba(11,99,246,.24);
}
.btn--outline-blue:hover{ background:#fff; border-color:rgba(11,99,246,.38); }

/* NAVBAR */
.nav{
  position:fixed;
  inset:0 0 auto 0;
  z-index:120;
  padding:0;
  transition:padding .5s var(--ease);
}
.nav__bar{
  display:flex;
  align-items:center;
  gap:18px;
  width:100%;
  max-width:100%;
  height:62px;
  margin-inline:auto;
  padding-inline:22px;
  background:transparent;
  border:1px solid transparent;
  border-radius:0;
  transition:max-width .5s var(--ease),height .5s var(--ease),border-radius .5s var(--ease),background-color .5s var(--ease),border-color .5s var(--ease),box-shadow .5s var(--ease),padding .5s var(--ease),backdrop-filter .5s var(--ease);
}
.nav.is-detached{ padding:10px 14px; }
.nav.is-detached .nav__bar{
  max-width:1060px;
  height:56px;
  padding-inline:18px 10px;
  border-color:rgba(0,0,0,.08);
  border-radius:18px;
  background:rgba(239,240,243,.82);
  -webkit-backdrop-filter:saturate(185%) blur(26px);
  backdrop-filter:saturate(185%) blur(26px);
  box-shadow:0 1px 0 rgba(255,255,255,.78) inset,0 12px 34px rgba(0,0,0,.075);
}
.brand{
  display:flex;
  align-items:baseline;
  gap:7px;
  font-size:1.06rem;
  letter-spacing:-.03em;
  white-space:nowrap;
}
.brand b{ font-weight:700; }
.brand span{ color:var(--ink-2); font-size:.92rem; font-weight:400; }
.nav__links{ display:none; align-items:center; gap:30px; margin-left:auto; }
.nav__links a{ color:var(--ink-2); font-size:.94rem; font-weight:450; transition:color .2s var(--ease); }
.nav__links a:hover,.nav__links a[aria-current="page"]{ color:var(--ink); }
.nav__cta{ display:none; margin-left:22px; }

.burger{
  position:relative;
  width:42px;
  height:42px;
  margin-left:auto;
  flex:0 0 42px;
  border-radius:12px;
  transition:background-color .3s var(--ease),transform .3s var(--ease);
}
.burger span{
  position:absolute;
  top:50%;
  left:50%;
  width:19px;
  height:1.5px;
  background:var(--ink);
  border-radius:999px;
  transform-origin:center;
  transition:transform .38s var(--ease),opacity .25s var(--ease);
}
.burger span:first-child{ transform:translate(-50%,-5px); }
.burger span:last-child{ transform:translate(-50%,5px); }
.nav.is-open .burger span:first-child{ transform:translate(-50%,-50%) rotate(45deg); }
.nav.is-open .burger span:last-child{ transform:translate(-50%,-50%) rotate(-45deg); }
.burger:active{ transform:scale(.94); }

.sheet{
  position:fixed;
  inset:0;
  z-index:110;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  gap:0;
  padding:104px 28px 32px;
  background:rgba(251,251,253,.94);
  -webkit-backdrop-filter:blur(28px) saturate(180%);
  backdrop-filter:blur(28px) saturate(180%);
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:opacity .35s var(--ease),visibility .35s;
}
.sheet.is-open{ opacity:1; visibility:visible; pointer-events:auto; }
.sheet > a:not(.btn){
  display:flex;
  align-items:center;
  min-height:58px;
  padding:15px 0;
  border-bottom:1px solid var(--line-soft);
  color:var(--ink);
  font-size:1.18rem;
  font-weight:500;
  letter-spacing:-.025em;
  opacity:0;
  transform:translateY(10px);
  transition:opacity .4s var(--ease),transform .4s var(--ease),color .2s var(--ease);
}
.sheet.is-open > a{ opacity:1; transform:none; }
.sheet.is-open > a:nth-child(1){ transition-delay:.05s; }
.sheet.is-open > a:nth-child(2){ transition-delay:.09s; }
.sheet.is-open > a:nth-child(3){ transition-delay:.13s; }
.sheet.is-open > a:nth-child(4){ transition-delay:.17s; }
.sheet .btn{ align-self:flex-start; margin-top:28px; opacity:0; transform:translateY(10px); }
.sheet.is-open .btn{ opacity:1; transform:none; transition-delay:.21s; }

/* HERO */
.products-hero{ padding-top:132px; }
.products-hero__grid{ display:grid; gap:42px; align-items:center; }
.products-hero__copy{ max-width:620px; }
.eyebrow{
  display:block;
  margin-bottom:14px;
  color:var(--accent);
  font-size:.72rem;
  font-weight:700;
  line-height:1.2;
  letter-spacing:.14em;
  text-transform:uppercase;
}
.products-hero__copy .lede{ max-width:38ch; margin-top:18px; }

.hero-visual{ position:relative; min-height:290px; }
.hero-visual::before{
  content:"";
  position:absolute;
  left:50%;
  top:48%;
  width:90%;
  height:82%;
  transform:translate(-50%,-50%);
  background:radial-gradient(circle,rgba(11,99,246,.11) 0%,rgba(11,99,246,.05) 38%,transparent 72%);
  filter:blur(50px);
}
.hero-device{
  position:absolute;
  overflow:hidden;
  background:#fff;
  border:1px solid rgba(0,0,0,.07);
  box-shadow:0 2px 5px rgba(0,0,0,.035),0 18px 46px rgba(60,95,160,.09);
}
.hero-device__bar{
  display:flex;
  align-items:center;
  gap:4px;
  height:20px;
  padding-inline:9px;
  background:#F5F7FA;
  border-bottom:1px solid rgba(0,0,0,.045);
}
.hero-device__bar i{ width:4px; height:4px; border-radius:50%; background:#748093; }
.hero-device__bar span{ width:48%; height:5px; margin-left:10px; background:#DEE5EE; border-radius:999px; }

.hero-device--back{
  top:35px; left:36%; width:52%; height:150px; z-index:1;
  border-radius:15px; opacity:.58; transform:rotate(5deg);
}
.hero-device--desktop{
  top:62px; left:15%; z-index:3; width:67%; height:205px;
  border-radius:17px; transform:rotate(-1deg);
  border-color:rgba(11,99,246,.15);
  box-shadow:0 1px 3px rgba(0,0,0,.03),0 22px 50px rgba(11,99,246,.11);
}
.hero-device--phone{
  right:2%; bottom:1px; z-index:4; width:26%; height:168px;
  border-radius:16px; transform:rotate(3deg);
}
.hero-device__body{ padding:14px; }
.hero-device__body b{ display:block; width:48%; height:9px; background:#A6B2C1; border-radius:4px; }
.hero-device__body em{ display:block; width:76%; height:5px; margin-top:8px; background:#E2E7ED; border-radius:999px; }
.hero-device__body em.short{ width:52%; }
.hero-device__body--desktop{
  display:grid;
  grid-template-columns:1fr .88fr;
  gap:12px;
  padding:18px 16px 12px;
}
.hero-device__copy{ padding-top:6px; }
.hero-device__copy b{ display:block; width:72%; height:10px; background:#9FAABD; border-radius:4px; }
.hero-device__copy em{ display:block; width:80%; height:5px; margin-top:8px; background:#E0E5EC; border-radius:999px; }
.hero-device__copy em.short{ width:55%; }
.hero-device__copy u{
  display:block;
  width:54px;
  height:17px;
  margin-top:13px;
  background:var(--accent);
  border-radius:5px;
  text-decoration:none;
}
.hero-device__image{
  position:relative;
  min-height:76px;
  overflow:hidden;
  background:linear-gradient(150deg,#E5EDF9,#C8D8EE);
  border-radius:7px;
}
.hero-device__image span{
  position:absolute;
  bottom:-6px;
  width:76px;
  height:46px;
  transform:rotate(34deg);
  border-radius:10px 10px 0 0;
  background:#9FB6D6;
}
.hero-device__image span:nth-child(1){ left:-4px; }
.hero-device__image span:nth-child(2){ left:35%; bottom:-15px; background:#B9C9DF; }
.hero-device__image span:nth-child(3){ right:-18px; background:#8FA9CD; }

.hero-device__cards{ grid-column:1 / -1; display:grid; grid-template-columns:repeat(3,1fr); gap:7px; }
.hero-device__cards i{ height:31px; background:#F0F3F7; border:1px solid rgba(0,0,0,.035); border-radius:5px; }

.hero-device__phone-body{ padding:13px 10px; }
.hero-device__phone-body b{ display:block; width:60%; height:8px; background:#A3AFC0; border-radius:4px; }
.hero-device__phone-body em{ display:block; width:76%; height:4px; margin-top:7px; background:#E2E7EE; border-radius:999px; }
.hero-device__phone-body u{
  display:block;
  width:36px;
  height:13px;
  margin-top:10px;
  background:var(--accent);
  border-radius:4px;
  text-decoration:none;
}
.hero-device__phone-body div{ height:56px; margin-top:12px; background:linear-gradient(145deg,#E4ECF8,#BDCEE4); border-radius:7px; }

.hero-visual__float{
  position:absolute;
  z-index:5;
  display:flex;
  flex-direction:column;
  gap:2px;
  padding:15px;
  background:rgba(255,255,255,.88);
  border:1px solid rgba(0,0,0,.055);
  border-radius:18px;
  box-shadow:var(--shadow-s);
  -webkit-backdrop-filter:blur(16px);
  backdrop-filter:blur(16px);
  color:var(--ink-2);
  font-size:.72rem;
  line-height:1.35;
}
.hero-visual__float--left{ left:0; top:32px; }
.hero-visual__float--right{ right:0; top:112px; color:var(--accent); }

/* PRODUCT CARDS */
.products-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:18px;
  margin-top:54px;
}
.product-card{
  display:flex;
  flex-direction:column;
  min-width:0;
  padding:18px;
  background:#fff;
  border:1px solid rgba(0,0,0,.085);
  border-radius:22px;
  box-shadow:0 1px 2px rgba(0,0,0,.025),0 12px 30px rgba(0,0,0,.04);
  transition:transform .35s var(--ease),box-shadow .35s var(--ease),border-color .35s var(--ease);
}
.product-card--featured{ box-shadow:0 2px 5px rgba(0,0,0,.035),0 20px 48px rgba(0,0,0,.075); }
.product-card__art{
  position:relative;
  height:110px;
  margin-bottom:22px;
  overflow:hidden;
  background:#F1F2F5;
  border:1px solid rgba(0,0,0,.065);
  border-radius:13px;
}
.art-lp{ display:grid; align-content:center; gap:8px; padding:17px; }
.art-lp span{ display:block; width:72%; height:7px; background:#CACDD1; border-radius:4px; }
.art-lp span:first-child{ width:46%; height:12px; background:#9B9EA3; }
.art-lp span:last-child{ width:34%; height:17px; margin-top:2px; background:var(--accent); border-radius:999px; }

.art-inst{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  grid-template-rows:repeat(2,1fr);
  gap:7px;
  padding:14px;
}
.art-inst span{ background:#DCDDDF; border:1px solid rgba(0,0,0,.065); border-radius:7px; }
.art-inst span:first-child{ background:#BBD2F7; border-color:rgba(11,99,246,.12); }

.art-custom{
  background:
    linear-gradient(rgba(0,0,0,.08) 1px,transparent 1px),
    linear-gradient(90deg,rgba(0,0,0,.08) 1px,transparent 1px),
    #F4F5F7;
  background-size:20px 20px;
}
.art-custom span{
  position:absolute;
  left:23%;
  top:27%;
  width:55%;
  height:48%;
  background:rgba(11,99,246,.09);
  border:1.5px solid var(--accent);
  border-radius:10px;
}
.product-card h2{ color:var(--ink); font-size:1.35rem; font-weight:600; line-height:1.15; letter-spacing:-.03em; }
.product-card__desc{ margin-top:10px; color:var(--ink-2); font-size:.95rem; line-height:1.55; }
.product-card__list{ display:grid; gap:9px; margin:22px 0 0; padding:0; list-style:none; }
.product-card__list li{
  position:relative;
  padding-left:21px;
  color:var(--ink-2);
  font-size:.91rem;
  line-height:1.42;
}
.product-card__list li::before{ content:"✓"; position:absolute; left:0; color:var(--accent); font-weight:600; }
.product-card__foot{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-top:auto;
  padding-top:28px;
  color:var(--ink-3);
  font-size:.82rem;
}
.product-link{
  display:inline-flex;
  align-items:center;
  gap:5px;
  color:var(--accent);
  font-size:.88rem;
  font-weight:500;
}
.product-link svg{
  width:14px;
  height:14px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.7;
  stroke-linecap:round;
  stroke-linejoin:round;
  transition:transform .25s var(--ease);
}
.product-link:hover svg{ transform:translateX(3px); }

/* PILARES */
.principles{ padding-top:0; }
.principles__grid{
  display:grid;
  grid-template-columns:1fr;
  overflow:hidden;
  background:linear-gradient(135deg,rgba(11,99,246,.045),rgba(255,255,255,.85));
  border:1px solid rgba(0,0,0,.055);
  border-radius:24px;
}
.principle{ padding:26px 24px; border-bottom:1px solid var(--line-soft); }
.principle:last-child{ border-bottom:0; }
.principle__icon{
  display:grid;
  place-items:center;
  width:50px;
  height:50px;
  margin-bottom:16px;
  color:var(--accent);
  background:var(--accent-soft);
  border:1px solid rgba(11,99,246,.08);
  border-radius:16px;
}
.principle__icon svg{
  width:24px;
  height:24px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.75;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.principle h3{ font-size:1rem; font-weight:600; line-height:1.2; letter-spacing:-.022em; }
.principle p{ margin-top:8px; color:var(--ink-2); font-size:.88rem; line-height:1.5; }

/* ============================================================
   ÍCONE — DESIGN ESTRATÉGICO
   ============================================================ */

.principle__icon--diamond{
  display:grid;
  place-items:center;

  width:50px;
  height:50px;

  flex:0 0 50px;

  padding:0;

  color:var(--accent);

  background:var(--accent-soft);

  border:1px solid rgba(11,99,246,.08);

  border-radius:16px;
}

/*
  Regra específica para evitar qualquer deformação
  causada pelo SVG genérico do restante da página.
*/
.principle__icon--diamond .diamond-icon{
  display:block;

  width:24px !important;
  height:24px !important;

  max-width:none;

  overflow:visible;

  fill:none;

  stroke:currentColor;

  stroke-width:1.65;

  stroke-linecap:round;
  stroke-linejoin:round;

  /*
    O preview utiliza um diamante visualmente
    mais largo que o anterior.
  */
  transform:scaleX(1.08);

  transform-origin:center;
}

/* ============================================================
   COMPARATIVO
   Mobile-first
   ============================================================ */

.comparison{
  padding-top:calc(var(--section) * .72);
}


/* ============================================================
   CABEÇALHO
   ============================================================ */

.comparison__head{
  max-width:700px;

  margin-inline:auto;

  text-align:center;
}


.comparison__head .eyebrow{
  margin-bottom:12px;
}


.comparison__head h2{
  margin:0;

  color:var(--ink);

  font-size:clamp(
    2rem,
    7vw,
    3rem
  );

  font-weight:600;

  line-height:1.05;

  letter-spacing:-.038em;
}


.comparison__head p{
  max-width:44ch;

  margin:
    12px
    auto
    0;

  color:var(--ink-2);

  font-size:1rem;

  line-height:1.55;
}


/* ============================================================
   MOBILE — CARDS
   ============================================================ */

.comparison-mobile{
  display:grid;

  grid-template-columns:1fr;

  gap:16px;

  margin-top:38px;
}


/* CARD */

.compare-card{
  position:relative;

  display:flex;

  flex-direction:column;

  width:100%;

  padding:22px;

  overflow:hidden;

  background:
    linear-gradient(
      180deg,
      #FFFFFF 0%,
      #FBFCFE 100%
    );

  border:
    1px solid
    rgba(0,0,0,.08);

  border-radius:22px;

  box-shadow:
    0 1px 2px rgba(0,0,0,.025),
    0 12px 30px rgba(0,0,0,.04);
}


/*
  Dá um leve destaque para o institucional,
  sem transformar em "plano recomendado".
*/
.compare-card--featured{
  border-color:
    rgba(11,99,246,.17);

  box-shadow:
    0 1px 2px rgba(0,0,0,.025),
    0 16px 36px rgba(11,99,246,.07);
}


/* ============================================================
   CABEÇALHO DO CARD
   ============================================================ */

.compare-card__head{
  display:flex;

  align-items:flex-start;

  justify-content:space-between;

  gap:16px;
}


.compare-card h3{
  margin:0;

  color:var(--ink);

  font-size:1.35rem;

  font-weight:600;

  line-height:1.15;

  letter-spacing:-.03em;
}


/* LABEL */

.compare-card__badge{
  flex:0 0 auto;

  display:inline-flex;

  align-items:center;

  min-height:31px;

  padding-inline:11px;

  color:var(--accent);

  background:
    rgba(11,99,246,.065);

  border:
    1px solid
    rgba(11,99,246,.10);

  border-radius:999px;

  font-size:.7rem;

  font-weight:600;

  white-space:nowrap;
}


/* ============================================================
   INFORMAÇÕES RÁPIDAS
   ============================================================ */

.compare-card__meta{
  display:grid;

  grid-template-columns:
    repeat(2, minmax(0,1fr));

  gap:10px;

  margin-top:22px;
}


.compare-card__meta div{
  padding:14px;

  background:#F4F5F7;

  border:
    1px solid
    rgba(0,0,0,.045);

  border-radius:14px;
}


.compare-card__meta span,
.compare-card__ideal > span{
  display:block;

  color:var(--ink-3);

  font-size:.72rem;

  line-height:1.2;
}


.compare-card__meta strong{
  display:block;

  margin-top:5px;

  color:var(--ink);

  font-size:.88rem;

  font-weight:600;

  line-height:1.3;
}


/* ============================================================
   IDEAL PARA
   ============================================================ */

.compare-card__ideal{
  margin-top:20px;

  padding-bottom:20px;

  border-bottom:
    1px solid
    var(--line-soft);
}


.compare-card__ideal strong{
  display:block;

  margin-top:6px;

  color:var(--ink);

  font-size:.94rem;

  font-weight:500;

  line-height:1.5;

  letter-spacing:-.012em;
}


/* ============================================================
   FEATURES
   ============================================================ */

.compare-card__features{
  display:grid;

  gap:13px;

  margin:
    20px
    0
    0;

  padding:0;

  list-style:none;
}


.compare-card__features li{
  position:relative;

  min-height:22px;

  padding-left:28px;

  color:var(--ink-2);

  font-size:.9rem;

  line-height:1.45;
}


.compare-card__features li::before{
  position:absolute;

  left:0;
  top:0;

  display:grid;

  place-items:center;

  width:20px;
  height:20px;

  border-radius:50%;

  font-size:.7rem;

  font-weight:700;
}


/* Incluso */

.compare-card__features .is-included::before{
  content:"✓";

  color:var(--accent);

  background:
    rgba(11,99,246,.08);
}


/* Parcial */

.compare-card__features .is-partial::before{
  content:"•";

  color:#8A6500;

  background:
    rgba(220,170,30,.12);
}


/* Não incluso */

.compare-card__features .is-not-included{
  color:var(--ink-3);
}


.compare-card__features .is-not-included::before{
  content:"—";

  color:var(--ink-3);

  background:
    rgba(0,0,0,.045);
}


/* ============================================================
   CTA DO CARD
   ============================================================ */

.compare-card__link{
  display:inline-flex;

  align-items:center;

  align-self:flex-start;

  gap:6px;

  margin-top:24px;

  color:var(--accent);

  font-size:.9rem;

  font-weight:500;

  letter-spacing:-.012em;
}


.compare-card__link svg{
  width:14px;
  height:14px;

  fill:none;

  stroke:currentColor;

  stroke-width:1.7;

  stroke-linecap:round;
  stroke-linejoin:round;

  transition:
    transform
    .25s
    var(--ease);
}


.compare-card__link:hover svg{
  transform:
    translateX(3px);
}


/* ============================================================
   DESKTOP TABLE
   Escondida no mobile
   ============================================================ */

.comparison-table-wrap{
  display:none;
}


/* ============================================================
   TABLET
   Ainda usamos os cards, mas ficam maiores.
   ============================================================ */

@media (min-width:600px) and (max-width:899px){

  .comparison-mobile{
    max-width:680px;

    margin-inline:auto;
  }


  .compare-card{
    padding:26px;
  }

}


/* ============================================================
   DESKTOP
   A partir daqui volta a tabela original.
   ============================================================ */

@media (min-width:900px){

  .comparison-mobile{
    display:none;
  }


  .comparison-table-wrap{
    display:block;

    width:100%;

    margin-top:38px;

    overflow:hidden;

    background:#fff;

    border:
      1px solid
      rgba(0,0,0,.085);

    border-radius:20px;

    box-shadow:
      0 1px 2px rgba(0,0,0,.02),
      0 12px 32px rgba(0,0,0,.035);
  }


  .comparison-table{
    width:100%;

    border-collapse:collapse;
  }


  .comparison-table th,
  .comparison-table td{
    padding:13px 16px;

    border-bottom:
      1px solid
      var(--line-soft);

    border-right:
      1px solid
      var(--line-soft);

    text-align:left;

    vertical-align:middle;

    font-size:.87rem;

    line-height:1.35;
  }


  .comparison-table tr:last-child th,
  .comparison-table tr:last-child td{
    border-bottom:0;
  }


  .comparison-table th:last-child,
  .comparison-table td:last-child{
    border-right:0;
  }


  .comparison-table thead th{
    color:var(--ink);

    font-weight:600;

    background:#FCFCFD;
  }


  .comparison-table tbody th{
    color:var(--ink-2);

    font-weight:500;
  }


  .comparison-table tbody td{
    color:var(--ink-2);
  }


  .check{
    color:var(--accent);

    font-size:1rem;

    font-weight:700;
  }

}

/* ============================================================
   DESTAQUE — SITE CUSTOMIZADO
   ============================================================ */

.compare-card--featured{
  border:1.5px solid rgba(11,99,246,.58);

  background:
    linear-gradient(
      180deg,
      rgba(11,99,246,.025) 0%,
      #FFFFFF 24%,
      #FBFCFE 100%
    );

  box-shadow:
    0 1px 2px rgba(0,0,0,.025),
    0 16px 40px rgba(11,99,246,.08);
}

/* CTA */
.products-cta{ padding-top:0; }
.products-cta__box{
  display:grid;
  gap:26px;
  padding:30px 24px;
  overflow:hidden;
  background:
    radial-gradient(circle at 90% 30%,rgba(11,99,246,.10),transparent 38%),
    linear-gradient(135deg,#F3F7FF 0%,#F8FAFD 55%,#F1F6FF 100%);
  border:1px solid rgba(11,99,246,.08);
  border-radius:26px;
}
.products-cta__copy h2{
  max-width:18ch;
  margin-top:8px;
  font-size:clamp(2rem,7vw,3rem);
  font-weight:600;
  line-height:1.04;
  letter-spacing:-.038em;
}
.products-cta__copy p{ max-width:52ch; margin-top:12px; color:var(--ink-2); font-size:.98rem; line-height:1.55; }
.products-cta__actions{ display:flex; flex-wrap:wrap; gap:10px; }

/* FOOTER — exatamente no padrão da home */
.foot{ border-top:1px solid var(--line); padding-block:52px 40px; }
.foot__grid{ display:grid; gap:36px; }
.foot h5{ margin:0 0 14px; font-size:.9rem; font-weight:600; letter-spacing:-.01em; }
.foot ul{ list-style:none; margin:0; padding:0; display:grid; gap:10px; }
.foot a,.foot li{ font-size:.94rem; color:var(--ink-2); }
.foot a:hover{ color:var(--ink); }
.foot__bottom{
  margin-top:44px;
  padding-top:22px;
  border-top:1px solid var(--line-soft);
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:space-between;
  font-size:.86rem;
  color:var(--ink-3);
}

/* REVEAL */
.reveal{
  opacity:0;
  transform:translateY(10px);
  transition:opacity .75s var(--ease),transform .75s var(--ease);
}
.reveal.in{ opacity:1; transform:none; }

@media (hover:hover){
  .burger:hover{ background:var(--surface-2); }
  .product-card:hover{
    transform:translateY(-4px);
    border-color:rgba(11,99,246,.11);
    box-shadow:0 2px 4px rgba(0,0,0,.025),0 20px 44px rgba(0,0,0,.065);
  }
}

@media (min-width:700px){
  .wrap{ padding-inline:32px; }
  .products-grid{ grid-template-columns:repeat(2,minmax(0,1fr)); }
  .product-card:last-child{ grid-column:1 / -1; }
  .principles__grid{ grid-template-columns:repeat(2,minmax(0,1fr)); }
  .principle{ border-right:1px solid var(--line-soft); }
  .principle:nth-child(2n){ border-right:0; }
  .principle:nth-child(3){ border-bottom:0; }
}

@media (min-width:920px){
  .nav__bar{ height:66px; padding-inline:32px; }
  .nav.is-detached{ padding:12px 20px; }
  .nav__links{ display:flex; }
  .nav__cta{ display:inline-flex; }
  .burger{ display:none; }

  .products-hero{ padding-top:142px; }
  .products-hero__grid{
    grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr);
    gap:60px;
  }
  .hero-visual{ min-height:300px; }

  .products-grid{
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:20px;
    margin-top:54px;
  }
  .product-card:last-child{ grid-column:auto; }

  .principles__grid{ grid-template-columns:repeat(4,minmax(0,1fr)); }
  .principle{
    min-height:180px;
    padding:28px 26px;
    border-bottom:0;
    border-right:1px solid var(--line-soft);
  }
  .principle:nth-child(2n){ border-right:1px solid var(--line-soft); }
  .principle:last-child{ border-right:0; }

  .products-cta__box{
    grid-template-columns:1fr auto;
    align-items:center;
    gap:36px;
    padding:36px 42px;
  }
  .products-cta__actions{ justify-content:flex-end; }

  .foot__grid{
    grid-template-columns:1.6fr 1fr 1fr 1fr;
    gap:40px;
  }
}

@media (min-width:1200px){
  .products-hero__grid{ gap:76px; }
  .product-card{ padding:20px; }
}

@media (max-width:420px){
  .products-hero{ padding-top:118px; }
  .hero-visual{ min-height:250px; }
  .hero-device--desktop{ left:12%; width:70%; height:184px; }
  .hero-device--back{ left:32%; width:58%; }
  .hero-device--phone{ right:0; width:29%; height:150px; }
  .hero-visual__float{ padding:12px; font-size:.65rem; }
  .hero-visual__float--left{ top:24px; }
  .hero-visual__float--right{ top:94px; }

  .product-card{ padding:16px; border-radius:19px; }
  .product-card__foot{ align-items:flex-start; flex-direction:column; }

  .products-cta__box{ padding:24px 18px; border-radius:22px; }
  .products-cta__actions{ flex-direction:column; }
  .products-cta__actions .btn{ width:100%; }
}

@media (prefers-reduced-motion:reduce){
  html{ scroll-behavior:auto; }
  *,*::before,*::after{
    animation-duration:.001ms !important;
    animation-delay:0ms !important;
    transition-duration:.001ms !important;
  }
  .reveal{ opacity:1 !important; transform:none !important; }
}

/* ============================================================
   CTA FINAL — ÍCONE WHATSAPP
   ============================================================ */

.products-cta__actions .products-cta__whatsapp {
    /* Mantém o ícone e o texto alinhados. */
    display: inline-flex;
    align-items: center;
    justify-content: center;

    /* Espaçamento entre o ícone e o texto. */
    gap: 10px;
}

.products-cta__actions .products-cta__whatsapp-icon {
    /* Tamanho visual do ícone. */
    width: 17px;
    height: 17px;

    /* Impede que o flexbox comprima o SVG. */
    flex: 0 0 17px;

    /* Evita espaços extras ao redor do desenho. */
    display: block;

    /* Usa o azul do próprio botão. */
    fill: currentColor;

    /* Remove o traço herdado da regra global .btn svg. */
    stroke: none;

    /* Preserva as proporções do desenho. */
    overflow: visible;
}

.products-cta__actions .products-cta__whatsapp-icon path {
    /* Garante que o logotipo seja preenchido. */
    fill: currentColor;

    /* Impede que o CSS global desenhe contornos extras. */
    stroke: none;
}

.products-cta__actions .products-cta__whatsapp > span {
    /* Evita uma quebra de linha entre as palavras. */
    white-space: nowrap;
}