@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;700&display=swap');

:root{
  --bg:#f4f9ff;
  --bg2:#eaf3ff;
  --card:#ffffff;
  --text:#112b4b;
  --muted:#4b6483;
  --brand:#2f9de9;
  --brand2:#5ec8ff;
  --line:rgba(18,68,120,.16);
  --shadow:0 14px 36px rgba(19,52,90,.14);
  --radius:18px;
  --max:80%;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:'Manrope',ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial;
  color:var(--text);
  background:
    radial-gradient(1200px 520px at 12% -8%, rgba(47,157,233,.16), transparent 68%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  min-height:100vh;
  overflow-x:hidden;
  position:relative;
}
body::before{
  content:"";
  position:fixed;
  inset:0;
  background-image:linear-gradient(rgba(47,157,233,.06) 1px, transparent 1px),
                   linear-gradient(90deg, rgba(47,157,233,.06) 1px, transparent 1px);
  background-size:48px 48px;
  mask-image:radial-gradient(circle at 38% 14%, black 25%, transparent 82%);
  pointer-events:none;
  z-index:-1;
}

a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}

a:focus-visible,button:focus-visible,input:focus-visible,textarea:focus-visible,select:focus-visible{
  outline:3px solid #88d4ff;
  outline-offset:3px;
}

.skip-link{
  position:absolute;
  left:-9999px;
  top:8px;
  z-index:2000;
  background:#fff;
  color:#0f172a;
  border-radius:10px;
  padding:10px 12px;
  font-weight:700;
}
.skip-link:focus{left:10px}

.container{width:min(var(--max),calc(100% - 40px));margin-inline:auto}

.topbar{
  position:sticky;
  top:0;
  z-index:1000;
  backdrop-filter:blur(12px);
  background:linear-gradient(90deg, #2f9de9, #2a90da);
  border-bottom:1px solid rgba(255,255,255,.24);
  padding:0;
}
.nav{display:flex;align-items:center;justify-content:space-between;padding:14px 0;gap:16px}
.brand{
  display:inline-flex;
  align-items:center;
  padding:6px 24px;
  border-radius:12px;
  border:0;
  background:rgb(255, 255, 255);
}
.brand img{height:56px;width:auto;filter:brightness(1.14) contrast(1.08)}
.menu{
  position:relative;
  display:flex;
  align-items:center;
  gap:6px;
  padding:6px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.28);
  background:linear-gradient(135deg, rgba(18,105,174,.44), rgba(32,136,209,.34));
  box-shadow:inset 0 1px 0 rgba(255,255,255,.18), 0 10px 20px rgba(12,66,111,.24);
}
.menu::after{
  content:"";
  position:absolute;
  inset:1px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  pointer-events:none;
}
.menu-indicator{
  position:absolute;
  top:50%;
  left:0;
  height:42px;
  width:0;
  border-radius:11px;
  background:linear-gradient(135deg, rgba(255,255,255,.33), rgba(255,255,255,.20));
  border:1px solid rgba(255,255,255,.34);
  box-shadow:0 8px 16px rgba(12,56,96,.24);
  opacity:0;
  transform:translate3d(0,-50%,0);
  transition:transform .28s ease, width .28s ease, opacity .2s ease;
  z-index:0;
}
.menu.has-indicator .menu-indicator{opacity:1}
.menu a{
  position:relative;
  z-index:1;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:42px;
  font-size:14px;
  line-height:1.1;
  font-weight:700;
  color:rgba(255,255,255,.92);
  padding:0 14px;
  border-radius:12px;
  transition:color .2s ease, transform .2s ease;
}
.menu a:hover{
  color:#fff;
  transform:translateY(-1px);
}
.menu a.active{color:#fff}
.actions{display:flex;gap:10px;align-items:center}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:10px 14px;
  border-radius:14px;
  border:1px solid var(--line);
  background:var(--card);
  color:var(--text);
  font-size:14px;
  font-weight:700;
  cursor:pointer;
  transition:.2s ease;
  white-space:nowrap;
}
.btn:hover{transform:translateY(-1px);box-shadow:var(--shadow)}
.btn.primary{
  background:linear-gradient(135deg,var(--brand),var(--brand2));
  color:#fff;
  border-color:color-mix(in oklab,var(--brand) 55%, white 12%);
}
.btn.whatsapp{background:linear-gradient(135deg,#0f9f5c,#24cc75);border-color:#0f9f5c;color:#fff}
.btn[aria-disabled="true"]{
  pointer-events:none;
  cursor:default;
  opacity:.78;
}
.btn.ghost{opacity:.85}
.btn-soft{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:10px 14px;
  border-radius:12px;
  border:1px solid rgba(22,79,133,.16);
  background:linear-gradient(180deg,#fafdff,#edf6ff);
  color:#21517f;
  font-size:14px;
  font-weight:700;
  cursor:pointer;
  transition:.2s ease;
}
.btn-soft:hover{transform:translateY(-1px);box-shadow:0 12px 24px rgba(24,66,112,.12)}
.btn-small{padding:8px 12px;font-size:13px;border-radius:10px}

.topbar .btn,.topbar .iconbtn{
  border-color:rgba(255,255,255,.30);
  background:rgba(255,255,255,.12);
  color:#fff;
}
.topbar .btn.primary{background:#fff;color:#1e79be;border-color:#fff}

.iconbtn{
  width:42px;
  height:42px;
  border-radius:14px;
  border:1px solid var(--line);
  background:#fff;
  display:grid;
  place-items:center;
  cursor:pointer;
}
.burger{display:none}
.burger span{width:18px;height:2px;background:currentColor;display:block;border-radius:999px}
.burger span+span{margin-top:4px}
.mobile-panel{
  display:none;
  border-top:1px solid rgba(255,255,255,.28);
  padding:12px 0 16px;
  background:rgba(36,133,205,.94);
}
.mobile-panel a{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 12px;
  border-radius:14px;
  color:#fff;
  font-weight:700;
  letter-spacing:.01em;
}
.mobile-panel a::after{
  content:"›";
  opacity:.6;
  transition:transform .2s ease, opacity .2s ease;
}
.mobile-panel a:hover::after,.mobile-panel a.active::after{
  opacity:1;
  transform:translateX(2px);
}
.mobile-panel a:hover,.mobile-panel a.active{
  background:rgba(255,255,255,.18);
}

.hero{padding:62px 0 30px}
.hero-grid{
  display:grid;
  grid-template-columns:minmax(0,1.18fr) minmax(360px,.82fr);
  gap:0;
  align-items:center;
}
.hero-grid > .reveal:first-child{
  position:relative;
  z-index:1;
  padding:34px 80px 34px 32px;
  border-radius:28px;
  border:1px solid var(--line);
  background:#fff;
  box-shadow:var(--shadow);
}
.kicker{
  display:inline-flex;
  gap:8px;
  align-items:center;
  color:#5c7798;
  border:1px solid var(--line);
  background:#f4f9ff;
  padding:8px 12px;
  border-radius:999px;
  font-size:13px;
}
.kicker i{
  width:10px;
  height:10px;
  border-radius:999px;
  background:radial-gradient(circle at 35% 35%, #9bffd2 0 28%, #22c55e 45%, #0f9f5c 100%);
  box-shadow:0 0 0 0 rgba(34,197,94,.55);
  animation:onlinePulse 1.7s ease-out infinite;
}

h1,h2,h3{font-family:'Space Grotesk','Manrope',ui-sans-serif,system-ui,sans-serif;letter-spacing:-.02em}
h1{margin:16px 0 10px;font-size:clamp(34px,4vw,56px);line-height:1.04}
.highlight{color:#2495e6}
.lead{margin:0;color:var(--muted);font-size:16px;line-height:1.6;max-width:68ch}
.hero-ctas{display:flex;gap:12px;margin-top:22px;flex-wrap:wrap}

.mock{
  position:relative;
  z-index:2;
  margin-left:-38px;
  background:transparent;
  border:0;
  border-radius:0;
  box-shadow:none;
  padding:0;
}
.window{
  position:relative;
  border:1px solid rgba(133,205,255,.12);
  background:
    radial-gradient(120% 120% at 50% 0%, rgba(44,124,196,.16), transparent 38%),
    linear-gradient(180deg,rgba(21,59,98,.90),rgba(13,39,66,.96)),
    #14385d;
  border-radius:22px;
  overflow:hidden;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.06),
    inset 0 -1px 0 rgba(109,193,255,.08);
}
.window::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(255,255,255,.04), transparent 24%);
  pointer-events:none;
}
.window-bar{
  display:flex;
  gap:8px;
  align-items:center;
  padding:14px 18px;
  border-bottom:1px solid rgba(143,197,248,.14);
  background:
    linear-gradient(180deg, rgba(29,79,128,.78), rgba(17,52,86,.92));
}
.dot{
  width:10px;
  height:10px;
  border-radius:999px;
  background:rgba(255,255,255,.14);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.14);
}
.dot:nth-child(1){background:linear-gradient(180deg,#ff8e8e,#ff6262)}
.dot:nth-child(2){background:linear-gradient(180deg,#ffd16f,#f8b132)}
.dot:nth-child(3){background:linear-gradient(180deg,#79e7a1,#2fca73)}
.window-body{padding:20px}
.visor-title{
  margin-left:10px;
  color:#b8daf6;
  font-size:13px;
  letter-spacing:.02em;
  font-weight:600;
}

.visor-panel{
  position:relative;
  border-radius:20px;
  border:1px solid rgba(143,197,248,.14);
  background:
    radial-gradient(680px 260px at 10% -10%, rgba(94,200,255,.12), transparent 62%),
    radial-gradient(420px 280px at 100% 0%, rgba(66,171,255,.10), transparent 58%),
    linear-gradient(180deg, #153b63 0%, #102f50 52%, #0d2742 100%);
  min-height:286px;
  padding:22px 28px 24px;
  overflow:hidden;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.05),
    inset 0 0 0 1px rgba(17,78,132,.16);
}
.visor-panel::before{
  content:"";
  position:absolute;
  inset:0;
  background:repeating-linear-gradient(
    to bottom,
    rgba(255,255,255,.038) 0,
    rgba(255,255,255,.038) 1px,
    transparent 1px,
    transparent 4px
  );
  opacity:.18;
  pointer-events:none;
}
.visor-panel::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(135deg, rgba(107,198,255,.06), transparent 32%),
    linear-gradient(180deg, transparent 72%, rgba(4,12,23,.18));
  pointer-events:none;
}
.visor-line{
  min-height:40px;
  font-family:Consolas,Monaco,Menlo,"Courier New",monospace;
  font-size:17px;
  color:#d9f0ff;
  display:flex;
  align-items:center;
  gap:10px;
  padding:8px 14px;
  border-radius:14px;
  background:rgba(8,24,42,.26);
  border:1px solid rgba(119,198,255,.08);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.04);
  pointer-events:none;
}
.prompt{
  color:#67d2ff;
  font-weight:700;
}
#visorTyped{
  color:#f2f9ff;
  font-weight:600;
}
.cursor{
  display:inline-block;
  color:#67d2ff;
  animation:cursorBlink .75s step-end infinite;
}
@keyframes cursorBlink{
  50%{opacity:0}
}
.visor-answer{
  margin:18px 0 0;
  color:#a9c8e6;
  line-height:1.6;
  min-height:76px;
  font-size:15px;
  max-width:34ch;
}
.visor-logo-build{
  margin:18px 0 0;
  display:flex;
  justify-content:center;
  align-items:center;
  min-height:108px;
  padding:14px 18px;
  border-radius:18px;
  background:linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,.08));
  border:1px solid rgba(170,220,255,.18);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.20),
    0 14px 30px rgba(10,34,58,.18);
}
.visor-logo-build img{
  height:78px;
  width:auto;
  filter:
    brightness(1.28)
    contrast(1.12)
    saturate(1.08)
    drop-shadow(0 10px 20px rgba(8,37,66,.28));
}
.visor-actions{
  margin-top:18px;
}

.section{padding:42px 0}
.section-tint{
  background:
    radial-gradient(860px 240px at 18% -10%, rgba(47,157,233,.12), transparent 68%),
    linear-gradient(180deg, rgba(255,255,255,.74), rgba(234,243,255,.92));
  border-top:1px solid rgba(47,157,233,.08);
  border-bottom:1px solid rgba(47,157,233,.08);
}
.section h2{font-size:34px;margin:0 0 8px;color:#173a61}
.section p.desc{color:var(--muted);margin:0 0 22px;line-height:1.6;max-width:75ch}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.grid-2{display:grid;grid-template-columns:repeat(2,1fr);gap:14px}

.solutions-carousel{
  position:relative;
  display:grid;
  grid-template-columns:auto 1fr auto;
  gap:12px;
  align-items:center;
  min-width:0;
}
.solutions-shell{
  overflow:hidden;
  border:1px solid #cfe2f8;
  border-radius:24px;
  background:#fff;
  box-shadow:0 20px 40px rgba(21,66,112,.12);
  padding:0;
}
.solutions-head{
  margin:0;
  padding:16px 20px 14px;
  border-bottom:1px solid #d6e5f8;
  background:linear-gradient(180deg,#f8fbff,#eef6ff);
}
.solutions-stage{
  min-height:calc(100vh - 92px);
  display:flex;
  align-items:center;
}
.solutions-title{
  display:block;
  font-family:'Space Grotesk','Manrope',ui-sans-serif,system-ui,sans-serif;
  font-size:clamp(24px,2.5vw,32px);
  line-height:1.05;
  letter-spacing:-.02em;
  font-weight:800;
  color:#173a61;
}
.solutions-title::after{
  content:"";
  display:block;
  width:56px;
  height:3px;
  margin-top:8px;
  border-radius:999px;
  background:linear-gradient(90deg,#1f8fe0,#5ec8ff);
  box-shadow:none;
}
.solutions-carousel{
  padding:16px 16px 0;
}
.carousel-viewport{
  overflow:hidden;
  touch-action:pan-y;
  cursor:grab;
  min-width:0;
  width:100%;
}
.carousel-viewport.is-dragging{cursor:grabbing}
.carousel-track{
  display:flex;
  transition:transform .45s ease;
  will-change:transform;
  min-width:0;
  width:100%;
}
.carousel-item{
  flex:0 0 100%;
  min-width:100%;
  width:100%;
  max-width:100%;
}
.carousel-nav{
  width:38px;
  height:38px;
  border-radius:999px;
  border:1px solid var(--line);
  background:#fff;
  color:#1d4f83;
  font-size:20px;
  line-height:1;
  cursor:pointer;
}
.carousel-nav:hover{
  box-shadow:var(--shadow);
}
.carousel-dots{
  margin-top:10px;
  margin-bottom:14px;
  display:flex;
  gap:8px;
  justify-content:center;
}
.carousel-dots button{
  width:9px;
  height:9px;
  border-radius:999px;
  border:0;
  background:#b8cee7;
  cursor:pointer;
}
.carousel-dots button.active{
  background:#2f9de9;
}

.card{
  border:1px solid var(--line);
  background:#fff;
  border-radius:var(--radius);
  padding:18px;
  transition:.2s ease;
  position:relative;
  overflow:hidden;
  box-shadow:var(--shadow);
}
.card::before{
  content:"";
  position:absolute;
  inset:0 auto auto 0;
  width:120px;
  height:120px;
  background:radial-gradient(circle, rgba(94,200,255,.14), transparent 70%);
  pointer-events:none;
}
.card:hover{transform:translateY(-2px);box-shadow:0 18px 34px rgba(24,66,112,.18)}
.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:12px;
  font-weight: bold;
  color:#ffffff;
  border:1px solid var(--line);
  background:var(--brand);
  padding:6px 10px;
  border-radius:999px;
  margin-bottom:10px;
}
.badge i{
  width:10px;
  height:10px;
  border-radius:999px;
  background:radial-gradient(circle at 35% 35%, #9bffd2 0 28%, #22c55e 45%, #0f9f5c 100%);
  box-shadow:0 0 0 0 rgba(34,197,94,.55);
  animation:onlinePulse 1.7s ease-out infinite;
}
.card h3{margin:0 0 8px;font-size:18px;color:#173a61}
.card p,.card ul{margin:0;color:var(--muted);line-height:1.6}
.card ul{margin-top:12px;padding-left:18px}
.card ul li{margin:4px 0}
.card-media{
  width:100%;
  border-radius:14px;
  border:1px solid var(--line);
  overflow:hidden;
  background:#e8f2ff;
  margin-top:8px;
}
.card-media img,.card-media video,.card-media iframe{
  width:100%;
  min-height:180px;
  display:block;
  object-fit:cover;
}
.section-head{
  display:grid;
  grid-template-columns:minmax(0,1.15fr) minmax(280px,.85fr);
  gap:18px;
  align-items:end;
  margin-bottom:20px;
}
.section-head .kicker{
  margin-bottom:10px;
}
.custom-showcase{
  align-items:stretch;
}
.custom-case{
  padding:18px;
  background:#fff;
  box-shadow:0 14px 28px rgba(20,62,106,.10);
}
.solution-card-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:18px;
}
.solution-card-copy{
  flex:1 1 520px;
  min-width:0;
}
.solution-card-copy h3{
  margin:8px 0 10px;
}
.solution-card-copy p{
  margin:0;
}
.case-points-side{
  flex:0 0 260px;
  margin-top:0;
  justify-content:flex-end;
  align-content:flex-start;
}
.custom-case-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:8px;
}
.case-tag{
  display:inline-flex;
  align-items:center;
  min-height:32px;
  padding:6px 12px;
  border-radius:999px;
  background:rgba(15,84,138,.08);
  border:1px solid rgba(20,84,138,.12);
  color:#17456f;
  font-size:12px;
  font-weight:800;
  letter-spacing:.04em;
  text-transform:uppercase;
}
.custom-media-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr);
  gap:10px;
  margin-top:12px;
}
.custom-media-frame{
  margin:0;
  min-height:0;
  background:#f7fbff;
  box-shadow:none;
}
.custom-media-frame img,.custom-media-frame video{
  min-height:0;
}
.presentation-thumb{
  position:relative;
  padding:12px;
  aspect-ratio:16/9;
  background:#f5f9fe;
  border-color:rgba(84,155,220,.18);
  box-shadow:none;
}
.presentation-thumb::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(94,200,255,.08), transparent 40%);
  pointer-events:none;
}
.presentation-thumb img{
  width:82%;
  height:100%;
  margin:0 auto;
  border-radius:10px;
  object-fit:contain;
  background:#eef5fd;
  box-shadow:0 8px 18px rgba(17,53,89,.10);
}
.media-caption{
  position:absolute;
  top:14px;
  left:14px;
  z-index:1;
  padding:6px 9px;
  border-radius:999px;
  background:rgba(17,53,89,.72);
  border:1px solid rgba(255,255,255,.12);
  backdrop-filter:blur(12px);
  color:#eff8ff;
  font-size:10px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.video-launch-btn{
  position:absolute;
  left:14px;
  right:14px;
  bottom:14px;
  z-index:1;
  justify-content:center;
  min-height:36px;
  font-size:12px;
  touch-action:manipulation;
  border-color:#d5e5f7;
  background:rgba(255,255,255,.94);
  color:#17456f;
  box-shadow:0 6px 16px rgba(16,70,120,.10);
}
.video-launch-btn:hover{
  transform:translateY(-1px);
  box-shadow:0 10px 18px rgba(16,70,120,.14);
}
.featured-product{
  border:1px solid rgba(47,157,233,.22);
  border-left:1px solid rgba(47,157,233,.22);
  background:#fff;
}
.featured-product h3{font-size:36px;color:#14385f}
.featured-product p{color:#35597f;font-size:17px;max-width:55ch}
.card-cta{margin-top:14px;width:max-content}
.solutions-carousel .carousel-item{
  min-height:340px;
}
.solutions-carousel .card{
  min-height:388px;
  display:flex;
  flex-direction:column;
  gap:16px;
}
.solutions-carousel .card p{
  flex:1;
}
.solutions-carousel .featured-product{
  min-height:400px;
}
.solutions-carousel .card h3{
  font-size:32px;
  line-height:1.1;
}
.solutions-carousel .card p{
  font-size:18px;
  line-height:1.55;
}
.solutions-carousel .case-points{
  margin-top:0;
  gap:8px;
}
.solutions-carousel .case-points span{
  font-size:12px;
  padding:7px 10px;
}
.solutions-carousel .card-cta{
  margin-top:12px;
}
.solution-icon{
  width:42px;
  height:42px;
  border-radius:14px;
  display:grid;
  place-items:center;
  margin-bottom:10px;
  background:linear-gradient(135deg,#edf6ff,#d7ebff);
  color:#155086;
  border:1px solid rgba(47,157,233,.14);
  box-shadow:none;
  font-family:'Space Grotesk','Manrope',ui-sans-serif,system-ui,sans-serif;
  font-size:14px;
  font-weight:700;
  letter-spacing:.06em;
}
.presentation-modal{
  position:fixed;
  inset:0;
  z-index:2000;
  display:none;
  align-items:center;
  justify-content:center;
  padding:24px;
  background:rgba(4,16,29,.84);
  backdrop-filter:blur(10px);
}
.presentation-modal.is-open{
  display:flex;
}
.presentation-modal-dialog{
  width:min(1180px, 100%);
  border-radius:24px;
  overflow:hidden;
  border:1px solid rgba(150,198,240,.18);
  background:
    radial-gradient(700px 180px at 0% 0%, rgba(94,200,255,.12), transparent 58%),
    linear-gradient(180deg,#081b2d,#0d2942);
  box-shadow:0 30px 70px rgba(0,0,0,.38);
}
.presentation-modal-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:16px 18px;
  color:#e8f5ff;
}
.presentation-modal-title{
  margin:0;
  font-size:16px;
  font-weight:800;
}
.presentation-modal-close{
  width:42px;
  height:42px;
  border:1px solid rgba(255,255,255,.14);
  border-radius:999px;
  background:rgba(255,255,255,.08);
  color:#fff;
  font-size:24px;
  line-height:1;
  cursor:pointer;
}
.presentation-modal-body{
  padding:0 18px 18px;
}
.presentation-modal-player{
  width:100%;
  max-height:calc(100vh - 150px);
  min-height:min(72vh, 680px);
  display:block;
  border-radius:18px;
  background:#020b14;
  object-fit:contain;
  box-shadow:0 22px 50px rgba(0,0,0,.34);
}
.presentation-modal-player::-webkit-media-controls-panel{
  background:linear-gradient(180deg, rgba(8,27,45,.82), rgba(13,41,66,.98));
}
.case-points{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:16px;
}
.case-points span{
  padding:8px 12px;
  border-radius:999px;
  background:#eef6ff;
  border:1px solid #d3e7fb;
  color:#29547d;
  font-size:13px;
  font-weight:700;
}
.custom-flow{
  margin-top:16px;
}
.custom-flow-card{
  min-height:100%;
  background:linear-gradient(180deg,#ffffff,#f8fbff);
}
.featured-label{
  display:inline-flex;
  font-size:11px;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-weight:800;
  color:#042949;
  background:linear-gradient(135deg,#52bbff,#8ad9ff);
  border-radius:999px;
  padding:6px 10px;
  margin-bottom:10px;
}

.split{display:grid;grid-template-columns:1fr 1fr;gap:18px;align-items:start}
.split > *{min-width:0}
.panel{
  border:1px solid var(--line);
  background:#fff;
  border-radius:22px;
  padding:18px;
  box-shadow:var(--shadow);
  min-width:0;
}
.panel-soft{
  background:
    radial-gradient(580px 180px at 0% 0%, rgba(47,157,233,.14), transparent 62%),
    linear-gradient(180deg,#fbfdff,#f2f8ff);
}
.panel-dark{
  color:#d8ebff;
  border-color:rgba(124,183,234,.18);
  background:
    radial-gradient(620px 180px at 10% -10%, rgba(94,200,255,.16), transparent 60%),
    linear-gradient(160deg,#113a65,#0d2e4f);
}
.panel-dark h2,.panel-dark h3{color:#fff}
.panel-dark .desc,.panel-dark p,.panel-dark li,.panel-dark .small{color:#bed7f2}
.capsule-list{
  display:grid;
  gap:10px;
}
.capsule-item{
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding:14px 15px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.06);
}
.capsule-step{
  width:32px;
  height:32px;
  border-radius:999px;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg,#5ec8ff,#90dbff);
  color:#08345c;
  font-weight:800;
  flex:0 0 auto;
}
.capsule-copy b{
  display:block;
  margin-bottom:4px;
  color:#fff;
}
.capsule-copy span{
  color:#c1daf3;
  font-size:14px;
  line-height:1.55;
}

.form{display:grid;gap:12px}
.field{display:grid;gap:6px}
label{font-size:13px;color:#5f7ea0}
input,textarea,select{
  background:#f7fbff;
  border:1px solid var(--line);
  border-radius:14px;
  padding:12px;
  color:var(--text);
  font-size:14px;
  outline:none;
  width:100%;
  max-width:100%;
  min-width:0;
}
textarea{min-height:120px;resize:vertical}
input:focus,textarea:focus,select:focus{border-color:color-mix(in oklab,var(--brand) 55%, white 12%)}
.form-note{margin:-2px 0 6px;color:#6d87a7;font-size:13px;line-height:1.5}
.captcha-box{
  display:grid;
  gap:10px;
  padding:14px;
  border-radius:18px;
  border:1px solid rgba(47,157,233,.16);
  background:
    radial-gradient(420px 120px at 0% 0%, rgba(94,200,255,.15), transparent 65%),
    linear-gradient(180deg,#fbfeff,#eef7ff);
}
.captcha-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
}
.captcha-label{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:#184b79;
  font-weight:800;
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.06em;
}
.captcha-label::before{
  content:"";
  width:9px;
  height:9px;
  border-radius:999px;
  background:linear-gradient(135deg,#2f9de9,#5ec8ff);
  box-shadow:0 0 0 6px rgba(47,157,233,.10);
}
.captcha-question{
  color:#224f7b;
  font-size:15px;
  font-weight:700;
}
.captcha-status{
  min-height:20px;
  color:#6a84a5;
}
.contact-form .btn.primary,
.lead-form .btn.primary{
  min-height:48px;
}
.contact-cta-note{
  margin-top:10px;
  color:#6884a6;
  font-size:13px;
}

.toast{
  position:fixed;
  right:18px;
  bottom:94px;
  z-index:9999;
  background:#ffffff;
  border:1px solid var(--line);
  padding:12px 14px;
  border-radius:16px;
  color:var(--text);
  box-shadow:var(--shadow);
  display:none;
}

.whatsapp-float{
  position:fixed;
  right:20px;
  bottom:20px;
  width:54px;
  height:54px;
  border-radius:999px;
  background:linear-gradient(135deg,#0f9f5c,#24cc75);
  color:#fff;
  display:grid;
  place-items:center;
  box-shadow:0 14px 32px rgba(15,159,92,.35);
  z-index:1200;
  transition:transform .2s ease, box-shadow .2s ease;
}
.whatsapp-float[aria-disabled="true"]{
  pointer-events:none;
  cursor:default;
}
.whatsapp-float:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 34px rgba(15,159,92,.42);
}
.whatsapp-float svg,
.whatsapp-float img{
  width:25px;
  height:25px;
}
.whatsapp-float svg{
  fill:currentColor;
}
.whatsapp-float img{
  display:block;
  object-fit:contain;
}
.whatsapp-float--soon{
  width:auto;
  min-width:126px;
  padding:0 18px;
  font-size:12px;
  font-weight:800;
  letter-spacing:.16em;
}
.whatsapp-float--soon span{
  white-space:nowrap;
}

.footer{padding:28px 0;border-top:1px solid var(--line);color:#5d7697}
.footer-grid{display:grid;grid-template-columns:1.3fr 1fr 1fr;gap:14px}
.footer a{color:#4f6788}
.footer a:hover{color:#1b4b7c}
.small{font-size:13px;line-height:1.6}
.footer-brand{display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;gap:10px}

.reveal{opacity:0;transform:translateY(10px);transition:.6s ease}
.reveal.show{opacity:1;transform:none}

.tabs{border:1px solid var(--line);border-radius:20px;background:#fff;padding:14px}
.tab-buttons{display:flex;gap:10px;flex-wrap:wrap;margin-bottom:12px}
.tab-btn{
  border:1px solid var(--line);
  background:#f4f9ff;
  color:#557392;
  border-radius:999px;
  padding:9px 14px;
  font-weight:700;
  cursor:pointer;
  transition:.2s ease;
}
.tab-btn.active{color:#fff;background:linear-gradient(135deg,var(--brand),var(--brand2));border-color:transparent;box-shadow:0 8px 18px rgba(47,157,233,.22)}
.tab-panels{display:grid}
.tab-panel{display:none}
.tab-panel.active{display:block}
.tab-panel .card{margin-top:0}
.page-accent{
  position:relative;
}
.page-accent::before{
  content:"";
  position:absolute;
  inset:auto 0 100% 0;
  height:28px;
  background:linear-gradient(180deg, transparent, rgba(47,157,233,.08));
}
.mobile-panel a::after{content:">"}

@media (max-width:980px){
  .nav{
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:12px;
  }
  .brand{
    padding:8px 22px;
  }
  .brand img{
    height:64px;
  }
  .actions{
    width:100%;
    justify-content:center;
  }
  .hero-grid{grid-template-columns:1fr}
  .mock{
    margin-left:0;
    margin-top:-6px;
  }
  .grid-3,.grid-2,.split,.footer-grid{grid-template-columns:1fr}
  .section-head{grid-template-columns:1fr;align-items:start}
  .custom-media-grid{grid-template-columns:1fr}
  .menu{display:none}
  .burger{display:inline-grid;place-items:center}
  .featured-product h3{font-size:26px}
  .featured-product p{font-size:17px}
  .hero-grid > .reveal:first-child{padding:18px}
  .solutions-carousel{grid-template-columns:1fr}
  .solutions-carousel{padding:14px 14px 0}
  .carousel-nav{display:none}
  .solutions-carousel .card,
  .solutions-carousel .carousel-item,
  .solutions-carousel .featured-product{min-height:320px}
  .solutions-head{padding:14px 16px}
  .solutions-title{font-size:26px}
  .solutions-title::after{width:54px}
  .solutions-stage{min-height:auto}
  .solution-card-top{
    flex-direction:column;
    align-items:flex-start;
  }
  .case-points-side{
    flex:1 1 auto;
    justify-content:flex-start;
  }
  :root{--max:90%}
}

@media (min-width:981px) and (max-width:1366px){
  :root{--max:86%}
  .hero-grid{grid-template-columns:minmax(0,1.08fr) minmax(320px,.92fr)}
  .hero-grid > .reveal:first-child{padding:24px 62px 24px 24px}
  h1{font-size:clamp(30px,3.6vw,48px);line-height:1.06}
  .lead{font-size:15px;max-width:60ch}
  .hero-ctas .btn{padding:9px 12px;font-size:13px}
  .visor-panel{min-height:230px}
  .mock{margin-left:-28px}
}

@media (min-width:981px) and (max-width:1180px){
  .hero-grid{grid-template-columns:1fr}
  .mock{max-width:680px}
}

@media (max-width:640px){
  .tab-buttons{display:grid;grid-template-columns:1fr}
  .tab-btn{width:100%;text-align:left}
  .whatsapp-float{
    width:50px;
    height:50px;
    right:14px;
    bottom:14px;
  }
  .whatsapp-float--soon{
    width:auto;
    min-width:110px;
    padding:0 14px;
    font-size:11px;
  }
  .whatsapp-float svg{
    width:23px;
    height:23px;
  }
  .toast{
    right:14px;
    bottom:78px;
  }
}

@media (max-width:392px){
  .container{
    width:calc(100% - 24px);
  }
  .brand{
    padding:8px 18px;
  }
  .brand img{
    height:58px;
  }
  .topbar .actions .btn{
    display:none;
  }
  .split > *,
  .panel,
  .card,
  .grid-2 > *,
  .grid-3 > *{
    min-width:0;
  }
  .solutions-shell,
  .solutions-carousel,
  .carousel-viewport,
  .carousel-track,
  .carousel-item{
    min-width:0;
    max-width:100%;
  }
  .solutions-carousel{
    padding:10px 10px 0;
    overflow:hidden;
  }
  .solutions-carousel .card{
    min-height:0;
  }
  .hero-ctas .btn,
  .form .btn,
  .card-cta{
    width:100%;
    max-width:100%;
    white-space:normal;
    text-align:center;
  }
  .card-cta{
    width:100%;
  }
  .footer .small,
  .footer a,
  .contact-cta-note,
  .captcha-question,
  .capsule-copy,
  .panel p,
  .panel h2,
  .panel h3{
    overflow-wrap:anywhere;
    word-break:break-word;
  }
  .whatsapp-float--soon{
    min-width:0;
    padding:0 12px;
    right:10px;
    bottom:10px;
    letter-spacing:.12em;
  }
}

@media (prefers-reduced-motion: reduce){
  *,*::before,*::after{animation:none !important;transition:none !important;scroll-behavior:auto !important}
}

@keyframes onlinePulse{
  0%{box-shadow:0 0 0 0 rgba(34,197,94,.55)}
  70%{box-shadow:0 0 0 10px rgba(34,197,94,0)}
  100%{box-shadow:0 0 0 0 rgba(34,197,94,0)}
}



/* WhatsApp and video CTA polish */
.whatsapp-float{
  background:transparent;
  border:0;
  box-shadow:none;
  width:auto;
  height:auto;
  padding:0;
  overflow:visible;
}
.whatsapp-float::before,
.whatsapp-float::after{
  content:none;
}
.whatsapp-float:hover{
  transform:translateY(-2px) scale(1.04);
  box-shadow:none;
}
.whatsapp-float img{
  width:42px;
  height:42px;
  filter:drop-shadow(0 8px 18px rgba(15,159,92,.22));
}
.video-launch-btn{
  border-color:#1565c0;
  background:linear-gradient(180deg,#2f8ff0 0%,#1565c0 100%);
  color:#ffffff;
  box-shadow:0 12px 24px rgba(21,101,192,.28);
}
.video-launch-btn:hover{
  background:linear-gradient(180deg,#459cf3 0%,#0f5ab1 100%);
  color:#ffffff;
  box-shadow:0 16px 28px rgba(21,101,192,.34);
}
.hidden{display:none !important}
.public-hero{
  display:grid;
  grid-template-columns:minmax(0,1.15fr) minmax(320px,.85fr);
  gap:22px;
  align-items:stretch;
  padding:28px;
  border:1px solid rgba(22,82,138,.12);
  border-radius:28px;
  background:
    radial-gradient(700px 240px at 0% 0%, rgba(94,200,255,.14), transparent 58%),
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(244,249,255,.96));
  box-shadow:0 24px 50px rgba(17,52,95,.12);
}
.public-hero-copy{
  display:flex;
  flex-direction:column;
  justify-content:center;
  min-height:280px;
}
.public-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  width:max-content;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(47,157,233,.10);
  border:1px solid rgba(47,157,233,.18);
  color:#21517f;
  font-size:12px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.public-eyebrow::before{
  content:"";
  width:8px;
  height:8px;
  border-radius:999px;
  background:linear-gradient(135deg,#23c16b,#66e7a0);
  box-shadow:0 0 0 6px rgba(35,193,107,.10);
}
.public-hero-copy h1{
  margin:18px 0 12px;
  font-size:clamp(38px,5vw,58px);
  line-height:1;
  max-width:10ch;
}
.public-hero-copy .lead{
  max-width:58ch;
  font-size:17px;
}
.public-hero-search{
  align-self:center;
  padding:22px;
  border-radius:22px;
  border:1px solid rgba(22,82,138,.10);
  background:
    linear-gradient(180deg, rgba(255,255,255,.95), rgba(239,247,255,.92));
  box-shadow:inset 0 1px 0 rgba(255,255,255,.9), 0 14px 34px rgba(22,82,138,.10);
}
.public-hero-search label{
  display:block;
  margin-bottom:10px;
  color:#1b4d7d;
  font-size:12px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.public-hero-search input{
  min-height:58px;
  border-radius:18px;
  padding:16px 18px;
  font-size:16px;
  background:#fff;
}
.public-section-head{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:14px;
  margin-bottom:20px;
}
.public-section-head h2{
  margin:0;
}
.public-reports-grid{
  align-items:stretch;
  gap:10px;
}
.public-reports-titles{
  display:grid;
  gap:8px;
}
.report-card{
  display:flex;
  flex-direction:column;
  gap:8px;
  padding:16px;
  border-radius:18px;
}
.public-reports-titles .report-card{
  padding:0 !important;
  overflow:hidden;
  border-radius:14px;
  box-shadow:none;
  border-color:rgba(18,68,120,.12);
  min-height:0;
  background:linear-gradient(180deg,#ffffff,#f9fcff);
}
.public-reports-titles .report-card::before{
  display:none;
}
.public-reports-titles .report-card h3{
  margin:0;
}
.public-reports-titles .report-card a{
  display:block;
  padding:12px 18px;
  color:#173a61;
  line-height:1.3;
  font-weight:700;
}
.public-reports-titles .report-card a:hover{
  color:#1f8fe0;
  background:linear-gradient(180deg,#ffffff,#f5faff);
}
.report-card-media{
  display:block;
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(18,68,120,.12);
  background:
    radial-gradient(320px 120px at 20% 0%, rgba(94,200,255,.16), transparent 60%),
    #edf6ff;
}
.report-card-media img{
  width:100%;
  aspect-ratio:16/9;
  object-fit:cover;
}
.report-card h3{
  font-size:clamp(16px,1.2vw,20px);
  line-height:1.16;
}
.report-card p{
  color:#56718f;
  flex:1;
}
.report-card .hero-ctas{
  margin-top:auto;
}
.public-report-cover{
  width:100%;
  border-radius:18px;
  border:1px solid rgba(18,68,120,.10);
  background:#edf6ff;
  object-fit:cover;
}
.public-report-meta{
  display:grid;
  gap:10px;
  color:#476684;
  font-size:14px;
  line-height:1.6;
}
.report-detail-shell{
  padding-top:48px;
  padding-bottom:42px;
}
.report-detail-grid{
  display:grid;
  grid-template-columns:minmax(320px,.82fr) minmax(0,1.18fr);
  gap:22px;
  align-items:start;
}
.report-detail-cover-panel{
  padding:18px;
  position:sticky;
  top:104px;
}
.report-detail-content{
  padding:26px 28px;
}
.report-detail-kicker{
  display:inline-flex;
  align-items:center;
  padding:7px 11px;
  border-radius:999px;
  border:1px solid rgba(21,84,139,.14);
  background:#f2f8ff;
  color:#2d5a87;
  font-size:12px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.report-detail-content h1,
#publicReportTitle{
  margin:12px 0 14px;
  font-size:clamp(24px,2.8vw,38px);
  line-height:1.08;
  overflow-wrap:anywhere;
}
.report-detail-content .desc,
#publicReportDescription{
  margin:0;
  font-size:16px;
  max-width:none;
  width:100%;
  white-space:pre-wrap;
  overflow-wrap:anywhere;
  line-height:1.72;
}
.report-detail-meta{
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
}
.report-detail-meta div{
  display:grid;
  gap:6px;
  padding:14px 16px;
  border-radius:16px;
  border:1px solid rgba(21,84,139,.12);
  background:#f8fbff;
}
.report-detail-meta b{
  font-size:12px;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:#6180a3;
}
.report-detail-meta span{
  font-size:18px;
  line-height:1.4;
  color:#1f4872;
  word-break:break-word;
}
.report-detail-actions{
  margin-top:22px;
}
.row-between{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.public-admin-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.public-admin-list{
  display:grid;
  gap:14px;
}
.admin-report-item{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:16px;
  align-items:start;
}
.btn-soft.danger{
  background:linear-gradient(180deg,#fff5f5,#ffe8e8);
  border-color:rgba(160,43,43,.18);
  color:#8b1f1f;
}
@media (max-width:640px){
  .public-hero{
    grid-template-columns:1fr;
    padding:18px;
    border-radius:22px;
  }
  .public-hero-copy{
    min-height:0;
  }
  .public-hero-copy h1{
    max-width:none;
    font-size:clamp(34px,11vw,52px);
  }
  .public-hero-search{
    padding:16px;
    border-radius:18px;
  }
  .public-section-head{
    margin-bottom:16px;
  }
  .public-reports-titles{
    gap:7px;
  }
  .public-reports-titles .report-card a{
    padding:11px 14px;
  }
  .report-card h3{
    font-size:17px;
  }
  .admin-report-item{
    grid-template-columns:1fr;
  }
  .report-detail-grid{
    grid-template-columns:1fr;
  }
  .report-detail-cover-panel{
    position:static;
  }
  .report-detail-content{
    padding:22px;
  }
  .report-detail-meta{
    grid-template-columns:1fr;
  }
  .whatsapp-float img{
    width:38px;
    height:38px;
  }
}
