/* ==========================================================================
   TILIPHONES — VARIÁVEIS GLOBAIS
   ========================================================================== */
:root{
  --bg:#EAEAEA;
  --card-lavender:#FFFFFF;
  --primary:#081644;
  --primary-light:#12306F;
  --neon:#C8CCD3;
  --dark-panel:#061236;
  --text-main:#081644;
  --text-soft:color-mix(in srgb, #081644 45%, white);
  --white:#FFFFFF;

  --radius-lg:32px;
  --radius-md:20px;
  --radius-pill:999px;

  --shadow-soft:0 24px 60px -24px rgba(6,18,54,.25);
  --shadow-card:0 16px 40px -18px rgba(6,18,54,.18);

  --ease:cubic-bezier(.2,.7,.2,1);
  --dur:420ms;

  --font-display:'Space Grotesk','Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  --font-body:'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;
}

/* ==========================================================================
   RESET E BASE
   ========================================================================== */
*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
@media (prefers-reduced-motion: reduce){ html{ scroll-behavior:auto; } }

body{
  margin:0; background:var(--bg); color:var(--text-main);
  font-family:var(--font-body); line-height:1.6; -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img,svg{ display:block; max-width:100%; }
a{ color:inherit; text-decoration:none; }
button{ font-family:inherit; border:none; background:none; cursor:pointer; }

.wrap{ width:100%; max-width:1280px; margin-inline:auto; padding-inline:clamp(20px,5vw,48px); }
.section-pad{ padding-block:clamp(56px,8vw,104px); position:relative; }
.section-pad-sm{ padding-block:clamp(24px,4vw,40px); position:relative; }

.display{ font-family:var(--font-display); text-transform:uppercase; font-weight:700; letter-spacing:-.01em; line-height:1.05; margin:0; }
.display-md{ font-size:clamp(1.8rem,3.4vw,2.6rem); }
.display-sm{ font-size:clamp(1.4rem,2.4vw,1.9rem); }

.eyebrow{ font-family:var(--font-display); font-size:.72rem; letter-spacing:.16em; text-transform:uppercase; color:var(--primary); font-weight:700; }
.eyebrow-neon{ font-family:var(--font-display); font-size:.72rem; letter-spacing:.22em; text-transform:uppercase; color:var(--neon); font-weight:700; margin:0 0 28px; }

.section-head{ max-width:640px; margin-bottom:clamp(28px,4vw,44px); }
.section-head h2{ margin-top:10px; }

/* ==========================================================================
   BOTÕES
   ========================================================================== */
.btn-pill{
  display:inline-flex; align-items:center; gap:12px; background:var(--dark-panel); color:var(--white);
  font-family:var(--font-display); font-weight:700; font-size:.8rem; letter-spacing:.04em;
  padding:8px 8px 8px 22px; border-radius:var(--radius-pill); transition:transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.btn-pill-arrow{ width:34px; height:34px; border-radius:50%; background:var(--neon); color:var(--dark-panel); display:flex; align-items:center; justify-content:center; flex-shrink:0; transition:transform var(--dur) var(--ease); }
.btn-pill-arrow svg{ width:16px; height:16px; }
.btn-pill:hover{ transform:translateY(-2px); box-shadow:0 0 0 4px color-mix(in srgb, var(--neon) 30%, transparent); }
.btn-pill:hover .btn-pill-arrow{ transform:translate(2px,-2px); }

.btn-dark{
  display:inline-flex; align-items:center; gap:14px; background:var(--text-main); color:var(--white);
  font-family:var(--font-display); font-weight:700; font-size:.85rem; letter-spacing:.04em;
  padding:10px 10px 10px 28px; border-radius:var(--radius-pill); box-shadow:var(--shadow-card);
  transition:transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.btn-dark-arrow{ width:38px; height:38px; border-radius:50%; background:var(--neon); color:var(--dark-panel); display:flex; align-items:center; justify-content:center; flex-shrink:0; transition:transform var(--dur) var(--ease); }
.btn-dark-arrow svg{ width:17px; height:17px; }
.btn-dark:hover{ transform:translateY(-2px); box-shadow:0 20px 40px -14px rgba(200,204,211,.45); }
.btn-dark:hover .btn-dark-arrow{ transform:translate(2px,-2px); }

.link-inline{ font-weight:600; font-size:.92rem; color:var(--text-main); border-bottom:1px solid var(--text-main); padding-bottom:2px; transition:color var(--dur) var(--ease), border-color var(--dur) var(--ease); }
.link-inline:hover{ color:var(--primary); border-color:var(--primary); }

.btn-neon{
  display:inline-flex; align-items:center; justify-content:center; background:var(--neon); color:var(--dark-panel);
  font-family:var(--font-display); font-weight:700; font-size:.85rem; letter-spacing:.04em;
  padding:16px 32px; border-radius:var(--radius-pill); margin-top:24px; transition:box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.btn-neon:hover{ transform:translateY(-2px); box-shadow:0 0 0 6px color-mix(in srgb, var(--neon) 25%, transparent), 0 20px 40px -14px rgba(200,204,211,.5); }

/* ==========================================================================
   DOCK LATERAL (DESKTOP)
   ========================================================================== */
.dock{
  position:fixed; left:24px; top:50%; transform:translateY(-50%); z-index:150;
  display:flex; flex-direction:column; gap:6px; background:var(--dark-panel); padding:14px 10px;
  border-radius:var(--radius-pill); box-shadow:var(--shadow-soft);
}
.dock-item{
  position:relative; width:44px; height:44px; border-radius:50%; display:flex; align-items:center; justify-content:center;
  color:var(--white); transition:background var(--dur) var(--ease), color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.dock-item svg{ width:20px; height:20px; }
.dock-item:hover{ transform:scale(1.06); }
.dock-item.is-active{ background:var(--white); color:var(--dark-panel); }
.dock-item.dock-action:hover{ color:var(--neon); }
.dock-item .tooltip{
  position:absolute; left:56px; top:50%; transform:translateY(-50%) translateX(-6px); white-space:nowrap;
  background:var(--dark-panel); color:var(--white); font-size:.76rem; font-weight:600; padding:6px 12px; border-radius:999px;
  opacity:0; pointer-events:none; transition:opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.dock-item:hover .tooltip{ opacity:1; transform:translateY(-50%) translateX(0); }
@media (max-width:1023px){ .dock{ display:none; } }

/* ==========================================================================
   HEADER PILL
   ========================================================================== */
.topbar{ position:sticky; top:16px; z-index:120; display:flex; justify-content:center; padding-inline:16px; }
.pill-nav{
  width:100%; max-width:1100px; display:flex; align-items:center; justify-content:space-between; gap:20px;
  background:color-mix(in srgb, var(--white) 72%, transparent); backdrop-filter:blur(18px) saturate(160%);
  border:1px solid rgba(255,255,255,.5); border-radius:var(--radius-pill); padding:10px 10px 10px 22px;
  box-shadow:var(--shadow-card);
}
.brand img{ height:38px; width:auto; filter:brightness(0); }
.menu-central{ display:flex; align-items:center; gap:30px; }
.menu-central a{ position:relative; font-size:.88rem; font-weight:600; color:var(--text-soft); transition:color var(--dur) var(--ease); }
.menu-central a::after{ content:""; position:absolute; left:0; bottom:-4px; width:0; height:1.5px; background:var(--primary); transition:width var(--dur) var(--ease); }
.menu-central a:hover{ color:var(--text-main); }
.menu-central a:hover::after{ width:100%; }
@media (max-width:1023px){ .hide-mobile{ display:none !important; } }

.hamburger{ display:none; flex-direction:column; gap:5px; padding:10px 12px; }
.hamburger span{ width:20px; height:2px; background:var(--text-main); border-radius:2px; transition:transform var(--dur) var(--ease), opacity var(--dur) var(--ease); }
@media (max-width:1023px){ .hamburger{ display:flex; } }
.hamburger.is-open span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2){ opacity:0; }
.hamburger.is-open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

.mobile-menu{
  position:fixed; inset:0; z-index:110; background:color-mix(in srgb, var(--white) 88%, transparent);
  backdrop-filter:blur(20px); display:flex; align-items:center; justify-content:center;
  opacity:0; visibility:hidden; transform:translateY(-12px); transition:opacity var(--dur) var(--ease), transform var(--dur) var(--ease), visibility var(--dur);
}
.mobile-menu.is-open{ opacity:1; visibility:visible; transform:none; }
.mobile-menu nav{ display:flex; flex-direction:column; align-items:center; gap:28px; }
.mobile-menu a{ font-family:var(--font-display); font-size:1.5rem; font-weight:700; text-transform:uppercase; }
.mobile-menu .btn-pill{ margin-top:12px; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero{ padding-top:clamp(60px,9vw,110px); padding-bottom:clamp(60px,9vw,110px); overflow:hidden; }
.blob{ position:absolute; border-radius:50%; filter:blur(90px); opacity:.55; pointer-events:none; z-index:0; }
.blob-a{ width:460px; height:460px; background:radial-gradient(circle, var(--primary-light), transparent 70%); top:-140px; right:-60px; }
.blob-b{ width:340px; height:340px; background:radial-gradient(circle, var(--primary), transparent 70%); bottom:-100px; right:220px; }
.dots{ position:absolute; width:220px; height:220px; background-image:radial-gradient(circle, color-mix(in srgb, var(--primary) 35%, transparent) 2px, transparent 2px); background-size:18px 18px; z-index:0; }
.dots-hero{ top:40px; right:40px; }

.hero-grid{ display:grid; grid-template-columns:1fr 1fr; gap:clamp(32px,6vw,64px); align-items:center; position:relative; z-index:1; }
@media (max-width:1023px){ .hero-grid{ grid-template-columns:1fr; } }

.badge{ display:inline-flex; align-items:center; gap:8px; background:var(--white); border-radius:999px; padding:8px 18px; font-family:var(--font-display); font-size:.72rem; font-weight:700; letter-spacing:.08em; box-shadow:var(--shadow-card); margin:0 0 22px; }
.badge-icon{ width:14px; height:14px; color:var(--primary); }
.hero h1{ font-size:clamp(2.2rem,5.2vw,3.9rem); }
.grad-word{ background:linear-gradient(120deg,var(--primary),var(--primary-light)); -webkit-background-clip:text; background-clip:text; color:transparent; }
.lede{ color:var(--text-soft); font-size:1.08rem; max-width:44ch; margin:22px 0 0; }
.hero-ctas{ display:flex; flex-wrap:wrap; align-items:center; gap:22px; margin-top:34px; }

.hero-collage{ position:relative; height:clamp(400px,50vw,560px); z-index:1; }
.collage-item{ position:absolute; border-radius:24px; filter:drop-shadow(0 24px 30px rgba(6,18,54,.25)); }
.item-macbook{ width:42%; left:0; top:4%; transform:rotate(-4deg); z-index:1; }
.item-iphone{ width:19%; right:0; top:0; transform:rotate(6deg); z-index:3; }
.item-watch{ width:14%; right:0; bottom:38%; transform:rotate(-6deg); z-index:3; }
.item-ipad{ width:22%; left:0; bottom:2%; transform:rotate(4deg); z-index:1; opacity:.9; }
.item-felipe{ width:66%; left:50%; bottom:0; transform:translateX(-50%); z-index:2; border-radius:0; filter:drop-shadow(0 30px 34px rgba(6,18,54,.3)); }

.founder-tag{
  position:absolute; bottom:4%; left:50%; transform:translateX(-50%); z-index:4;
  display:flex; align-items:center; gap:9px; background:var(--white); padding:9px 18px 9px 10px; border-radius:999px;
  box-shadow:var(--shadow-card); font-size:.78rem; font-weight:700; white-space:nowrap; transition:transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.founder-tag:hover{ transform:translateX(-50%) translateY(-2px); box-shadow:0 0 0 4px color-mix(in srgb, var(--neon) 30%, transparent); }
.founder-dot{ width:9px; height:9px; border-radius:50%; background:var(--neon); box-shadow:0 0 0 3px color-mix(in srgb, var(--neon) 30%, transparent); flex-shrink:0; }

@keyframes floatA{ 0%,100%{ transform:translateY(0) rotate(-4deg); } 50%{ transform:translateY(-14px) rotate(-4deg); } }
@keyframes floatB{ 0%,100%{ transform:translateY(0) rotate(6deg); } 50%{ transform:translateY(-20px) rotate(6deg); } }
@keyframes floatC{ 0%,100%{ transform:translateY(0) rotate(-6deg); } 50%{ transform:translateY(-10px) rotate(-6deg); } }
@keyframes floatFelipe{ 0%,100%{ transform:translateX(-50%) translateY(0); } 50%{ transform:translateX(-50%) translateY(-8px); } }
.float-a{ animation:floatA 6.5s ease-in-out infinite; }
.float-b{ animation:floatB 5.5s ease-in-out infinite; animation-delay:.3s; }
.float-c{ animation:floatC 7.5s ease-in-out infinite; animation-delay:.6s; }
.float-felipe{ animation:floatFelipe 8s ease-in-out infinite; animation-delay:.15s; }
@media (prefers-reduced-motion: reduce){ .float-a,.float-b,.float-c,.float-felipe{ animation:none; } }

@media (max-width:640px){
  .hero-collage{ height:460px; }
  .item-macbook{ width:44%; left:-4%; top:0; }
  .item-iphone{ width:22%; right:-2%; top:-2%; }
  .item-watch{ width:16%; left:-2%; bottom:26%; }
  .item-ipad{ display:none; }
  .item-felipe{ width:64%; }
  .founder-tag{ font-size:.72rem; padding:8px 14px 8px 9px; bottom:2%; }
}

/* ==========================================================================
   PAINEL ESCURO / DIFERENCIAIS
   ========================================================================== */
.dark-panel{ background:var(--dark-panel); color:var(--white); border-radius:var(--radius-lg); padding:clamp(36px,5vw,56px); box-shadow:var(--shadow-soft); }
.diff-grid{ display:grid; grid-template-columns:repeat(4,1fr); }
@media (max-width:1023px){ .diff-grid{ grid-template-columns:repeat(2,1fr); gap:32px 0; } }
@media (max-width:560px){ .diff-grid{ grid-template-columns:1fr; } }
.diff-item{ padding-inline:clamp(12px,2vw,28px); border-left:1px solid rgba(255,255,255,.1); }
.diff-item:first-child{ border-left:none; padding-left:0; }
@media (max-width:1023px){ .diff-item:nth-child(odd){ border-left:none; padding-left:0; } }
@media (max-width:560px){ .diff-item{ border-left:none !important; padding-left:0 !important; padding-top:24px; border-top:1px solid rgba(255,255,255,.1); } .diff-item:first-child{ border-top:none; padding-top:0; } }
.diff-icon{ width:52px; height:52px; border-radius:50%; border:1px solid rgba(255,255,255,.25); display:flex; align-items:center; justify-content:center; margin-bottom:20px; transition:box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease); }
.diff-icon svg{ width:22px; height:22px; color:var(--white); }
.diff-item:hover .diff-icon{ box-shadow:0 0 0 6px color-mix(in srgb, var(--neon) 18%, transparent); transform:scale(1.06); }
.diff-item:hover .diff-icon svg{ color:var(--neon); }
.diff-item h3{ font-family:var(--font-display); font-size:.95rem; letter-spacing:.02em; margin:0 0 10px; }
.diff-item p{ font-size:.88rem; color:rgba(255,255,255,.6); margin:0; max-width:26ch; }

/* ==========================================================================
   PRODUTOS / CARROSSEL
   ========================================================================== */
.produtos-head{ display:flex; align-items:flex-end; justify-content:space-between; gap:24px; flex-wrap:wrap; }
.carousel-arrows{ display:flex; gap:10px; }
.arrow-btn{ width:48px; height:48px; border-radius:50%; display:flex; align-items:center; justify-content:center; transition:transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease); }
.arrow-btn svg{ width:18px; height:18px; }
.arrow-light{ background:var(--white); color:var(--text-main); box-shadow:var(--shadow-card); }
.arrow-light svg{ transform:rotate(90deg); }
.arrow-dark{ background:var(--dark-panel); color:var(--white); }
.arrow-dark svg{ transform:rotate(-90deg); }
.arrow-btn:hover{ transform:translateY(-2px); box-shadow:0 14px 30px -12px rgba(6,18,54,.35); }

.carousel{ display:flex; gap:20px; overflow-x:auto; scroll-snap-type:x mandatory; padding:8px 4px 20px; margin-top:36px; scrollbar-width:none; cursor:grab; }
.carousel::-webkit-scrollbar{ display:none; }
.carousel.is-dragging{ cursor:grabbing; scroll-snap-type:none; }
.product-card{
  position:relative; flex:0 0 clamp(220px,26vw,270px); scroll-snap-align:start; background:var(--card-lavender);
  border-radius:var(--radius-md); padding:26px; display:flex; flex-direction:column; min-height:320px;
  transition:transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.product-card:hover{ transform:scale(1.03); box-shadow:var(--shadow-soft); }
.product-photo{ flex:1; display:flex; align-items:center; justify-content:center; min-height:0; }
.product-photo img{ max-width:100%; max-height:160px; object-fit:contain; filter:drop-shadow(0 12px 18px rgba(6,18,54,.2)); }
.product-card h3{ font-family:var(--font-display); font-size:1.05rem; font-weight:700; margin:14px 0 2px; }
.product-price{ font-size:.85rem; color:var(--text-soft); margin:0; }
.round-cta{ position:absolute; right:20px; bottom:20px; width:42px; height:42px; border-radius:50%; background:var(--neon); color:var(--dark-panel); display:flex; align-items:center; justify-content:center; transition:transform var(--dur) var(--ease); }
.round-cta svg{ width:16px; height:16px; }
.product-card:hover .round-cta{ transform:rotate(45deg); }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq{ max-width:760px; }
.faq-item{ border-bottom:1px solid rgba(8,22,68,.12); padding-block:6px; }
.faq-item summary{ list-style:none; cursor:pointer; display:flex; align-items:center; justify-content:space-between; gap:16px; padding-block:16px; font-weight:700; font-size:1.02rem; }
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item summary .chevron{ width:18px; height:18px; color:var(--primary); flex-shrink:0; transition:transform .25s ease; }
.faq-item[open] summary .chevron{ transform:rotate(180deg); }
.faq-item p{ color:var(--text-soft); font-size:.95rem; padding-bottom:18px; max-width:60ch; margin:0; }

/* ==========================================================================
   FAIXA DE NÚMEROS
   ========================================================================== */
.stats-band{
  background:linear-gradient(120deg,var(--primary),var(--primary-light)); border-radius:var(--radius-lg); color:var(--white);
  padding:clamp(30px,4vw,48px); display:grid; grid-template-columns:repeat(4,1fr); gap:24px; text-align:center;
}
@media (max-width:760px){ .stats-band{ grid-template-columns:repeat(2,1fr); } }
.stat-icon{ width:26px; height:26px; margin-inline:auto; color:rgba(255,255,255,.85); }
.stat-number{ display:block; font-family:var(--font-display); font-size:clamp(1.6rem,3vw,2.4rem); font-weight:700; margin-top:10px; font-variant-numeric:tabular-nums; }
.stat-static{ font-size:clamp(1.1rem,2vw,1.5rem); }
.stat-label{ display:block; font-size:.82rem; color:rgba(255,255,255,.85); margin-top:6px; }

/* ==========================================================================
   DEPOIMENTO + CTA
   ========================================================================== */
.feature-grid{ display:grid; grid-template-columns:1fr 1.1fr 1fr; gap:20px; align-items:stretch; }
@media (max-width:1023px){ .feature-grid{ grid-template-columns:1fr; } }
.feature-image{ position:relative; border-radius:var(--radius-lg); overflow:hidden; min-height:280px; background:linear-gradient(160deg,var(--primary),var(--primary-light)); box-shadow:var(--shadow-soft); }
.feature-image img{ position:absolute; inset:0; width:100%; height:100%; object-fit:contain; padding:24px; }
.feature-image::after{ content:""; position:absolute; inset:0; background:linear-gradient(200deg, color-mix(in srgb, var(--primary) 35%, transparent), transparent 60%); pointer-events:none; }

.quote-card{ background:var(--dark-panel); color:var(--white); border-radius:var(--radius-lg); padding:clamp(30px,4vw,44px); display:flex; flex-direction:column; justify-content:center; box-shadow:var(--shadow-soft); }
.quote-mark{ font-family:var(--font-display); font-size:4rem; color:var(--neon); line-height:1; }
.quote-text{ font-size:1.1rem; line-height:1.5; margin:6px 0 22px; }
.quote-author{ font-weight:700; margin:0; }
.quote-role{ color:rgba(255,255,255,.6); font-size:.85rem; margin:2px 0 0; }

.cta-card{
  background:linear-gradient(160deg,var(--primary),var(--primary-light)); border-radius:var(--radius-lg); padding:clamp(30px,4vw,44px);
  display:flex; flex-direction:column; justify-content:center; color:var(--white); box-shadow:var(--shadow-soft);
  border:1px solid rgba(255,255,255,.2);
}
.cta-card h3{ color:var(--white); }
.cta-card p{ color:rgba(255,255,255,.85); margin:14px 0 0; max-width:32ch; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer{ padding-block:clamp(40px,6vw,64px); }
.footer-panel{ padding:clamp(32px,5vw,52px); }
.footer-top{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:32px; }
@media (max-width:760px){ .footer-top{ grid-template-columns:1fr 1fr; } }
@media (max-width:480px){ .footer-top{ grid-template-columns:1fr; } }
.brand-footer img{ height:26px; width:auto; }
.footer-col h4{ font-family:var(--font-display); font-size:.78rem; letter-spacing:.08em; text-transform:uppercase; color:var(--neon); margin:0 0 16px; }
.footer-col{ display:flex; flex-direction:column; gap:10px; }
.footer-col a{ font-size:.9rem; color:rgba(255,255,255,.7); transition:color var(--dur) var(--ease); }
.footer-col a:hover{ color:var(--white); }
.footer-socials{ display:flex; gap:12px; margin-top:36px; }
.footer-socials a{ width:40px; height:40px; border-radius:50%; border:1px solid rgba(255,255,255,.2); display:flex; align-items:center; justify-content:center; transition:border-color var(--dur) var(--ease), color var(--dur) var(--ease); }
.footer-socials a svg{ width:17px; height:17px; }
.footer-socials a:hover{ border-color:var(--neon); color:var(--neon); }
.footer-bottom{ margin-top:32px; padding-top:24px; border-top:1px solid rgba(255,255,255,.12); font-size:.78rem; color:rgba(255,255,255,.55); display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px; }

/* ==========================================================================
   BOTÃO FLUTUANTE WHATSAPP
   ========================================================================== */
.whatsapp-float{
  position:fixed; right:22px; bottom:22px; z-index:90; width:58px; height:58px; border-radius:50%;
  background:var(--neon); color:var(--dark-panel); display:flex; align-items:center; justify-content:center;
  box-shadow:0 16px 32px -12px rgba(6,18,54,.4);
}
.whatsapp-float svg{ width:26px; height:26px; }
.whatsapp-float::after{ content:""; position:absolute; inset:-6px; border-radius:50%; border:2px solid var(--neon); animation:pulse 2.4s ease-out infinite; }
@keyframes pulse{ 0%{ transform:scale(.9); opacity:.7; } 100%{ transform:scale(1.5); opacity:0; } }
@media (prefers-reduced-motion: reduce){ .whatsapp-float::after{ animation:none; display:none; } }
@media (max-width:1023px){ .whatsapp-float{ display:none; } }

/* ==========================================================================
   REVEAL ON SCROLL
   ========================================================================== */
.reveal{ opacity:0; transition:opacity .8s var(--ease), transform .8s var(--ease); }
.reveal[data-reveal="up"]{ transform:translateY(28px); }
.reveal[data-reveal="left"]{ transform:translateX(-32px); }
.reveal[data-reveal="right"]{ transform:translateX(32px); }
.reveal.in-view{ opacity:1; transform:none; }
.carousel .reveal{ transition-delay:calc(var(--i, 0) * 90ms); }
.diff-grid .diff-item{ opacity:0; transform:translateY(20px); transition:opacity .7s var(--ease), transform .7s var(--ease); }
.dark-panel.in-view .diff-item:nth-child(1){ transition-delay:.05s; } .dark-panel.in-view .diff-item:nth-child(2){ transition-delay:.15s; }
.dark-panel.in-view .diff-item:nth-child(3){ transition-delay:.25s; } .dark-panel.in-view .diff-item:nth-child(4){ transition-delay:.35s; }
.dark-panel.in-view .diff-item{ opacity:1; transform:none; }
@media (prefers-reduced-motion: reduce){ .reveal, .diff-item{ opacity:1; transform:none; transition:none; } }
