:root {
  --bg: #030813;
  --bg-2: #07111f;
  --bg-3: #0c1728;
  --text: #eef7ff;
  --muted: #b7c6d8;
  --muted-dark: #44546a;
  --dark-text: #07111f;
  --white: #ffffff;
  --paper: #f4f7fb;
  --paper-2: #ffffff;
  --line: rgba(255,255,255,.14);
  --line-dark: rgba(7,17,31,.12);
  --brand: #19d6ff;
  --brand-2: #4c75ff;
  --brand-3: #b25cff;
  --container: 1680px;
  --header: 112px;
  --radius-xl: 34px;
  --radius-lg: 24px;
  --shadow: 0 24px 80px rgba(0,0,0,.22);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.container { width: min(100% - 64px, var(--container)); margin-inline: auto; }
.skip-link { position:absolute; top:-60px; left:16px; z-index:100; background:var(--brand); color:var(--dark-text); padding:10px 14px; border-radius:999px; }
.skip-link:focus { top:16px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  background: rgba(3,8,19,.91);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.09);
}
.topline { height: 30px; border-bottom: 1px solid rgba(255,255,255,.07); color: #b9cadb; font-size: 12px; }
.topline-inner { height: 30px; display:flex; align-items:center; justify-content:space-between; gap:16px; }
.topline a { color: var(--brand); font-weight: 800; }
.header-inner { height: 82px; display:flex; align-items:center; justify-content:space-between; gap:28px; }
.brand { display:inline-flex; align-items:center; flex: 0 0 auto; }
.brand-logo { height: 82px; width:auto; object-fit:contain; }
.main-nav { display:flex; align-items:center; gap:28px; color:#dbe8f4; font-weight:800; font-size:15px; }
.main-nav > a, .nav-item > a { padding: 18px 0; opacity:.94; }
.main-nav a:hover { color: var(--brand); }
.nav-cta { padding: 12px 18px !important; border-radius:999px; color:#06111f !important; background:linear-gradient(135deg, var(--brand), var(--brand-3)); box-shadow:0 12px 30px rgba(25,214,255,.22); }
.has-mega { position:relative; }
.mega-menu {
  position:absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 560px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
  padding:24px;
  border-radius:22px;
  background:rgba(7,17,31,.98);
  border:1px solid rgba(255,255,255,.12);
  box-shadow:var(--shadow);
  opacity:0;
  pointer-events:none;
  transition:.2s ease;
}
.has-mega:hover .mega-menu, .has-mega:focus-within .mega-menu { opacity:1; transform: translateX(-50%) translateY(0); pointer-events:auto; }
.mega-menu strong { display:block; color:var(--brand); font-size:12px; letter-spacing:.12em; text-transform:uppercase; margin-bottom:10px; }
.mega-menu a { display:block; padding:9px 0; color:#dce9f5; font-weight:700; }
.nav-toggle { display:none; }

.hero { position:relative; padding-top: calc(var(--header) + 70px); padding-bottom: 88px; min-height:100svh; overflow:hidden; }
.hero-bg {
  position:absolute; inset:0;
  background:
    radial-gradient(circle at 74% 22%, rgba(76,117,255,.22), transparent 36rem),
    radial-gradient(circle at 15% 35%, rgba(25,214,255,.16), transparent 32rem),
    linear-gradient(180deg, rgba(3,8,19,.55), #030813 95%);
  pointer-events:none;
}
.hero-bg::before {
  content:"";
  position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(to bottom, #000, transparent 90%);
}
.hero-grid { position:relative; display:grid; grid-template-columns:minmax(480px,.78fr) minmax(780px,1.22fr); gap: clamp(48px, 5vw, 96px); align-items:center; }
.eyebrow { margin:0 0 14px; color:var(--brand); text-transform:uppercase; letter-spacing:.18em; font-size:12px; font-weight:950; }
.eyebrow.dark { color:#006d91; }
h1, h2, h3, p { margin-top:0; }
h1 { font-size: clamp(52px, 4.9vw, 86px); line-height:.96; letter-spacing:-.06em; margin-bottom:26px; max-width:860px; }
h2 { font-size: clamp(36px, 3.6vw, 62px); line-height:1.03; letter-spacing:-.045em; margin-bottom:20px; }
h3 { font-size: clamp(22px, 1.6vw, 30px); line-height:1.18; letter-spacing:-.025em; margin-bottom:12px; }
.hero-text { font-size: clamp(18px, 1.35vw, 23px); color:#d2e0ee; max-width:760px; margin-bottom:34px; }
.hero-actions, .training-actions { display:flex; flex-wrap:wrap; gap:14px; align-items:center; }
.btn { display:inline-flex; align-items:center; justify-content:center; min-height:52px; padding:14px 24px; border-radius:999px; font-weight:900; border:1px solid transparent; transition:.2s ease; cursor:pointer; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color:#06111f; background:linear-gradient(135deg,var(--brand),var(--brand-3)); box-shadow:0 16px 40px rgba(25,214,255,.22); }
.btn-secondary { background:rgba(255,255,255,.08); border-color:rgba(255,255,255,.18); color:#f4fbff; }
.btn-dark { background:#07111f; color:#fff; border-color:#17263a; }
.btn.full { width:100%; }
.hero-proof { display:flex; flex-wrap:wrap; gap:10px; margin-top:30px; }
.hero-proof span, .tags span { display:inline-flex; align-items:center; border:1px solid rgba(255,255,255,.14); background:rgba(255,255,255,.06); border-radius:999px; padding:8px 13px; font-size:13px; font-weight:850; color:#d9e7f5; }
.hero-visual { margin:0; overflow:hidden; border-radius:36px; border:1px solid rgba(25,214,255,.22); background:rgba(255,255,255,.035); box-shadow:0 36px 100px rgba(0,0,0,.4), 0 0 80px rgba(25,214,255,.10); }
.hero-visual img { width:100%; aspect-ratio:16/9; object-fit:cover; transform:scale(1.015); }

.stats-bar { padding:28px 0; background:#06101c; border-block:1px solid rgba(255,255,255,.1); }
.stats-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.stats-grid div { padding:20px; border-radius:22px; background:rgba(255,255,255,.045); border:1px solid rgba(255,255,255,.08); }
.stats-grid strong { display:block; color:var(--brand); font-size:22px; letter-spacing:-.02em; }
.stats-grid span { display:block; color:var(--muted); margin-top:4px; font-size:14px; }

.section { padding:110px 0; }
.light-section { background:var(--paper); color:var(--dark-text); }
.product-section, .applications-section, .method-section, .audience-section, .contact-section { background:var(--bg); }
.section-head { max-width:960px; margin-bottom:54px; }
.section-head.center { text-align:center; margin-inline:auto; }
.section-head p { color:var(--muted); font-size:19px; }
.dark-head p, .product-copy p, .training-card p { color:var(--muted-dark); font-size:19px; }
.product-hero { display:grid; grid-template-columns:.8fr 1.2fr; gap:58px; align-items:center; }
.check-list { display:grid; gap:12px; margin-top:28px; font-weight:800; color:#17324c; }
.platform-card { border-radius:36px; overflow:hidden; border:1px solid var(--line-dark); box-shadow:0 30px 80px rgba(7,17,31,.18); background:#07111f; }
.platform-card img { width:100%; aspect-ratio:16/9; object-fit:cover; }

.product-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:26px; }
.product-card { background:#101b2b; border:1px solid rgba(255,255,255,.12); border-radius:30px; overflow:hidden; box-shadow:0 24px 70px rgba(0,0,0,.22); transition:.2s ease; }
.product-card:hover { transform:translateY(-6px); border-color:rgba(25,214,255,.32); }
.product-card img { width:100%; aspect-ratio:1/1; object-fit:cover; background:#030813; }
.product-card-copy { padding:28px; }
.product-card-copy p { color:var(--muted); margin-bottom:0; }
.product-kicker { display:block; color:var(--brand); text-transform:uppercase; letter-spacing:.13em; font-size:12px; font-weight:950; margin-bottom:12px; }
.product-card-copy a { display:inline-flex; margin-top:18px; color:var(--brand); font-weight:950; }
.product-large { grid-column:span 2; display:grid; grid-template-columns:.9fr 1.1fr; align-items:center; }
.product-large img { height:100%; min-height:420px; aspect-ratio:auto; }

.workflow-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.workflow-grid article { background:#fff; border:1px solid var(--line-dark); border-radius:26px; padding:28px; box-shadow:0 18px 50px rgba(7,17,31,.08); }
.workflow-grid span { display:inline-flex; color:#006d91; font-weight:950; margin-bottom:18px; }
.workflow-grid p { color:var(--muted-dark); }

.audience-section { background:linear-gradient(180deg,#030813,#06101c); }
.audience-layout { display:grid; grid-template-columns:.8fr 1.2fr; gap:60px; align-items:start; }
.audience-list { display:grid; grid-template-columns:repeat(2,1fr); gap:18px; }
.audience-list div { padding:26px; border-radius:24px; background:rgba(255,255,255,.055); border:1px solid rgba(255,255,255,.1); }
.audience-list strong { display:block; font-size:21px; margin-bottom:8px; }
.audience-list span { color:var(--muted); }

.app-showcase { display:grid; grid-template-columns:1.25fr repeat(2,.875fr); gap:26px; }
.app-feature, .app-tile { display:block; border-radius:30px; overflow:hidden; border:1px solid rgba(255,255,255,.12); background:#101b2b; box-shadow:0 24px 70px rgba(0,0,0,.22); transition:.2s ease; }
.app-feature:hover, .app-tile:hover { transform:translateY(-6px); border-color:rgba(25,214,255,.32); }
.app-feature { grid-row:span 2; }
.app-feature img, .app-tile img { width:100%; aspect-ratio:1/1; object-fit:cover; }
.app-feature div, .app-tile div { padding:24px 26px; }
.app-feature strong, .app-tile strong { display:block; font-size:24px; margin-bottom:6px; }
.app-feature span, .app-tile span { color:var(--muted); }

.method-section { background:#06101c; }
.method-layout { display:grid; grid-template-columns:.72fr 1.28fr; gap:60px; }
.method-steps { display:grid; grid-template-columns:repeat(2,1fr); gap:14px; }
.method-steps div { padding:18px 20px; border-radius:18px; background:rgba(255,255,255,.055); border:1px solid rgba(255,255,255,.1); font-weight:850; color:#e8f4ff; }
.method-steps span { color:var(--brand); margin-right:10px; }

.training-card { display:grid; grid-template-columns:1fr auto; gap:30px; align-items:center; border-radius:36px; padding:46px; background:#fff; border:1px solid var(--line-dark); box-shadow:0 30px 80px rgba(7,17,31,.10); }

.contact-section { background:radial-gradient(circle at 15% 20%, rgba(25,214,255,.18), transparent 26rem), radial-gradient(circle at 90% 70%, rgba(178,92,255,.16), transparent 26rem), #030813; }
.contact-grid { display:grid; grid-template-columns:.9fr 1.1fr; gap:62px; align-items:start; }
.contact-copy p { color:var(--muted); font-size:19px; }
.contact-points { display:grid; gap:12px; margin-top:28px; font-weight:800; color:#d9e8f5; }
.lead-form { display:grid; gap:16px; padding:30px; border-radius:30px; background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.14); box-shadow:var(--shadow); }
.lead-form label { display:grid; gap:8px; font-weight:850; color:#dce9f5; }
.lead-form input, .lead-form select, .lead-form textarea { width:100%; color:#eef7ff; background:rgba(4,12,24,.88); border:1px solid rgba(255,255,255,.16); border-radius:15px; padding:14px 15px; outline:none; }
.lead-form textarea { min-height:120px; resize:vertical; }
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus { border-color:rgba(25,214,255,.62); box-shadow:0 0 0 4px rgba(25,214,255,.12); }
.form-note { color:var(--muted); font-size:13px; margin:0; }
.form-note.success { color:var(--brand); }

.site-footer { padding:60px 0 28px; background:#02060f; border-top:1px solid rgba(255,255,255,.1); }
.footer-grid { display:grid; grid-template-columns:1.2fr repeat(3,1fr); gap:40px; }
.footer-logo { height:100px; width:auto; object-fit:contain; }
.footer-grid p { color:var(--muted); max-width:380px; }
.footer-grid h3 { color:var(--brand); font-size:13px; text-transform:uppercase; letter-spacing:.14em; }
.footer-grid a { display:block; color:var(--muted); margin-top:10px; }
.footer-grid a:hover { color:var(--brand); }
.footer-bottom { display:flex; justify-content:space-between; gap:20px; border-top:1px solid rgba(255,255,255,.1); margin-top:38px; padding-top:22px; color:#7f91a7; font-size:13px; }

.lightbox { width:min(1280px, calc(100% - 42px)); max-width:1280px; padding:0; border:1px solid rgba(255,255,255,.16); border-radius:30px; background:#07111f; color:var(--text); box-shadow:0 32px 100px rgba(0,0,0,.45); }
.lightbox::backdrop { background:rgba(0,0,0,.72); backdrop-filter:blur(4px); }
.lightbox-body { display:grid; grid-template-columns:1.15fr .85fr; }
.lightbox-body img { width:100%; max-height:82vh; object-fit:contain; background:#030813; }
.lightbox-copy { padding:36px; display:flex; flex-direction:column; justify-content:center; }
.lightbox-copy p { color:var(--muted); font-size:18px; }
.lightbox-close { position:absolute; top:16px; right:16px; z-index:2; width:42px; height:42px; border-radius:999px; border:1px solid rgba(255,255,255,.16); background:rgba(255,255,255,.08); color:#fff; font-size:28px; cursor:pointer; }

.reveal { opacity:0; transform:translateY(22px); transition:opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity:1; transform:translateY(0); }
.delay-1 { transition-delay:.08s; }
.delay-2 { transition-delay:.16s; }

@media (max-width: 1350px) {
  .hero-grid, .product-hero, .audience-layout, .method-layout, .contact-grid { grid-template-columns:1fr; }
  .hero-copy { max-width:940px; }
  .product-large { grid-column:span 1; grid-template-columns:1fr; }
  .product-grid, .workflow-grid { grid-template-columns:repeat(2,1fr); }
  .app-showcase { grid-template-columns:repeat(2,1fr); }
  .app-feature { grid-row:auto; }
}
@media (max-width: 920px) {
  .topline { display:none; }
  .header-inner { height:82px; }
  .brand-logo { height:72px; }
  .nav-toggle { display:inline-grid; gap:5px; width:44px; height:44px; place-content:center; background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.16); border-radius:12px; }
  .nav-toggle span { width:22px; height:2px; background:#fff; border-radius:999px; display:block; }
  .main-nav { position:fixed; top:82px; left:16px; right:16px; display:grid; gap:0; padding:14px; background:rgba(3,8,19,.98); border:1px solid rgba(255,255,255,.12); border-radius:22px; box-shadow:var(--shadow); opacity:0; transform:translateY(-12px); pointer-events:none; }
  .main-nav.is-open { opacity:1; transform:translateY(0); pointer-events:auto; }
  .main-nav > a, .nav-item > a { padding:14px 12px; }
  .mega-menu { display:none; }
  .hero { padding-top:126px; }
  .container { width:min(100% - 32px, var(--container)); }
  .stats-grid, .product-grid, .workflow-grid, .audience-list, .app-showcase, .method-steps, .footer-grid { grid-template-columns:1fr; }
  .training-card { grid-template-columns:1fr; padding:30px; }
  .footer-bottom { flex-direction:column; }
  .lightbox-body { grid-template-columns:1fr; }
}
@media (max-width: 560px) {
  h1 { font-size:44px; }
  h2 { font-size:34px; }
  .hero-actions .btn, .training-actions .btn { width:100%; }
  .hero-proof span { font-size:12px; }
  .section { padding:80px 0; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration:.01ms !important; transition-duration:.01ms !important; }
  html { scroll-behavior:auto; }
  .reveal { opacity:1; transform:none; }
}


.showcase-carousel-section { background: linear-gradient(180deg, #040b16 0%, #081120 100%); border-block: 1px solid rgba(255,255,255,.08); }
.carousel-shell { position: relative; }
.carousel-stage { position: relative; min-height: 700px; }
.carousel-slide {
  position: absolute; inset: 0;
  display: grid;
  grid-template-columns: minmax(0,1.18fr) minmax(380px,.82fr);
  gap: 28px;
  align-items: stretch;
  padding: 30px;
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,.11);
  background: linear-gradient(145deg, rgba(255,255,255,.05), rgba(255,255,255,.025));
  box-shadow: 0 28px 80px rgba(0,0,0,.28), 0 0 72px rgba(25,214,255,.06);
  opacity: 0;
  visibility: hidden;
  transform: translateX(16px);
  transition: opacity .45s ease, transform .45s ease, visibility .45s ease;
}
.carousel-slide.is-active { opacity: 1; visibility: visible; transform: translateX(0); position: relative; }
.carousel-media { min-height: 100%; border-radius: 26px; overflow: hidden; border: 1px solid rgba(255,255,255,.08); background: rgba(0,0,0,.2); }
.carousel-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 16 / 10; }
.carousel-copy { padding: 14px 6px 14px 6px; display:flex; flex-direction:column; justify-content:center; }
.carousel-copy h3 { font-size: clamp(28px, 2.1vw, 42px); margin-bottom: 14px; }
.carousel-copy p { font-size: 18px; color: #d6e4f1; margin-bottom: 22px; }
.carousel-copy ul { list-style: none; margin: 0; padding: 0; display:grid; gap: 12px; }
.carousel-copy li { position: relative; padding-left: 22px; color: var(--muted); font-weight: 700; }
.carousel-copy li::before { content: ''; position: absolute; left: 0; top: .63em; width: 10px; height: 10px; border-radius: 999px; background: linear-gradient(135deg, var(--brand), var(--brand-3)); box-shadow: 0 0 0 4px rgba(25,214,255,.10); }
.slide-kicker { display:inline-flex; align-items:center; width:max-content; margin-bottom: 14px; padding: 8px 12px; border-radius: 999px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); color: var(--brand); font-size: 12px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.carousel-controls { display:flex; align-items:center; justify-content:space-between; gap: 18px; margin-top: 18px; }
.carousel-dots { display:flex; flex-wrap: wrap; gap: 10px; }
.carousel-dot { width: 11px; height: 11px; border-radius: 999px; border: 0; background: rgba(255,255,255,.22); cursor:pointer; transition: transform .2s ease, background .2s ease; }
.carousel-dot.is-active { background: linear-gradient(135deg, var(--brand), var(--brand-3)); transform: scale(1.2); }
.carousel-counter { color: #dbe8f4; font-weight: 900; letter-spacing: .08em; }
.carousel-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 52px; height: 52px; border-radius: 999px; border: 1px solid rgba(255,255,255,.16);
  background: rgba(3,8,19,.84); color: #fff; font-size: 32px; line-height: 1; cursor:pointer;
  display:grid; place-items:center; box-shadow: 0 14px 32px rgba(0,0,0,.24);
}
.carousel-arrow.prev { left: -22px; }
.carousel-arrow.next { right: -22px; }
.carousel-thumbs { display:grid; grid-template-columns: repeat(5, minmax(0,1fr)); gap: 14px; margin-top: 22px; }
.carousel-thumb {
  display:grid; grid-template-columns: 74px 1fr; align-items:center; gap: 12px; padding: 10px;
  border-radius: 18px; border: 1px solid rgba(255,255,255,.10); background: rgba(255,255,255,.045);
  color: #d8e7f4; cursor:pointer; text-align:left; transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.carousel-thumb:hover { transform: translateY(-2px); }
.carousel-thumb.is-active { border-color: rgba(25,214,255,.42); background: rgba(25,214,255,.09); }
.carousel-thumb img { width: 74px; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 12px; }
.carousel-thumb span { font-size: 13px; font-weight: 900; letter-spacing: .02em; }

.product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.product-large { grid-column: span 3; }
.product-card img { aspect-ratio: 16/10; object-fit: cover; }

.app-showcase { grid-template-columns: 1.25fr repeat(2, 1fr); }
.app-feature img { aspect-ratio: 16/11; object-fit: cover; }
.app-tile img { aspect-ratio: 4/3; object-fit: cover; }

@media (max-width: 1350px) {
  .carousel-stage { min-height: 820px; }
  .carousel-slide { grid-template-columns: 1fr; }
  .carousel-arrow.prev { left: 10px; }
  .carousel-arrow.next { right: 10px; }
  .carousel-thumbs { grid-template-columns: repeat(3, minmax(0,1fr)); }
}
@media (max-width: 920px) {
  .carousel-stage { min-height: 760px; }
  .carousel-slide { padding: 18px; }
  .carousel-controls { flex-direction: column; align-items: flex-start; }
  .carousel-thumbs { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .product-grid { grid-template-columns: 1fr; }
  .product-large { grid-column: auto; }
  .app-showcase { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .carousel-stage { min-height: 700px; }
  .carousel-arrow { width: 44px; height: 44px; font-size: 28px; }
  .carousel-thumb { grid-template-columns: 60px 1fr; }
  .carousel-thumb img { width: 60px; }
}


/* Ajuste fino: evitar corte das artes dos módulos nos cards e no carrossel */
.product-card img,
.product-large img,
.app-feature img,
.app-tile img {
  object-fit: contain !important;
  background:
    radial-gradient(circle at 50% 20%, rgba(25,214,255,.08), transparent 28rem),
    linear-gradient(180deg, #06101c 0%, #07111f 100%);
  padding: 10px;
}

.product-card img {
  aspect-ratio: 16 / 10 !important;
}

.product-large img {
  min-height: 420px;
  width: 100%;
}

.app-feature img {
  aspect-ratio: 16 / 11 !important;
  padding: 12px;
}

.app-tile img {
  aspect-ratio: 4 / 3 !important;
  padding: 10px;
}

.carousel-media {
  display: grid;
  place-items: center;
  padding: 14px;
  background:
    radial-gradient(circle at 50% 15%, rgba(25,214,255,.08), transparent 24rem),
    linear-gradient(180deg, #050d18 0%, #081120 100%);
}

.carousel-media img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain !important;
  background: transparent;
}
