:root {
  --bg-deep: #000b3d;
  --bg-mid: #001a6e;
  --bg-top: #00249c;
  --accent: #0056ff;
  --accent-light: #00aeef;
  --text-white: #ffffff;
  --text-navy: #0a1654;
  --text-body: #3d4466;
  --text-muted: #6b7280;
  --card-white: #ffffff;
  --whatsapp: #25d366;
  --footer-bg: #070a2b;
  --container: 1280px;
  --gutter: 24px;
  --radius-pill: 9999px;
  --radius-card: 24px;
  --radius-card-lg: 32px;
  --font-sans: "Inter", system-ui, sans-serif;
  --font-display: "Montserrat", "Inter", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text-white);
  background: var(--footer-bg);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

#quem-somos {
  scroll-margin-top: 112px;
}

#cases {
  scroll-margin-top: 168px;
}

/* Dot pattern */
.bg-dots {
  position: relative;
}

.bg-dots::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 35%;
  max-width: 420px;
  background-image: radial-gradient(circle, rgba(0, 174, 239, 0.35) 1.5px, transparent 1.5px);
  background-size: 18px 18px;
  mask-image: linear-gradient(to right, black 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.bg-gradient-hero {
  background: linear-gradient(180deg, var(--bg-top) 0%, var(--bg-mid) 45%, var(--bg-deep) 100%);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 12px 0;
  background: linear-gradient(135deg, rgba(0, 27, 110, 0.97) 0%, rgba(0, 10, 52, 0.97) 100%);
  backdrop-filter: blur(20px) saturate(1.6);
  -webkit-backdrop-filter: blur(20px) saturate(1.6);
  border-bottom: 1px solid rgba(0, 174, 239, 0.18);
  box-shadow: 0 2px 0 rgba(0, 86, 255, 0.12), 0 12px 40px rgba(0, 0, 0, 0.35);
}

.site-header .header-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  min-height: 72px;
  gap: 12px 20px;
}

.logo-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}

.site-header .logo-brand {
  padding-right: 4px;
}

.site-header .logo-brand img {
  height: 52px;
  width: auto;
  max-width: none;
  object-fit: contain;
  object-position: left center;
  margin-top: 13px;
  transform: scale(2.6);
  transform-origin: left center;
  filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 255, 255, 0.18));
}

.site-footer .logo-brand img {
  filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(255, 255, 255, 0.12));
}

.logo-product-tag {
  display: block;
  margin-top: 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-light);
  text-align: left;
}

.header-nav-center {
  display: none;
  align-items: center;
  justify-content: center;
  padding-left: 0;
  min-width: 0;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px;
  border-radius: 60px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 4px 24px rgba(0, 0, 0, 0.15);
}

.site-nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.site-nav-item.has-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 18px;
}

.site-nav a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.site-nav a:hover {
  color: rgba(255, 255, 255, 1);
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
}

.site-nav a.is-active {
  color: var(--text-navy);
  background: linear-gradient(135deg, #ffffff 0%, #f0f4ff 100%);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2), 0 1px 0 rgba(255,255,255,0.8) inset;
  font-weight: 700;
}

.site-submenu {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  min-width: 300px;
  padding: 8px;
  display: grid;
  gap: 4px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(246, 250, 255, 0.98);
  box-shadow: 0 22px 44px rgba(0, 9, 40, 0.24);
  opacity: 0;
  transform: translateY(8px);
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  z-index: 120;
}

.has-dropdown:hover .site-submenu,
.has-dropdown:focus-within .site-submenu {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
}

.site-submenu a {
  text-transform: none;
  letter-spacing: 0;
  font-size: 13px;
  font-weight: 600;
  color: #1f2a52;
  border-radius: 10px;
  padding: 10px 11px;
  line-height: 1.35;
}

.site-submenu a:hover {
  color: #0b1d62;
  background: rgba(0, 86, 255, 0.08);
}

.site-submenu a.is-active {
  color: #07235f;
  background: rgba(0, 86, 255, 0.14);
  box-shadow: none;
}

.header-actions {
  display: none;
  align-items: center;
  justify-content: flex-start;
  padding-left: 20px;
  gap: 10px;
  flex-shrink: 0;
  margin-left: 0;
}

.btn-pill-outline {
  padding: 10px 22px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-pill);
  color: rgba(255, 255, 255, 0.9);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.btn-pill-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.85);
  color: white;
}

.btn-pill-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 22px 8px 8px;
  background: var(--text-white);
  color: var(--text-navy);
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-pill-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

.btn-pill-white .icon-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(145deg, #0066ff, #0040c4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  padding: 10px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.06);
  transition: background 0.2s;
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.12);
}

@media (min-width: 768px) {
  .site-header .logo-brand img {
    height: 60px;
    width: 210px;
  }
}

@media (min-width: 1024px) {
  .site-header {
    padding: 14px 0;
  }

  .site-header .header-inner {
    grid-template-columns: minmax(188px, auto) minmax(0, 1fr) minmax(220px, auto);
    min-height: 76px;
    gap: 6px;
  }

  .site-header .logo-brand img {
    height: 60px;
    width: auto;
  }

  .header-nav-center {
    display: flex;
    overflow: visible;
    padding-right: 0;
    margin-left: 0;
    padding-left: 0;
  }

  .site-nav {
    gap: 1px;
    padding: 4px;
    max-width: 100%;
  }

  .site-nav a {
    font-size: 10px;
    padding: 8px 6px;
    letter-spacing: 0.03em;
  }


  .header-actions {
    display: flex;
    gap: 10px;
  }

  .menu-toggle {
    display: none;
  }
}

@media (min-width: 1280px) {
  .site-header .header-inner {
    gap: 10px;
  }

  .site-header .logo-brand img {
    height: 64px;
    width: auto;
  }

  .site-nav a {
    font-size: 10px;
    padding: 9px 10px;
  }
}

@media (min-width: 1024px) and (max-width: 1279px) {
  .site-header .logo-brand {
    padding-right: 2px;
  }

  .site-header .header-inner {
    grid-template-columns: minmax(182px, auto) minmax(0, 1fr) minmax(206px, auto);
    min-height: 72px;
    gap: 4px;
  }

  .site-header .logo-brand img {
    width: auto;
    height: 58px;
  }

  .site-nav {
    padding: 4px;
    gap: 1px;
  }

  .site-nav a {
    font-size: 9px;
    padding: 8px 5px;
    letter-spacing: 0.02em;
  }


  .header-actions {
    gap: 8px;
  }

  .btn-pill-outline {
    padding: 8px 12px;
    font-size: 9.75px;
    letter-spacing: 0.05em;
  }

  .btn-pill-white {
    padding: 6px 12px 6px 6px;
    gap: 7px;
    font-size: 9.75px;
    letter-spacing: 0.05em;
  }

  .btn-pill-white .icon-circle {
    width: 28px;
    height: 28px;
  }
}

@media (min-width: 1440px) {
  .site-header .header-inner {
    gap: 24px;
  }

  .site-header .logo-brand img {
    height: 66px;
    width: 235px;
  }

  .site-nav a {
    font-size: 12px;
    padding: 11px 17px;
    letter-spacing: 0.06em;
  }
}

/* Mobile menu */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(7, 10, 43, 0.97);
  z-index: 200;
  flex-direction: column;
  padding: 80px 32px 32px;
  gap: 16px;
}

.mobile-nav.is-open {
  display: flex;
}

.mobile-nav a {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mobile-nav a.mobile-sub-link {
  margin-top: -6px;
  margin-left: 14px;
  padding-left: 12px;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: none;
  opacity: 0.86;
}

.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  color: white;
  font-size: 28px;
}

/* Hero */
.hero {
  position: relative;
  padding: 48px 0 64px;
  overflow: hidden;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin: 0;
}

.hero-title-row {
  margin-bottom: 24px;
}

.hero-title-content {
  flex: 1;
  min-width: 0;
}

.hero-eyebrow-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 20px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  max-width: 720px;
  margin: 0;
  color: var(--text-white);
}

/* Social sidebar no hero */
.hero-social-side {
  display: flex;
  flex-direction: row;
  gap: 10px;
  padding-top: 0;
  flex-shrink: 0;
}

.hero-social-side a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
  transition: border-color 0.25s, background 0.25s, color 0.25s, transform 0.25s;
}

.hero-social-side a:hover {
  border-color: rgba(0, 86, 255, 0.7);
  background: rgba(0, 86, 255, 0.18);
  color: #fff;
  transform: translateY(-2px);
}

.hero-social-side svg {
  display: block;
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .hero-social-side {
    display: none;
  }

  .hero-eyebrow-row { margin-bottom: 14px; }
  .hero-title {
    margin: 0 0 24px;
  }
}

.hero-desc {
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.65;
  max-width: 640px;
  margin: 0 0 32px;
  color: rgba(255, 255, 255, 0.92);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 56px;
}

.btn-hero-primary,
.btn-hero-secondary {
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  background: var(--text-white);
  color: var(--text-navy);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-hero-primary:hover,
.btn-hero-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

/* Client logos carousel */
.clients-carousel {
  overflow: hidden;
  padding: 12px 0 48px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.clients-track {
  display: flex;
  align-items: center;
  gap: 64px;
  width: max-content;
  animation: clientsScroll 34s linear infinite;
}

.clients-track:hover {
  animation-play-state: paused;
}

.clients-track img {
  height: 64px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  object-position: center;
  filter: brightness(0) invert(1);
  opacity: 0.82;
  flex-shrink: 0;
  transition: opacity 0.2s;
}

.clients-track img:hover {
  opacity: 1;
}

@keyframes clientsScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* hero-dashboard legacy — replaced by .hero-mockup */

/* Section titles */
.section-label {
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 16px;
}

.section-desc {
  text-align: center;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  max-width: 820px;
  margin: 0 auto 12px;
}

/* Products */
.products-section {
  padding: 48px 0 0;
  background: linear-gradient(180deg, var(--bg-deep) 0%, #050a1a 100%);
}

.product-shell {
  background: #050a1a;
  border-radius: var(--radius-card-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  min-height: 350px;
}

.product-tabs {
  display: flex;
  align-items: center;
  padding: 4px 8px;
  background: #030712;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
}

.product-tabs::-webkit-scrollbar {
  display: none;
}

.tab-arrow {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.product-tabs-inner {
  display: flex;
  flex: 1;
  justify-content: center;
  gap: 2px;
  min-width: min-content;
}

.product-tab {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  min-width: 74px;
  padding: 4px 7px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 10px;
  font-weight: 600;
  border-radius: 12px;
  border: 2px solid transparent;
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}

.product-tab .tab-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.product-tab .tab-icon svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
}

.product-tab.is-active {
  color: white;
  border-color: var(--accent);
  background: rgba(0, 86, 255, 0.12);
}

.product-video {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  flex: 1;
  min-height: 276px;
  max-height: none;
  margin: 0;
  border-radius: 0;
  background: #0a1628;
  overflow: hidden;
}

@media (max-width: 640px) {
  .product-shell {
    max-width: 100%;
  }

  .product-video {
    width: 100%;
    min-height: 250px;
  }
}

/* ── Responsive YouTube embed wrapper ───────────────────── */
.yt-embed-wrap {
  width: 100%;
  height: 100%;
}

.yt-embed-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  background: #000;
}

.play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: 3px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: transform 0.3s;
}

.play-btn:hover {
  transform: scale(1.08);
}

.play-btn::after {
  content: "";
  border: 14px solid transparent;
  border-left: 22px solid white;
  margin-left: 8px;
}

/* Product detail cards - dark premium */
.product-detail {
  --dark-bg: #020a1f;
  --dark-bg-2: #061228;
  --dark-card: rgba(10, 23, 46, 0.88);
  --dark-card-2: rgba(15, 31, 60, 0.92);
  --dark-border: rgba(255, 255, 255, 0.08);
  --dark-border-active: rgba(62, 185, 255, 0.38);
  --text-white: #f8fafc;
  --text-soft: #c7d2e5;
  --text-muted: #8a98b3;
  --accent-blue: #3b82f6;
  --accent-cyan: #38d5ff;
  --accent-orange: #f59e0b;
  --text-navy: var(--text-white);
  --text-body: var(--text-soft);
  --accent: var(--accent-blue);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 28px 0 112px;
  background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-bg-2) 100%);
}

.product-detail::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(143, 163, 196, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(143, 163, 196, 0.09) 1px, transparent 1px);
  background-size: 62px 62px;
  opacity: 0.12;
  pointer-events: none;
}

.product-detail::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 9% 10%, rgba(59, 130, 246, 0.3) 0%, transparent 34%),
    radial-gradient(circle at 90% 18%, rgba(56, 213, 255, 0.22) 0%, transparent 36%),
    radial-gradient(circle at 52% 90%, rgba(59, 130, 246, 0.2) 0%, transparent 40%);
  pointer-events: none;
}

.product-detail .container {
  position: relative;
  z-index: 1;
  max-width: min(1220px, calc(100% - clamp(40px, 8vw, 180px)));
  padding-left: clamp(20px, 3vw, 36px);
  padding-right: clamp(20px, 3vw, 36px);
}

.product-detail .product-panel {
  padding-left: clamp(8px, 1.4vw, 18px);
  padding-right: clamp(8px, 1.4vw, 18px);
}

.product-detail .cards-white,
.product-detail .cta-row {
  max-width: min(1160px, calc(100% - clamp(14px, 2.2vw, 44px)));
  margin-left: auto;
  margin-right: auto;
}

.cards-white {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.card-white {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 26px;
  padding: 38px 40px;
  color: var(--text-soft);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32), 0 0 0 1px rgba(31, 66, 118, 0.18) inset;
  backdrop-filter: blur(7px);
  transition: transform 0.26s ease, border-color 0.26s ease, box-shadow 0.26s ease;
}

.card-white:hover {
  transform: translateY(-4px);
  border-color: var(--dark-border-active);
  box-shadow: 0 26px 50px rgba(0, 0, 0, 0.38), 0 0 34px rgba(59, 130, 246, 0.16);
}

.card-white-header {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  width: fit-content;
  margin: 0 0 22px;
  padding: 8px 14px;
  border: 1px solid rgba(56, 213, 255, 0.34);
  border-radius: 999px;
  background: linear-gradient(120deg, rgba(59, 130, 246, 0.24) 0%, rgba(56, 213, 255, 0.14) 100%);
  color: var(--accent-cyan);
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.card-white h3 {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.5vw, 1.95rem);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 16px;
  color: var(--text-white);
}

.card-white p {
  font-size: 0.965rem;
  line-height: 1.72;
  color: var(--text-soft);
  margin: 0 0 13px;
}

.card-split {
  display: grid;
  gap: 32px;
  background: var(--dark-card-2);
}

@media (min-width: 960px) {
  .card-split {
    grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
    align-items: stretch;
    padding: 42px 46px;
  }
}

.chart-placeholder {
  background: linear-gradient(180deg, rgba(12, 28, 56, 0.95) 0%, rgba(9, 21, 42, 0.92) 100%);
  border-radius: 20px;
  padding: 24px;
  min-height: 250px;
  border: 1px solid var(--dark-border);
  box-shadow: inset 0 0 0 1px rgba(59, 130, 246, 0.07);
}

.chart-placeholder .chart-title {
  font-size: 0.87rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 10px;
}

.chart-placeholder p {
  color: var(--text-soft);
}

.logistics-problem,
.logistics-solution {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-radius: 30px;
}

.logistics-problem {
  padding: 44px 46px;
  background: radial-gradient(110% 80% at 80% 20%, #1a0a0e 0%, #0a0712 55%);
  border: 1px solid rgba(255, 122, 107, 0.18);
  box-shadow: 0 28px 58px rgba(0, 0, 0, 0.38), inset 0 0 0 1px rgba(255, 122, 107, 0.08);
}

.logistics-problem::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.35) 0 1px, transparent 1px 4px);
  opacity: 0.05;
  pointer-events: none;
}

.logistics-problem-aura {
  position: absolute;
  width: min(520px, 56vw);
  height: 420px;
  top: 20px;
  right: -120px;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.26);
  filter: blur(96px);
  pointer-events: none;
}

.logistics-problem-grid {
  position: relative;
  display: grid;
  gap: 38px;
  align-items: center;
}

.logistics-problem-copy {
  max-width: 560px;
}

.logistics-problem-copy .card-white-header {
  margin-bottom: 18px;
}

.logistics-problem-kicker,
.logistics-solution-kicker {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.logistics-problem-kicker {
  color: #ff7a6b;
}

.logistics-problem-title {
  margin: 14px 0 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 3.25rem);
  line-height: 1.08;
  font-weight: 800;
  color: var(--text-white);
}

.logistics-problem-title span {
  color: rgba(255, 255, 255, 0.45);
}

.logistics-problem-lead {
  margin: 24px 0 0;
  max-width: 34rem;
  font-size: 1.02rem;
  line-height: 1.74;
  color: rgba(230, 236, 255, 0.7);
}

.logistics-problem-lead strong,
.logistics-problem-list strong,
.logistics-solution-copy strong {
  color: rgba(255, 255, 255, 0.92);
}

.logistics-problem-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 16px;
}

.logistics-problem-list li {
  display: flex;
  gap: 12px;
  align-items: start;
  font-size: 0.98rem;
  line-height: 1.55;
  color: rgba(230, 236, 255, 0.72);
}

.logistics-problem-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 0.42rem;
  border-radius: 999px;
  background: #ff7a6b;
  box-shadow: 0 0 0 6px rgba(255, 122, 107, 0.12);
}

.logistics-problem-visual {
  position: relative;
  min-height: 340px;
  padding-top: 10px;
}

.logistics-problem-diagram {
  display: block;
  width: 100%;
  height: auto;
}

.logistics-problem-silos {
  position: absolute;
  inset: 0;
}

.logistics-problem-silo {
  position: absolute;
  width: min(162px, 42%);
  padding: 14px 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(25, 34, 65, 0.75), rgba(11, 15, 30, 0.72));
  border: 1px solid rgba(255, 122, 107, 0.18);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(8px);
  animation: logisticsFloat 5s ease-in-out infinite;
}

.logistics-problem-silo--wms {
  left: 3%;
  top: 6%;
}

.logistics-problem-silo--tms {
  right: 3%;
  top: 6%;
}

.logistics-problem-silo--tracker {
  left: 3%;
  bottom: 8%;
}

.logistics-problem-silo--route {
  right: 3%;
  bottom: 8%;
}

.logistics-problem-silo-icon {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
}

.logistics-problem-silo-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  color: #ffd0c8;
}

.logistics-problem-silo-name {
  margin-top: 10px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-white);
}

.logistics-problem-silo-status {
  margin-top: 4px;
  font-size: 0.72rem;
  color: #ff7a6b;
}

.logistics-problem-note {
  position: relative;
  margin: 14px 0 0;
  text-align: center;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}

.logistics-solution {
  padding: 54px 46px 46px;
  background: linear-gradient(180deg, #0a1838, #0e2b4d 48%, #08203b);
  border: 1px solid rgba(125, 176, 255, 0.18);
  box-shadow: 0 28px 58px rgba(0, 0, 0, 0.34), inset 0 0 0 1px rgba(31, 66, 118, 0.18);
}

.logistics-solution-fade,
.logistics-solution-aurora,
.logistics-solution-grid-lines {
  position: absolute;
  pointer-events: none;
}

.logistics-solution-fade {
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(180deg, #0a0712, transparent);
}

.logistics-solution-aurora {
  width: min(640px, 70vw);
  height: 460px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(39, 211, 245, 0.24);
  filter: blur(104px);
}

.logistics-solution-grid-lines {
  inset: 0;
  opacity: 0.5;
  background-image:
    linear-gradient(rgba(125, 176, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125, 176, 255, 0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.58));
}

.logistics-solution-copy,
.logistics-solution-diagram-wrap,
.logistics-solution-grid {
  position: relative;
}

.logistics-solution-copy {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.logistics-solution-kicker {
  color: #6fe7ff;
}

.logistics-solution-copy h3 {
  margin: 14px 0 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.1vw, 3.15rem);
  line-height: 1.08;
  font-weight: 800;
  color: var(--text-white);
}

.logistics-solution-copy h3 span {
  background: linear-gradient(100deg, #7db0ff, #27d3f5 55%, #34e0a1);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.logistics-solution-copy p {
  margin: 20px auto 0;
  max-width: 42rem;
  font-size: 1.02rem;
  line-height: 1.74;
  color: rgba(230, 236, 255, 0.72);
}

.logistics-solution-diagram-wrap {
  width: min(100%, 860px);
  margin: 42px auto 0;
}

.logistics-diagram--solution {
  margin-top: 0;
}

.logistics-solution-grid {
  display: grid;
  gap: 18px;
  margin-top: 38px;
}

.logistics-solution-card {
  min-height: 100%;
  padding: 24px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(25, 34, 65, 0.55), rgba(11, 15, 30, 0.5));
  border: 1px solid rgba(125, 176, 255, 0.12);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s, box-shadow 0.35s;
}

.logistics-solution-card:hover {
  transform: translateY(-7px);
  border-color: rgba(125, 176, 255, 0.42);
  box-shadow: 0 26px 64px -30px rgba(46, 107, 255, 0.65);
}

.logistics-solution-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
}

.logistics-solution-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.logistics-solution-icon--brand {
  background: rgba(79, 141, 255, 0.2);
  color: #b9d2ff;
}

.logistics-solution-icon--good {
  background: rgba(52, 224, 161, 0.18);
  color: #34e0a1;
}

.logistics-solution-icon--warn {
  background: rgba(255, 195, 77, 0.18);
  color: #ffc34d;
}

.logistics-solution-icon--cyan {
  background: rgba(39, 211, 245, 0.18);
  color: #6fe7ff;
}

.logistics-solution-card h4 {
  margin: 18px 0 0;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--text-white);
}

.logistics-solution-card p {
  margin: 10px 0 0;
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(230, 236, 255, 0.62);
}

@media (min-width: 720px) {
  .logistics-solution-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 960px) {
  .logistics-problem-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.98fr);
  }
}

@media (min-width: 1100px) {
  .logistics-solution-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 959px) {
  .logistics-problem,
  .logistics-solution {
    padding: 32px 28px;
    border-radius: 24px;
  }

  .logistics-problem-visual {
    min-height: 320px;
  }

  .logistics-problem-silo {
    width: min(154px, 44%);
    padding: 12px 14px;
  }

  .logistics-solution-diagram-wrap {
    margin-top: 34px;
  }
}

@media (max-width: 640px) {
  .logistics-problem,
  .logistics-solution {
    padding: 24px 22px;
    border-radius: 22px;
  }

  .logistics-problem-title,
  .logistics-solution-copy h3 {
    font-size: 1.72rem;
  }

  .logistics-problem-lead,
  .logistics-solution-copy p {
    font-size: 0.94rem;
  }

  .logistics-problem-list li {
    gap: 10px;
    font-size: 0.93rem;
  }

  .logistics-problem-visual {
    min-height: 286px;
  }

  .logistics-problem-silo {
    width: min(142px, 45%);
    padding: 10px 12px;
    border-radius: 16px;
  }

  .logistics-problem-silo-name {
    margin-top: 8px;
    font-size: 0.72rem;
  }

  .logistics-problem-silo-status {
    font-size: 0.68rem;
  }

  .logistics-problem-note {
    font-size: 0.67rem;
    letter-spacing: 0.12em;
  }

  .logistics-solution-card {
    padding: 20px;
  }

  .logistics-solution-card h4 {
    font-size: 1.02rem;
  }
}

@keyframes logisticsFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes logisticsGlitch {
  0%,
  100% {
    transform: translate(0, 0);
  }

  92% {
    transform: translate(0, 0);
  }

  94% {
    transform: translate(-2px, 1px);
  }

  96% {
    transform: translate(2px, -1px);
  }

  98% {
    transform: translate(-1px, 0);
  }
}

.logistics-diagram {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 8px;
}

.logistics-diagram-labels rect {
  fill: #0b1b3a;
  stroke: #27406e;
}

.logistics-diagram-labels text,
.logistics-diagram-output text,
.logistics-core-text {
  font-family: var(--font-display);
}

.logistics-diagram-labels text {
  font-size: 12px;
  font-weight: 700;
  fill: #cfe0ff;
}

.logistics-core-text {
  font-size: 11px;
  font-weight: 800;
}

.logistics-core-text--top {
  fill: #7db0ff;
}

.logistics-core-text--bottom {
  fill: #27d3f5;
}

.logistics-diagram-output rect {
  fill: #0b1b3a;
  stroke: #34e0a1;
}

.logistics-diagram-output text {
  font-size: 11px;
  font-weight: 700;
  fill: #34e0a1;
}

.chart-placeholder--media {
  display: flex;
  align-items: stretch;
  justify-content: center;
  min-height: clamp(280px, 30vw, 400px);
  padding: 14px;
}

.detail-media-frame {
  width: 100%;
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(3, 8, 20, 0.95);
  box-shadow: inset 0 0 0 1px rgba(59, 130, 246, 0.08);
}

.detail-media-frame--video {
  border-radius: 22px;
  background:
    radial-gradient(circle at top left, rgba(59, 130, 246, 0.18), transparent 56%),
    rgba(3, 8, 20, 0.98);
}

.detail-media-asset {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: rgba(3, 8, 20, 0.95);
}

.detail-media-asset--video {
  border-radius: 22px;
  background: #020814;
}

.chart-line {
  height: 148px;
  background: linear-gradient(to top, rgba(56, 213, 255, 0.2) 0%, rgba(56, 213, 255, 0.02) 65%);
  border-bottom: 2px solid var(--accent-cyan);
  position: relative;
  margin-top: 24px;
}

.chart-line::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 30%;
  border-top: 2px dashed rgba(245, 158, 11, 0.75);
}

.benefits-grid {
  display: grid;
  gap: 24px;
}

/* Cloud panel top layout */
.cloud-overview-grid {
  display: grid;
  gap: 24px;
}

.cloud-overview-side {
  display: grid;
  gap: 24px;
}

.cards-white > .insights-cloud-simulator {
  width: 100%;
  margin-top: 0;
}

@media (min-width: 960px) {
  .cloud-overview-grid {
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    align-items: stretch;
  }

  .cloud-overview-grid > .card-white,
  .cloud-overview-side,
  .cloud-overview-side > .card-white {
    height: 100%;
  }

  .cloud-overview-grid > .card-white,
  .cloud-overview-side > .card-white {
    display: flex;
    flex-direction: column;
  }

  .cloud-overview-side > .card-white {
    padding-top: 76px;
  }

  .cloud-overview-grid .card-white h3 {
    min-height: 4.7rem;
  }
}

@media (min-width: 960px) {
  .benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.94rem;
  color: var(--text-soft);
  margin-bottom: 11px;
  line-height: 1.56;
}

.benefits-list li::before {
  content: "";
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  margin-top: 7px;
  border-radius: 50%;
  background: linear-gradient(160deg, var(--accent-blue) 0%, var(--accent-cyan) 100%);
}

/* Cloud comparator */
.comparator-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  background: rgba(56, 213, 255, 0.1);
  border: 1px solid rgba(56, 213, 255, 0.28);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}

.investment-value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.85rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  background: linear-gradient(125deg, var(--accent-blue) 0%, var(--accent-cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 8px 0 20px;
}

.investment-slider {
  width: 100%;
  margin-bottom: 16px;
  appearance: none;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.investment-slider::-webkit-slider-thumb {
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(130deg, var(--accent-blue) 0%, var(--accent-cyan) 100%);
  border: 2px solid #031229;
  box-shadow: 0 0 0 3px rgba(56, 213, 255, 0.22);
}

.investment-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(130deg, var(--accent-blue) 0%, var(--accent-cyan) 100%);
  border: 2px solid #031229;
  box-shadow: 0 0 0 3px rgba(56, 213, 255, 0.22);
}

.preset-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.preset-btns button {
  padding: 8px 14px;
  border: 1px solid rgba(143, 173, 221, 0.42);
  border-radius: 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.preset-btns button:hover,
.preset-btns button.is-active {
  border-color: var(--accent-cyan);
  color: var(--text-white);
  background: linear-gradient(125deg, rgba(59, 130, 246, 0.32) 0%, rgba(56, 213, 255, 0.22) 100%);
}

.savings-row {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

@media (min-width: 640px) {
  .savings-row {
    grid-template-columns: 1fr 1fr;
  }
}

.savings-row strong {
  display: block;
  font-size: 1.25rem;
  color: var(--accent-cyan);
  margin-top: 4px;
}

.savings-row span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.bar-chart {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-top: 16px;
}

.bar-row {
  display: grid;
  grid-template-columns: 36px 1fr;
  align-items: center;
  gap: 10px;
}

.bar-row label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-soft);
}

.bar-track {
  height: 36px;
  background: rgba(9, 22, 43, 0.95);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(143, 173, 221, 0.14);
}

.bar-fill {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 12px;
  font-size: 11px;
  font-weight: 700;
  color: #f8fbff;
  border-radius: 8px;
  transition: width 0.4s ease;
}

.bar-fill.mais-cloud {
  background: linear-gradient(90deg, #2563eb 0%, #22d3ee 100%);
}

.bar-fill.competitor {
  background: linear-gradient(90deg, #314462 0%, #4b5f80 100%);
}

/* Cloud simulator - no Bootstrap */
.insights-cloud-simulator {
  position: relative;
  margin-top: 8px;
  border: 1px solid rgba(56, 213, 255, 0.2);
  border-radius: 24px;
  background: linear-gradient(160deg, rgba(7, 18, 38, 0.95) 0%, rgba(5, 13, 29, 0.98) 100%);
  box-shadow: 0 26px 54px rgba(0, 0, 0, 0.32), inset 0 0 0 1px rgba(56, 213, 255, 0.08);
  overflow: hidden;
}

.insights-cloud-simulator-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 10% 12%, rgba(56, 213, 255, 0.16) 0%, transparent 40%),
    radial-gradient(circle at 88% 20%, rgba(59, 130, 246, 0.16) 0%, transparent 42%);
}

.insights-cloud-simulator-inner {
  position: relative;
  z-index: 1;
  padding: clamp(22px, 3.2vw, 34px);
}

.insights-cloud-simulator-head {
  margin-bottom: 20px;
}

.insights-cloud-simulator-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  border: 1px solid rgba(56, 213, 255, 0.42);
  background: rgba(56, 213, 255, 0.1);
  color: #9ae9ff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 11px;
  margin-bottom: 12px;
}

.insights-cloud-simulator-title {
  margin: 0 0 10px;
  color: #f6f9ff;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.28;
}

.insights-cloud-simulator-lead {
  margin: 0;
  color: rgba(224, 233, 248, 0.88);
  line-height: 1.65;
  font-size: 0.94rem;
}

.insights-cloud-simulator-lead strong {
  color: #f8fbff;
}

.insights-cloud-simulator-grid {
  display: grid;
  gap: 14px;
}

@media (min-width: 1040px) {
  .insights-cloud-simulator-grid {
    grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
    gap: 18px;
  }
}

.insights-cloud-live-panel {
  border-radius: 18px;
  border: 1px solid rgba(56, 213, 255, 0.2);
  background: rgba(9, 22, 44, 0.85);
  box-shadow: inset 0 0 0 1px rgba(56, 213, 255, 0.06);
  padding: 18px;
}

.insights-cloud-live-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(217, 231, 250, 0.76);
  margin-bottom: 8px;
}

.insights-cloud-live-spend {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.2vw, 2.35rem);
  font-weight: 700;
  line-height: 1;
  margin: 0 0 14px;
  color: #73deff;
  text-shadow: 0 0 26px rgba(56, 213, 255, 0.25);
}

.insights-cloud-range-wrap {
  margin-bottom: 14px;
}

.insights-cloud-range {
  width: 100%;
  appearance: none;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(56, 213, 255, 0.95) 0%,
    rgba(37, 99, 235, 0.95) var(--insights-range-fill, 50%),
    rgba(145, 166, 201, 0.22) var(--insights-range-fill, 50%),
    rgba(145, 166, 201, 0.22) 100%
  );
  border: 1px solid rgba(56, 213, 255, 0.24);
}

.insights-cloud-range::-webkit-slider-thumb {
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #021127;
  background: linear-gradient(135deg, #22d3ee 0%, #3b82f6 100%);
  box-shadow: 0 0 0 4px rgba(56, 213, 255, 0.22);
  cursor: pointer;
}

.insights-cloud-range::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border: 2px solid #021127;
  border-radius: 50%;
  background: linear-gradient(135deg, #22d3ee 0%, #3b82f6 100%);
  box-shadow: 0 0 0 4px rgba(56, 213, 255, 0.22);
  cursor: pointer;
}

.insights-cloud-live-input-row {
  display: grid;
  gap: 8px;
  margin-bottom: 8px;
}

.insights-cloud-live-input-row label {
  font-size: 12px;
  color: rgba(217, 231, 250, 0.74);
}

.insights-cloud-live-input {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(56, 213, 255, 0.3);
  border-radius: 10px;
  background: rgba(4, 12, 25, 0.9);
  color: #f6f9ff;
  padding: 10px 12px;
  font-size: 0.95rem;
  outline: none;
}

.insights-cloud-live-input:focus {
  border-color: #55ddff;
  box-shadow: 0 0 0 3px rgba(56, 213, 255, 0.14);
}

.insights-cloud-live-hint {
  margin: 0 0 12px;
  font-size: 12px;
  color: rgba(189, 207, 232, 0.78);
  line-height: 1.45;
}

.insights-cloud-live-presets {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.insights-cloud-live-presets button {
  border: 1px solid rgba(143, 173, 221, 0.4);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  color: rgba(225, 235, 248, 0.9);
  font-size: 12px;
  font-weight: 700;
  padding: 7px 12px;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.insights-cloud-live-presets button:hover,
.insights-cloud-live-presets button.is-active {
  border-color: #55ddff;
  color: #f8fcff;
  background: linear-gradient(130deg, rgba(59, 130, 246, 0.35) 0%, rgba(34, 211, 238, 0.3) 100%);
}

.insights-cloud-kpis {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.insights-cloud-sim-kpi {
  border-radius: 14px;
  border: 1px solid rgba(56, 213, 255, 0.18);
  background: rgba(6, 18, 39, 0.78);
  padding: 14px;
}

.insights-cloud-sim-kpi-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(180, 203, 233, 0.86);
}

.insights-cloud-sim-kpi-value {
  margin-top: 5px;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 700;
  color: #f7fbff;
}

.insights-cloud-sim-kpi-value--savings {
  color: #66f0bf;
}

.insights-cloud-sim-kpi-sub {
  margin-top: 4px;
  font-size: 12px;
  color: rgba(180, 203, 233, 0.82);
}

.insights-cloud-chart-col {
  border-radius: 18px;
  border: 1px solid rgba(56, 213, 255, 0.2);
  background: rgba(8, 20, 40, 0.82);
  padding: 16px;
}

.insights-cloud-sim-bar-head {
  color: rgba(200, 219, 243, 0.94);
  font-size: 13px;
  font-weight: 700;
  margin: 0 0 6px;
}

.insights-cloud-sim-avg-hint {
  margin: 0 0 10px;
  color: rgba(173, 198, 233, 0.84);
  font-size: 12px;
}

.insights-cloud-sim-bar-chart {
  --avg-marker: 56%;
  position: relative;
  display: grid;
  gap: 8px;
  padding: 14px 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(56, 213, 255, 0.14);
  background: rgba(3, 9, 21, 0.74);
}

.insights-cloud-sim-bar-chart::after {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: var(--avg-marker);
  border-left: 2px dashed rgba(102, 240, 191, 0.7);
  pointer-events: none;
}

.insights-cloud-sim-row {
  display: grid;
  grid-template-columns: minmax(94px, 128px) minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
}

.insights-cloud-sim-label {
  color: rgba(226, 236, 249, 0.92);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.insights-cloud-sim-track {
  height: 28px;
  border-radius: 8px;
  border: 1px solid rgba(141, 170, 207, 0.2);
  background: rgba(11, 24, 44, 0.95);
  overflow: hidden;
}

.insights-cloud-sim-fill {
  height: 100%;
  width: 0%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 8px;
  color: rgba(247, 251, 255, 0.92);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: 7px;
  transition: width 0.3s ease;
  background: linear-gradient(90deg, rgba(67, 87, 120, 0.95) 0%, rgba(90, 113, 147, 0.95) 100%);
}

.insights-cloud-sim-row--cloud .insights-cloud-sim-fill {
  background: linear-gradient(90deg, #2563eb 0%, #22d3ee 100%);
}

.insights-cloud-sim-value {
  min-width: 88px;
  text-align: right;
  color: rgba(231, 239, 250, 0.95);
  font-size: 12px;
  font-weight: 700;
}

.insights-cloud-simulator-foot {
  margin: 14px 0 0;
  color: rgba(177, 200, 230, 0.84);
  font-size: 12px;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .insights-cloud-sim-row {
    grid-template-columns: minmax(86px, 108px) minmax(0, 1fr) auto;
  }

  .insights-cloud-sim-value {
    min-width: 72px;
    font-size: 11px;
  }
}

@media (max-width: 620px) {
  .insights-cloud-simulator-inner {
    padding: 18px;
  }

  .insights-cloud-chart-col {
    padding: 12px;
  }

  .insights-cloud-sim-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .insights-cloud-sim-value {
    text-align: left;
    min-width: 0;
  }

  .insights-cloud-sim-bar-chart::after {
    display: none;
  }
}

.product-detail .chart-placeholder p[style*="color:#6b7280"] {
  color: var(--text-muted) !important;
}

.product-detail .chart-placeholder span[style*="background:#f0f4ff"],
.product-detail .chart-placeholder span[style*="background:#e8f0ff"] {
  background: rgba(59, 130, 246, 0.14) !important;
  border: 1px solid rgba(56, 213, 255, 0.26);
  color: var(--accent-cyan) !important;
}

@media (max-width: 1199px) {
  .product-detail {
    padding: 70px 0 96px;
  }

  .card-white {
    padding: 32px;
  }

  .card-split {
    gap: 28px;
  }
}

@media (max-width: 959px) {
  .product-detail .container {
    max-width: 100%;
    padding-left: clamp(18px, 5vw, 28px);
    padding-right: clamp(18px, 5vw, 28px);
  }

  .product-detail .product-panel {
    padding-left: 0;
    padding-right: 0;
  }

  .product-detail .cards-white,
  .product-detail .cta-row {
    max-width: 100%;
  }

  .card-white {
    border-radius: 24px;
    padding: 28px;
  }

  .card-split {
    gap: 24px;
  }

  .chart-placeholder {
    min-height: 0;
    border-radius: 18px;
    padding: 20px;
  }

  .chart-placeholder--media {
    min-height: clamp(240px, 56vw, 360px);
    padding: 12px;
  }
}

@media (max-width: 640px) {
  .product-detail {
    padding: 56px 0 82px;
  }

  .card-white {
    border-radius: 22px;
    padding: 24px;
  }

  .card-white h3 {
    font-size: 1.33rem;
  }

  .card-white p {
    font-size: 0.92rem;
  }

  .bar-row {
    grid-template-columns: 30px 1fr;
    gap: 8px;
  }

  .bar-track {
    height: 32px;
  }

  .bar-fill {
    padding-right: 10px;
    font-size: 10px;
  }

  .case-card-image {
    height: 112px;
  }

  .case-card-body {
    padding: 2px 16px 18px;
  }

  .case-stat {
    font-size: 1.9rem;
  }

  .case-metric {
    padding: 11px 10px 10px;
  }
}

/* Results */
.results-section {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--bg-deep) 0%, #001452 100%);
  position: relative;
}

.results-section::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 200px;
  height: 200px;
  background-image: radial-gradient(circle, rgba(0, 174, 239, 0.2) 1.5px, transparent 1.5px);
  background-size: 14px 14px;
  opacity: 0.5;
}

.results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.results-header h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0;
}

.carousel-nav {
  display: flex;
  gap: 8px;
}

.carousel-nav button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  color: var(--text-navy);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}

.carousel-nav button:hover {
  transform: scale(1.05);
}

.carousel-nav button:disabled {
  cursor: not-allowed;
  opacity: 0.42;
  transform: none;
}

.cases-grid {
  display: flex;
  gap: 18px;
  align-items: stretch;
  max-width: 1080px;
  margin: 0 auto;
  padding: 10px 4px 14px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 4px;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.cases-grid::-webkit-scrollbar {
  display: none;
}

.case-card {
  flex: 0 0 min(340px, calc(100vw - 48px));
  scroll-snap-align: start;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border-radius: 30px;
  border: 1px solid rgba(17, 60, 168, 0.1);
  overflow: hidden;
  color: var(--text-navy);
  box-shadow: 0 14px 36px rgba(2, 18, 70, 0.22);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

@media (min-width: 760px) {
  .case-card {
    flex-basis: calc((100% - 18px) / 2);
  }
}

@media (min-width: 1080px) {
  .case-card {
    flex-basis: calc((100% - 36px) / 3);
  }
}

.case-card:hover {
  transform: none;
  box-shadow: 0 18px 44px rgba(2, 18, 70, 0.28);
}

.case-card-image {
  height: 132px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.case-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 30%, white 100%);
}

.case-card-logo {
  position: relative;
  z-index: 2;
  width: 72px;
  height: 72px;
  margin: -36px auto 12px;
  background: linear-gradient(180deg, #0b1a4e 0%, #09123a 100%);
  color: #ffffff;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 8px 20px rgba(0, 8, 36, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.case-card-logo img {
  max-height: 100%;
  filter: none;
  opacity: 1;
}

.case-card-body {
  padding: 2px 20px 22px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.case-card-body h4 {
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #314678;
  margin: 0 0 2px;
  text-align: center;
}

.case-stat {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
  color: #0f3fcc;
  margin: 0;
}

.case-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: #12378f;
  margin: 4px 0 0;
}

.case-desc {
  font-size: 0.77rem;
  line-height: 1.45;
  color: #4f5f89;
  margin: 6px 0 0;
}

.case-metric {
  background: linear-gradient(180deg, #f9fbff 0%, #f2f6ff 100%);
  border: 1px solid rgba(21, 76, 204, 0.16);
  border-radius: 16px;
  padding: 12px 12px 11px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.case-metric + .case-metric {
  margin-top: 0;
  padding-top: 12px;
  border-top: none;
}

.case-link {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: underline;
  background: none;
  border: none;
  cursor: pointer;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 48px;
}

.btn-cta-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  background: white;
  color: var(--text-navy);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s;
}

.btn-cta-white:hover {
  transform: translateY(-2px);
}

.product-detail .btn-cta-white {
  color: #050505;
  border: 1px solid rgba(5, 5, 5, 0.18);
}

.btn-cta-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  background: var(--accent);
  color: white;
  border: 2px solid white;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 700;
  transition: filter 0.2s, transform 0.2s;
}

.btn-cta-whatsapp:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}

/* Quem Somos - white section */
.about-section {
  padding: 100px 0;
  background: #ffffff;
  color: var(--text-navy);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, #d1d5db 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.4;
  pointer-events: none;
}

.about-arc-top-left,
.about-arc-top-right {
  position: absolute;
  width: 280px;
  height: 280px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  pointer-events: none;
}

.about-arc-top-left {
  top: -140px;
  left: -80px;
  border-bottom-color: transparent;
  border-right-color: transparent;
}

.about-arc-top-right {
  top: -100px;
  right: -120px;
  border-bottom-color: transparent;
  border-left-color: transparent;
}

.about-section .section-label {
  color: var(--accent);
}

.about-grid {
  display: grid;
  gap: 48px;
  position: relative;
  z-index: 1;
}

@media (min-width: 900px) {
  .about-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }
}

.about-grid h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.125rem);
  font-weight: 700;
  line-height: 1.16;
  margin: 0 0 14px;
  color: var(--text-navy);
}

.about-grid p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-body);
  margin: 0 0 16px;
}

.about-quote {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  font-weight: 700;
  font-style: italic;
  color: var(--accent);
  margin: 32px 0;
  line-height: 1.4;
}

.about-image-wrap {
  position: relative;
  width: min(100%, 430px);
  margin: 0 auto;
}

.about-frame {
  border: 6px solid var(--accent);
  border-radius: 40px;
  overflow: hidden;
  background: #f8fafc;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.about-frame img {
  width: 110%;
  max-width: none;
  flex: 0 0 auto;
  height: auto;
  aspect-ratio: auto;
  object-fit: initial;
  object-position: initial;
  margin-left: auto;
}

.about-caption {
  display: block;
  margin: 14px auto 0;
  max-width: 36ch;
  writing-mode: horizontal-tb !important;
  transform: none !important;
  rotate: 0deg;
  text-align: center;
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0;
  text-transform: none;
  color: var(--text-body);
  line-height: 1.35;
  white-space: normal;
  text-wrap: pretty;
}

@media (min-width: 900px) {
  .about-image-wrap {
    margin: 0;
    justify-self: end;
  }
}

/* FAQ */
.faq-section {
  padding: 96px 0 112px;
  background: linear-gradient(180deg, #050a1a 0%, var(--bg-deep) 100%);
  color: white;
}

.faq-header {
  text-align: center;
  margin-bottom: 52px;
}

.faq-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin: 0 0 14px;
}

.faq-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: white;
  margin: 0 0 16px;
}

.faq-intro {
  max-width: 560px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  line-height: 1.65;
}

/* Search + filter controls */
.faq-controls {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 760px;
  margin: 0 auto 52px;
}

.faq-search-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.faq-search-icon {
  position: absolute;
  left: 16px;
  color: rgba(255, 255, 255, 0.38);
  pointer-events: none;
  flex-shrink: 0;
}

.faq-search-input {
  width: 100%;
  padding: 15px 48px 15px 46px;
  background: rgba(255, 255, 255, 0.07);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  color: white;
  font-size: 0.9375rem;
  font-family: var(--font-sans);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.faq-search-input::placeholder {
  color: rgba(255, 255, 255, 0.32);
}

.faq-search-input:focus {
  border-color: var(--accent);
  background: rgba(0, 86, 255, 0.09);
}

.faq-search-clear {
  position: absolute;
  right: 14px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.38);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  padding: 4px 6px;
  transition: color 0.15s;
}

.faq-search-clear:hover { color: white; }

.faq-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.faq-tag {
  padding: 8px 20px;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  background: none;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.8125rem;
  font-weight: 500;
  font-family: var(--font-sans);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.faq-tag:hover {
  border-color: rgba(255, 255, 255, 0.35);
  color: white;
}

.faq-tag.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}

/* FAQ accordion items */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.faq-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 24px 0;
  text-align: left;
  font-size: 1rem;
  font-weight: 500;
  font-family: var(--font-sans);
  color: rgba(255, 255, 255, 0.82);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}

.faq-trigger:hover { color: white; }

.faq-item.is-open .faq-trigger { color: white; }

.faq-chevron {
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.35);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s;
}

.faq-item.is-open .faq-chevron {
  transform: rotate(180deg);
  color: var(--accent-light);
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.is-open .faq-panel {
  max-height: 900px;
}

.faq-panel-inner {
  padding: 0 0 28px;
}

.faq-panel-inner p {
  font-size: 0.9375rem;
  line-height: 1.78;
  color: rgba(255, 255, 255, 0.62);
  margin: 0 0 12px;
}

.faq-panel-inner p:last-child { margin-bottom: 0; }

.faq-panel-inner ul {
  margin: 6px 0 14px 0;
  padding-left: 0;
  list-style: none;
}

.faq-panel-inner ul li {
  position: relative;
  padding-left: 20px;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 4px;
}

.faq-panel-inner ul li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--accent-light);
  font-size: 0.75rem;
  top: 4px;
}

.faq-panel-inner strong { color: white; font-weight: 600; }

/* FAQ empty state */
.faq-empty {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.9375rem;
}

.faq-empty-reset {
  background: none;
  border: none;
  color: var(--accent-light);
  text-decoration: underline;
  cursor: pointer;
  font-size: inherit;
  font-family: inherit;
}

/* FAQ CTA row */
.faq-cta-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 60px;
  text-align: center;
}

.faq-cta-row p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 1rem;
  margin: 0;
}

@media (min-width: 640px) {
  .faq-cta-row {
    flex-direction: row;
    justify-content: center;
  }
}

.btn-faq {
  display: inline-block;
  padding: 14px 32px;
  background: var(--accent);
  color: white;
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  font-weight: 700;
  transition: background 0.2s, transform 0.15s;
}

.btn-faq:hover {
  background: #0044cc;
  transform: translateY(-1px);
}

/* Legacy accordion (kept for product pages) */
.accordion-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  text-align: left;
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
}

.accordion-trigger .plus {
  font-size: 1.5rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.3);
  transition: transform 0.3s;
}

.accordion-item.is-open .accordion-trigger .plus {
  transform: rotate(45deg);
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.accordion-item.is-open .accordion-panel {
  max-height: 600px;
}

.accordion-panel p {
  padding: 0 0 20px;
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
}

/* FAQ standalone page */
.faq-page-hero {
  background: linear-gradient(135deg, rgba(0, 27, 110, 0.97) 0%, rgba(0, 10, 52, 0.97) 100%);
  padding: 72px 0 64px;
  text-align: center;
  border-bottom: 1px solid rgba(0, 174, 239, 0.18);
}

.faq-page-hero-inner {
  max-width: 640px;
  margin: 0 auto;
}

.faq-page-hero-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin: 0 0 16px;
}

.faq-page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 800;
  color: white;
  margin: 0 0 18px;
  line-height: 1.1;
}

.faq-page-hero-sub {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.62);
  margin: 0;
}

/* Section variant on standalone page (no header block — uses hero above) */
.faq-section--page {
  padding-top: 64px;
}

.faq-section--page .faq-controls {
  margin-top: 0;
}

/* Demo IA */
.demo-ia-section {
  padding: 80px 0 100px;
  background: linear-gradient(180deg, #0a1035 0%, #050a1a 100%);
  text-align: center;
  position: relative;
}

.demo-ia-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0, 86, 255, 0.15) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.5;
}

.demo-ia-section .container {
  position: relative;
  z-index: 1;
}

.demo-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--accent-light);
  margin-bottom: 16px;
}

.demo-logo-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #0056ff, #00d4ff);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  color: white;
}

.demo-ia-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  margin: 0 0 12px;
}

.demo-ia-section .demo-sub {
  max-width: 640px;
  margin: 0 auto 40px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

.demo-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.demo-card {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 16px;
  background: rgba(8, 18, 55, 0.65);
  color: #ffffff;
  font-size: 0.8125rem;
  line-height: 1.55;
  text-align: left;
  transition: border-color 0.25s, background 0.25s, transform 0.2s;
}

.demo-card:hover {
  border-color: rgba(0, 174, 239, 0.65);
  background: rgba(0, 86, 255, 0.22);
  color: #ffffff;
  transform: translateY(-2px);
}

.demo-search {
  display: flex;
  align-items: center;
  max-width: 720px;
  margin: 0 auto;
  background: white;
  border-radius: var(--radius-pill);
  padding: 8px 8px 8px 20px;
  gap: 12px;
}

.demo-search .search-icon {
  color: var(--accent);
  font-weight: 700;
  font-size: 1.25rem;
}

.demo-search input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 0.9375rem;
  color: var(--text-navy);
  background: transparent;
}

.demo-search .search-submit {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--text-navy);
  color: white;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ─── Seção de Segurança ──────────────────────────────────── */
.security-section {
  position: relative;
  overflow: hidden;
  padding: 88px 0;
  color: #e8efff;
  background:
    radial-gradient(circle at 22% 10%, rgba(0, 120, 255, 0.28), transparent 48%),
    radial-gradient(circle at 80% 28%, rgba(0, 190, 255, 0.16), transparent 40%),
    linear-gradient(180deg, #040d4a 0%, #020933 55%, #010727 100%);
}

.security-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.3;
  background-image: radial-gradient(circle, rgba(140, 190, 255, 0.45) 1px, transparent 1px);
  background-size: 22px 22px;
}

.security-section::after {
  content: "";
  position: absolute;
  inset: -12% -6%;
  pointer-events: none;
  opacity: 0.42;
  background:
    radial-gradient(circle at 18% 24%, rgba(89, 181, 255, 0.2), transparent 26%),
    radial-gradient(circle at 82% 18%, rgba(53, 132, 255, 0.16), transparent 24%),
    linear-gradient(115deg, transparent 24%, rgba(110, 206, 255, 0.1) 50%, transparent 76%);
  transform: translate3d(-2%, 0, 0);
  animation: securityAurora 18s ease-in-out infinite alternate;
}

.security-shell {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 32px;
}

.security-hero {
  display: grid;
  gap: 30px;
  align-items: center;
}

.security-copy > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.72s ease, transform 0.72s ease;
}

.security-section.is-animated .security-copy > * {
  opacity: 1;
  transform: translateY(0);
}

.security-section.is-animated .security-copy > :nth-child(1) { transition-delay: 0.06s; }
.security-section.is-animated .security-copy > :nth-child(2) { transition-delay: 0.16s; }
.security-section.is-animated .security-copy > :nth-child(3) { transition-delay: 0.28s; }

.security-kicker {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #4cb2ff;
}

.security-copy h2 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.07;
  color: #f3f7ff;
}

.security-copy h2 span {
  color: #1c95ff;
}

.security-lead {
  margin: 0;
  max-width: 52ch;
  font-size: 1.075rem;
  line-height: 1.6;
  color: rgba(226, 236, 255, 0.9);
}

.security-visual {
  position: relative;
  min-height: 280px;
  display: grid;
  place-items: center;
}

.security-visual::before,
.security-visual::after {
  content: none;
  position: absolute;
  inset: 50% auto auto 50%;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.8);
  opacity: 0;
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.security-visual::before {
  width: min(74vw, 320px);
  height: min(74vw, 320px);
  border: 1px solid rgba(108, 196, 255, 0.22);
  box-shadow: 0 0 0 24px rgba(38, 111, 255, 0.05), 0 0 70px rgba(60, 172, 255, 0.12);
}

.security-visual::after {
  width: min(66vw, 260px);
  height: min(66vw, 260px);
  background: radial-gradient(circle, rgba(91, 194, 255, 0.18) 0%, rgba(91, 194, 255, 0) 70%);
  filter: blur(10px);
}

.security-section.is-animated .security-visual::before,
.security-section.is-animated .security-visual::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.security-visual-art {
  width: min(100%, 520px);
  height: auto;
  filter: drop-shadow(0 16px 40px rgba(8, 139, 255, 0.35));
  opacity: 0;
  transform: translateY(20px) scale(0.94) rotate(-5deg);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.security-section.is-animated .security-visual-art {
  opacity: 1;
  transform: translateY(0) scale(1) rotate(0deg);
  animation: securityFloat 7.5s ease-in-out 0.9s infinite;
}

.security-block {
  background: rgba(3, 20, 88, 0.58);
  border: 1px solid rgba(77, 151, 255, 0.25);
  border-radius: 18px;
  padding: 22px 20px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  position: relative;
  overflow: hidden;
}

.security-block::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 0%, rgba(138, 211, 255, 0.08) 48%, transparent 72%);
  transform: translateX(-120%);
}

.security-section.is-animated .security-block::after {
  animation: securitySweep 1.4s ease 0.35s forwards;
}

.security-block-title {
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #f1f6ff;
}

.security-block-title::before,
.security-block-title::after {
  content: "";
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, transparent 0%, rgba(106, 176, 255, 0.7) 100%);
  transform: scaleX(0.15);
  opacity: 0.25;
  transition: transform 0.8s ease, opacity 0.8s ease;
}

.security-block-title::after {
  background: linear-gradient(90deg, rgba(106, 176, 255, 0.7) 0%, transparent 100%);
  transform-origin: right center;
}

.security-block-title::before {
  transform-origin: left center;
}

.security-section.is-animated .security-block-title::before,
.security-section.is-animated .security-block-title::after {
  transform: scaleX(1);
  opacity: 1;
}

.security-block-title span {
  color: #1f9dff;
}

.security-motives,
.security-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.security-motive-card,
.security-stat-card {
  position: relative;
  border-radius: 18px;
  border: 1px solid rgba(125, 176, 255, 0.12);
  background: linear-gradient(180deg, rgba(25, 34, 65, 0.55), rgba(11, 15, 30, 0.5));
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  padding: 20px;
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.35s ease,
    box-shadow 0.35s ease;
  overflow: hidden;
}

.security-motive-card.is-animated,
.security-stat-card.is-animated {
  opacity: 1;
  transform: none;
}

.security-motive-card::before,
.security-stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 30%;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(39, 211, 245, 0.1), transparent);
  transform: translateX(-130%);
}

.security-motive-card.is-animated::before,
.security-stat-card.is-animated::before {
  animation: securityCardShine 5.5s linear infinite;
}

.security-motive-card:hover,
.security-stat-card:hover {
  border-color: rgba(125, 176, 255, 0.42);
  box-shadow: 0 26px 64px -30px rgba(46, 107, 255, 0.65);
  transform: translateY(-7px);
}

.security-card-value,
.security-motive-card h4,
.security-motive-card p,
.security-stat-card strong,
.security-stat-card p {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.security-motive-card.is-animated .security-card-value,
.security-motive-card.is-animated h4,
.security-motive-card.is-animated p,
.security-stat-card.is-animated strong,
.security-stat-card.is-animated p {
  opacity: 1;
  transform: translateY(0);
}

.security-motive-card.is-animated .security-card-value,
.security-motive-card.is-animated h4,
.security-stat-card.is-animated strong {
  transition-delay: 0.12s;
}

.security-motive-card.is-animated p,
.security-stat-card.is-animated p {
  transition-delay: 0.2s;
}

.security-motives .security-motive-card:nth-child(1),
.security-stats .security-stat-card:nth-child(1) { transition-delay: 0.06s; }
.security-motives .security-motive-card:nth-child(2),
.security-stats .security-stat-card:nth-child(2) { transition-delay: 0.12s; }
.security-motives .security-motive-card:nth-child(3),
.security-stats .security-stat-card:nth-child(3) { transition-delay: 0.18s; }
.security-motives .security-motive-card:nth-child(4),
.security-stats .security-stat-card:nth-child(4) { transition-delay: 0.24s; }
.security-motives .security-motive-card:nth-child(5),
.security-stats .security-stat-card:nth-child(5) { transition-delay: 0.3s; }
.security-motives .security-motive-card:nth-child(6),
.security-stats .security-stat-card:nth-child(6) { transition-delay: 0.36s; }

.security-motives .security-motive-card:nth-child(1)::before,
.security-stats .security-stat-card:nth-child(1)::before { animation-delay: 0.1s; }
.security-motives .security-motive-card:nth-child(2)::before,
.security-stats .security-stat-card:nth-child(2)::before { animation-delay: 0.18s; }
.security-motives .security-motive-card:nth-child(3)::before,
.security-stats .security-stat-card:nth-child(3)::before { animation-delay: 0.26s; }
.security-motives .security-motive-card:nth-child(4)::before,
.security-stats .security-stat-card:nth-child(4)::before { animation-delay: 0.34s; }
.security-motives .security-motive-card:nth-child(5)::before,
.security-stats .security-stat-card:nth-child(5)::before { animation-delay: 0.42s; }
.security-motives .security-motive-card:nth-child(6)::before,
.security-stats .security-stat-card:nth-child(6)::before { animation-delay: 0.5s; }

.security-card-icon,
.security-stat-icon {
  display: none;
}

.security-card-value,
.security-stat-card strong {
  display: block;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3vw, 2.3rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  color: #eaf4ff;
  text-shadow: 0 0 30px rgba(39, 211, 245, 0.35);
}

.security-card-value {
  color: #eaf4ff;
}

.security-motive-card h4 {
  margin: 10px 0 0;
  color: #eef4ff;
  font-size: 0.98rem;
  line-height: 1.32;
  text-transform: none;
  letter-spacing: 0;
  font-family: inherit;
  font-weight: 700;
}

.security-motive-card p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  line-height: 1.55;
  max-width: none;
}

.security-stat-card strong {
  margin-bottom: 0;
  transform-origin: left center;
}

.security-stat-card strong.is-counted {
  animation: securityNumberPop 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.security-stat-card p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  line-height: 1.45;
  letter-spacing: 0;
  max-width: none;
}

.security-nps {
  margin: 18px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.75s ease 0.42s, transform 0.75s ease 0.42s;
}

.security-nps--hero {
  position: relative;
  z-index: 1;
  margin: 0;
  flex-direction: column;
  gap: 18px;
}

.security-nps-ring-wrap {
  position: relative;
  width: 112px;
  height: 112px;
  flex: 0 0 112px;
}

.security-nps--hero .security-nps-ring-wrap {
  width: clamp(168px, 20vw, 224px);
  height: clamp(168px, 20vw, 224px);
  flex-basis: clamp(168px, 20vw, 224px);
  isolation: isolate;
}

.security-nps--hero .security-nps-ring-wrap::before,
.security-nps--hero .security-nps-ring-wrap::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.8);
  opacity: 0;
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.security-nps--hero .security-nps-ring-wrap::before {
  width: min(50vw, 240px);
  height: min(50vw, 240px);
  border: 1px solid rgba(108, 196, 255, 0.22);
  box-shadow: 0 0 0 10px rgba(38, 111, 255, 0.05), 0 0 42px rgba(60, 172, 255, 0.12);
}

.security-nps--hero .security-nps-ring-wrap::after {
  width: min(44vw, 200px);
  height: min(44vw, 200px);
  background: radial-gradient(circle, rgba(91, 194, 255, 0.18) 0%, rgba(91, 194, 255, 0) 70%);
  filter: blur(10px);
}

.security-section.is-animated .security-nps--hero .security-nps-ring-wrap::before,
.security-section.is-animated .security-nps--hero .security-nps-ring-wrap::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.security-section.is-animated .security-nps {
  opacity: 1;
  transform: translateY(0);
}

.security-nps-ring {
  width: 112px;
  height: 112px;
  transform: rotate(-90deg);
}

.security-nps--hero .security-nps-ring {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 18px 36px rgba(8, 139, 255, 0.32));
}

.security-ring-bg {
  stroke: rgba(125, 176, 255, 0.14);
}

.security-ring-fg {
  stroke: #27d3f5;
  stroke-linecap: round;
  transition: stroke-dashoffset 1.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.security-nps-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: translateY(-4px);
}

.security-nps-score {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
  margin: 0;
  color: #eaf4ff;
  text-shadow: 0 0 30px rgba(39, 211, 245, 0.35);
}

.security-nps--hero .security-nps-score {
  font-size: clamp(2.1rem, 4.2vw, 3.45rem);
}

.security-nps-label {
  margin-top: 2px;
  font-size: 9px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.24em;
  color: rgba(255, 255, 255, 0.4);
}

.security-nps-copy {
  margin: 0;
  max-width: 220px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.92rem;
  line-height: 1.55;
  text-align: left;
}

.security-nps--hero .security-nps-copy {
  max-width: 310px;
  color: rgba(226, 236, 255, 0.82);
  font-size: 1.02rem;
  text-align: center;
}

@keyframes securityAurora {
  0% {
    transform: translate3d(-2%, -1%, 0) scale(1);
  }
  100% {
    transform: translate3d(2%, 1%, 0) scale(1.04);
  }
}

@keyframes securityFloat {
  0%, 100% {
    transform: translateY(0) scale(1) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) scale(1.012) rotate(1deg);
  }
}

@keyframes securitySweep {
  0% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(140%);
  }
}

@keyframes securityCardShine {
  0% {
    transform: translateX(-135%);
  }
  100% {
    transform: translateX(240%);
  }
}

@keyframes securityIconPulse {
  0%, 100% {
    transform: translateY(0) scale(1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 12px 18px rgba(0, 0, 0, 0.12);
  }
  50% {
    transform: translateY(-2px) scale(1.03);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 16px 26px rgba(17, 90, 190, 0.26);
  }
}

@keyframes securityNumberPop {
  0% {
    transform: scale(0.9);
    text-shadow: 0 0 0 rgba(76, 178, 255, 0);
  }
  60% {
    transform: scale(1.06);
    text-shadow: 0 0 22px rgba(95, 196, 255, 0.28);
  }
  100% {
    transform: scale(1);
    text-shadow: 0 0 18px rgba(76, 178, 255, 0.18);
  }
}

@media (prefers-reduced-motion: reduce) {
  .security-section::after,
  .security-visual-art,
  .security-motive-card.is-animated::before,
  .security-stat-card.is-animated::before,
  .security-motive-card.is-animated .security-card-icon,
  .security-stat-card.is-animated .security-stat-icon,
  .security-section.is-animated .security-block::after,
  .security-stat-card strong.is-counted {
    animation: none;
  }

  .security-copy > *,
  .security-visual::before,
  .security-visual::after,
  .security-visual-art,
  .security-motive-card,
  .security-stat-card,
  .security-motive-card h4,
  .security-motive-card p,
  .security-stat-card strong,
  .security-stat-card p,
  .security-card-icon,
  .security-stat-icon,
  .security-nps-ring-wrap,
  .security-nps-copy,
  .security-nps {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (min-width: 1024px) {
  .security-hero {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 40px;
  }
}

@media (max-width: 960px) {
  .security-motives,
  .security-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .security-section {
    padding: 72px 0;
  }

  .security-visual {
    min-height: 250px;
  }

  .security-card-icon,
  .security-stat-icon {
    width: 44px;
    height: 44px;
  }

  .security-card-icon img,
  .security-stat-icon img {
    width: 28px;
    height: 28px;
  }

  .security-motives,
  .security-stats {
    grid-template-columns: 1fr;
  }

  .security-block-title {
    gap: 8px;
    font-size: 1rem;
  }

  .security-nps {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .security-nps-copy {
    max-width: none;
    text-align: center;
  }
}

/* ─── Demo chat inline ────────────────────────────────────── */
.demo-chat-shell {
  max-width: 780px;
  margin: 0 auto;
  background: rgba(8, 18, 55, 0.7);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 32px 80px rgba(0,0,0,0.45);
}

.demo-chat-topbar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(0,0,0,0.3);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.demo-chat-avatar-lg {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, #0056ff, #00aeef);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
  letter-spacing: 0.5px;
}

.demo-chat-name {
  font-size: 13px;
  font-weight: 700;
  color: white;
  margin: 0;
}

.demo-chat-status {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  margin: 2px 0 0;
  display: flex;
  align-items: center;
  gap: 5px;
}

.demo-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #00E5A0;
  box-shadow: 0 0 6px #00E5A0;
  display: inline-block;
  animation: calcPulse 2s ease-in-out infinite;
}

.demo-chat-messages {
  min-height: 260px;
  max-height: 380px;
  overflow-y: auto;
  padding: 20px 20px 12px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.12) transparent;
}

.demo-chat-messages::-webkit-scrollbar { width: 4px; }
.demo-chat-messages::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 4px; }

/* Demo message bubbles — same style as floating chat */
.demo-msg {
  display: flex;
  gap: 10px;
  max-width: 88%;
}

.demo-msg--bot { align-self: flex-start; }
.demo-msg--user { align-self: flex-end; flex-direction: row-reverse; }

.demo-msg-avatar {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: linear-gradient(135deg, #0056ff, #00aeef);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
  margin-top: 2px;
  letter-spacing: 0.3px;
}

.demo-msg-bubble {
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 0.875rem;
  line-height: 1.6;
}

.demo-msg--bot .demo-msg-bubble {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-radius: 4px 14px 14px 14px;
}

.demo-msg--user .demo-msg-bubble {
  background: linear-gradient(135deg, #0056ff, #0080ff);
  color: #fff;
  border-radius: 14px 4px 14px 14px;
  padding-right: 20px;
  min-width: 64px;
}

.demo-msg--bot .demo-msg-bubble a { color: #7dd3fc; }

/* Typing dots reuse */
.demo-typing .demo-msg-bubble {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 14px 16px;
}

.demo-chat-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 20px 14px;
}

.demo-chip {
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.85);
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  text-align: left;
  line-height: 1.4;
}

.demo-chip:hover {
  background: rgba(0, 86, 255, 0.25);
  border-color: rgba(0, 174, 239, 0.5);
  color: white;
}

.demo-chat-form {
  border-top: 1px solid rgba(255,255,255,0.08);
  border-radius: 0 !important;
  margin: 0 !important;
  max-width: 100% !important;
}

/* CTA blocks */
.cta-blue {
  padding: 80px 0;
  background: var(--bg-deep);
  text-align: center;
}

.cta-blue h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin: 0 0 20px;
}

.cta-blue p {
  max-width: 720px;
  margin: 0 auto 32px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.8);
}

.cta-blue strong {
  color: white;
}

.btn-cta-schedule {
  padding: 16px 36px;
  background: #f0f2f8;
  color: var(--text-navy);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 700;
  transition: transform 0.2s;
}

.btn-cta-schedule:hover {
  transform: translateY(-2px);
}

.cta-white-block {
  padding: 80px 0;
  background: white;
  text-align: center;
  color: var(--text-navy);
}

.cta-white-block h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--text-navy);
  margin: 0 0 20px;
}

.cta-white-block p {
  max-width: 680px;
  margin: 0 auto 28px;
  color: var(--text-muted);
  line-height: 1.65;
}

.btn-cta-green {
  padding: 16px 32px;
  background: var(--accent);
  color: white;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 700;
  transition: filter 0.2s;
}

.btn-cta-green:hover {
  filter: brightness(1.05);
}

/* Footer */
.site-footer {
  background: var(--footer-bg);
  padding: 64px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 22px;
}

.footer-col-brand .logo-brand {
  width: min(52vw, 230px);
  overflow: hidden;
  margin: 0 0 16px -24px;
}

.footer-col-brand .logo-brand img {
  width: 100%;
  height: 70px;
  max-width: none;
  object-fit: cover;
  object-position: left 52%;
}

@media (min-width: 768px) {
  .footer-col-brand .logo-brand {
    width: 240px;
    margin-left: -30px;
  }

  .footer-col-brand .logo-brand img {
    height: 74px;
  }
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.85);
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.footer-social a svg {
  display: block;
  flex-shrink: 0;
}

.footer-social a:hover {
  border-color: var(--accent);
  background: rgba(0, 86, 255, 0.2);
}

.footer-grid {
  display: grid;
  gap: 32px;
  padding-bottom: 48px;
}

@media (min-width: 900px) {
  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr 1.2fr 1.4fr;
    gap: 24px;
  }
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 4px;
}

.footer-col .footer-sub {
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin: 0 0 16px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 8px;
}

.terms-page .site-footer .footer-col li,
.blog-page .site-footer .footer-col li {
  color: #ffffff;
}

.footer-col a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.88);
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--accent-light);
}

.footer-badges {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.footer-badge.lgpd {
  color: #42ee7f;
  border-color: rgba(66, 238, 127, 0.4);
}

a.footer-badge:hover {
  background: rgba(255, 255, 255, 0.06);
}

a.footer-badge.lgpd:hover {
  background: rgba(66, 238, 127, 0.1);
  border-color: rgba(66, 238, 127, 0.58);
}

.contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
}

.contact-item .icon {
  flex-shrink: 0;
  opacity: 0.7;
}

.notify-card {
  background: #dce8ff;
  border-radius: 20px;
  padding: 24px;
  color: var(--text-navy);
}

.notify-card h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 8px;
}

.notify-card p {
  font-size: 0.8125rem;
  color: var(--text-body);
  margin: 0 0 16px;
  line-height: 1.5;
}

.notify-card input[type="text"],
.notify-card input[type="tel"],
.notify-card input[type="email"] {
  width: 100%;
  padding: 12px 14px;
  border: none;
  border-radius: 10px;
  margin-bottom: 10px;
  font-size: 0.875rem;
}

.notify-card .checkbox-row {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 10px;
  color: var(--text-body);
  margin-bottom: 16px;
}

.notify-card .checkbox-row a {
  text-decoration: underline;
  color: var(--accent);
}

.notify-card .btn-submit {
  width: 100%;
  padding: 12px;
  background: var(--accent);
  color: white;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
}

.notify-card .btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.newsletter-feedback {
  min-height: 18px;
  margin-top: 10px;
}

.newsletter-msg {
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 12px;
  line-height: 1.4;
  border: 1px solid transparent;
}

.newsletter-msg.is-info {
  color: #0c2e7a;
  background: rgba(0, 96, 255, 0.08);
  border-color: rgba(0, 96, 255, 0.22);
}

.newsletter-msg.is-success {
  color: #0a542d;
  background: rgba(33, 191, 115, 0.12);
  border-color: rgba(33, 191, 115, 0.3);
}

.newsletter-msg.is-error {
  color: #7a1414;
  background: rgba(230, 56, 70, 0.12);
  border-color: rgba(230, 56, 70, 0.3);
}

.footer-copy {
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px;
  text-align: center;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
}

.blog-page #footer-root,
.terms-page #footer-root {
  background: var(--footer-bg);
}

.site-footer--internal {
  padding-top: 36px;
}

.site-footer--internal .footer-top {
  margin-bottom: 14px;
  justify-content: space-between;
  gap: 16px;
}

.site-footer--internal .footer-top .logo-brand {
  width: min(52vw, 190px);
  margin: 0;
  overflow: hidden;
}

.site-footer--internal .footer-top .logo-brand img {
  width: 100%;
  height: auto;
  max-height: 56px;
  object-fit: contain;
  object-position: left center;
  transform: none;
}

.site-footer--internal .footer-grid {
  gap: 20px;
  padding-bottom: 28px;
}

.site-footer--internal .footer-col ul {
  margin-top: 6px;
}

.site-footer--internal .footer-col li {
  margin-bottom: 6px;
}

.site-footer--internal .footer-col a,
.site-footer--internal .footer-col li,
.site-footer--internal .contact-item {
  font-size: 0.8125rem;
}

.site-footer--internal .footer-copy {
  padding: 12px;
}

@media (min-width: 900px) {
  .site-footer--internal .footer-grid {
    grid-template-columns: 1fr 1fr 1.25fr;
  }
}

@media (max-width: 640px) {
  .site-footer--internal .footer-top .logo-brand {
    width: min(68vw, 170px);
  }

  .site-footer--internal .footer-top .logo-brand img {
    max-height: 50px;
  }
}

/* Product panels hidden */
.product-panel {
  display: none;
}

.product-panel.is-active {
  display: block;
}

/* Panel enter animation */
@keyframes panelFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.product-panel.panel-enter {
  animation: panelFadeIn 0.35s ease forwards;
}

/* Tab arrow hover */
.tab-arrow:hover {
  background: rgba(0, 86, 255, 0.35);
  color: white;
}

/* ─── Dores section ─────────────────────────────────────── */
/* Market section */
.market-section {
  position: relative;
  overflow: hidden;
  padding: 96px 0 104px;
  background: radial-gradient(100% 80% at 15% 20%, #062019 0%, #060b0c 60%);
}

.market-columns {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  padding: 0 40px;
  pointer-events: none;
  opacity: 0.06;
}

.market-col {
  width: 40px;
  border-radius: 16px 16px 0 0;
  transform-origin: bottom center;
  animation: marketColumnRise 5s ease-in-out infinite;
}

.market-col--good {
  background: #34e0a1;
}

.market-col--cyan {
  background: #27d3f5;
}

.market-col--1 { height: 30%; animation-delay: 0s; }
.market-col--2 { height: 55%; animation-delay: 0.6s; }
.market-col--3 { height: 42%; animation-delay: 1.1s; }
.market-col--4 { height: 68%; animation-delay: 0.3s; }
.market-col--5 { height: 50%; animation-delay: 0.9s; }
.market-col--6 { height: 78%; animation-delay: 1.4s; }

.market-shell {
  position: relative;
  z-index: 1;
}

.market-layout {
  display: grid;
  gap: 40px;
}

.market-kicker {
  margin: 0;
  color: #34e0a1;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.market-copy h2 {
  margin: 14px 0 0;
  color: #f5fbff;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.06;
}

.market-copy h2 span {
  color: rgba(255, 255, 255, 0.45);
}

.market-lead {
  margin: 20px 0 0;
  max-width: 40rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.0625rem;
  line-height: 1.75;
}

.market-lead strong {
  color: #34e0a1;
}

.market-chart-card,
.market-stat-card {
  position: relative;
  border-radius: 18px;
  border: 1px solid rgba(125, 176, 255, 0.12);
  background: linear-gradient(180deg, rgba(25, 34, 65, 0.55), rgba(11, 15, 30, 0.5));
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  overflow: hidden;
}

.market-chart-card {
  margin-top: 32px;
  padding: 20px;
}

.market-chart-label {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.market-chart {
  display: block;
  width: 100%;
  height: auto;
}

.market-chart-line {
  transition: stroke-dashoffset 2.2s ease;
}

.market-chart-dot {
  transform-origin: center;
  animation: marketDotPulse 1.8s ease-in-out infinite;
}

.market-stats {
  display: grid;
  gap: 20px;
}

.market-stat-card {
  padding: 24px;
}

.market-stat-card--featured {
  box-shadow: 0 30px 80px -30px rgba(46, 107, 255, 0.6);
}

.market-stat-sweep {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 30%;
  background: linear-gradient(90deg, transparent, rgba(39, 211, 245, 0.1), transparent);
  animation: marketSweep 5.5s linear infinite;
  pointer-events: none;
}

.market-stat-value {
  display: block;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.7rem);
  font-weight: 800;
  line-height: 1;
  text-shadow: 0 0 30px rgba(39, 211, 245, 0.35);
}

.market-stat-value--gradient {
  background: linear-gradient(100deg, #7db0ff, #27d3f5 55%, #34e0a1);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.market-stat-value--brand {
  color: #7db0ff;
}

.market-stat-value--cyan {
  color: #6fe7ff;
}

.market-stat-value--good {
  color: #34e0a1;
}

.market-stat-copy {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.market-stat-source {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.6875rem;
}

@keyframes marketColumnRise {
  0%,
  100% {
    transform: scaleY(0.25);
  }
  50% {
    transform: scaleY(1.07);
  }
}

@keyframes marketSweep {
  0% {
    transform: translateX(-130%);
  }
  100% {
    transform: translateX(240%);
  }
}

@keyframes marketDotPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.75);
  }
}

@media (min-width: 1024px) {
  .market-layout {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 470px);
    gap: 48px;
    align-items: center;
  }

  .market-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .market-section {
    padding: 76px 0 82px;
  }

  .market-columns {
    padding: 0 16px;
  }

  .market-col {
    width: 26px;
  }

  .market-stat-card,
  .market-chart-card {
    padding: 18px;
  }

  .market-stat-copy {
    font-size: 0.875rem;
  }
}

.dores-section {
  padding: 80px 0 88px;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.dores-section::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 42%;
  background-image: radial-gradient(circle, rgba(0, 122, 255, 0.12) 1.5px, transparent 1.5px);
  background-size: 20px 20px;
  mask-image: linear-gradient(to left, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
  pointer-events: none;
}

.dores-header {
  text-align: center;
  margin-bottom: 48px;
}

.dores-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0055c7;
  margin: 0 0 10px;
}

.dores-subtitle {
  font-size: 1.0625rem;
  color: rgba(6, 22, 47, 0.72);
  margin: 0;
}

.dores-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
  max-width: 1240px;
  margin: 0 auto 40px;
}

@media (min-width: 640px) {
  .dores-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .dores-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 1320px) {
  .dores-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.dore-card {
  background: linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
  border: 1px solid rgba(0, 122, 255, 0.16);
  border-radius: 20px;
  padding: 30px 26px;
  min-height: 240px;
  box-shadow: 0 16px 34px rgba(8, 43, 112, 0.08);
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
}

.dore-card:hover {
  border-color: rgba(0, 122, 255, 0.42);
  background: linear-gradient(180deg, #ffffff 0%, #eef6ff 100%);
  transform: translateY(-4px);
}

.dore-card-head {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

.dore-card-head h3 {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 700;
  color: #0a244a;
  margin: 0;
  line-height: 1.35;
}

.dore-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(0, 122, 255, 0.12);
  border: 1px solid rgba(0, 122, 255, 0.3);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #0055c7;
  flex-shrink: 0;
  line-height: 1;
}

.dore-card p {
  font-size: 0.845rem;
  line-height: 1.62;
  color: rgba(10, 36, 74, 0.76);
  margin: 0;
}

.dores-roi {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.7);
}

.dores-roi strong {
  color: white;
}

/* ─── Impactos Reais section ───────────────────────────────────────────── */
.impactos-section {
  padding: 86px 0 92px;
  background: linear-gradient(180deg, #04102a 0%, #061a43 100%);
  position: relative;
  overflow: hidden;
}

.impactos-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 88% 18%, rgba(0, 174, 239, 0.2) 0%, transparent 36%),
    radial-gradient(circle at 10% 82%, rgba(0, 122, 255, 0.16) 0%, transparent 42%);
  pointer-events: none;
}

.impactos-header {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 46px;
}

.impactos-tag {
  margin: 0 0 14px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8fe9ff;
}

.impactos-header h2 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4.2vw, 2.65rem);
  font-weight: 700;
  color: #ffffff;
}

.impactos-subtitle {
  margin: 0 auto;
  max-width: 760px;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.76);
}

.impactos-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

@media (min-width: 720px) {
  .impactos-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1120px) {
  .impactos-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.impacto-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(143, 233, 255, 0.22);
  border-radius: 20px;
  padding: 26px 22px;
  backdrop-filter: blur(2px);
  min-height: 220px;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.impacto-card:hover {
  transform: translateY(-4px);
  border-color: rgba(143, 233, 255, 0.5);
  background: linear-gradient(180deg, rgba(143, 233, 255, 0.2) 0%, rgba(143, 233, 255, 0.08) 100%);
}

.impacto-card h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.35;
}

.impacto-card p {
  margin: 0;
  font-size: 0.89rem;
  line-height: 1.66;
  color: rgba(255, 255, 255, 0.78);
}

.impactos-roi {
  position: relative;
  z-index: 1;
  margin: 34px auto 0;
  max-width: 860px;
  text-align: center;
  font-size: 0.98rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.84);
}

.impactos-roi strong {
  color: #ffffff;
}

.impactos-cta-row {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.impactos-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 280px;
  padding: 14px 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffffff 0%, #d8ecff 100%);
  color: #052246;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.72);
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.impactos-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25);
  filter: brightness(1.03);
}

/* ─── Vitrine de produtos ────────────────────────────────── */
.produtos-vitrine {
  padding: 80px 0 96px;
  background: linear-gradient(180deg, #040d36 0%, var(--bg-deep) 100%);
}

.vitrine-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 700;
  color: white;
  text-align: center;
  margin: 0 0 48px;
}

.vitrine-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1220px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .vitrine-grid .vitrine-card { flex: 0 0 calc(50% - 10px); }
}

@media (min-width: 900px) {
  .vitrine-grid .vitrine-card { flex: 0 0 calc(33.333% - 14px); }
}

@media (min-width: 1200px) {
  .vitrine-grid .vitrine-card { flex: 0 0 calc(25% - 15px); }
}

.vitrine-card {
  flex: 0 0 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 36px 24px 32px;
  color: white;
  transition: border-color 0.25s, background 0.25s, transform 0.25s, box-shadow 0.25s;
}

.vitrine-card:hover {
  border-color: rgba(0, 174, 239, 0.55);
  background: rgba(0, 86, 255, 0.1);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.vitrine-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(0, 86, 255, 0.2);
  border: 1px solid rgba(0, 174, 239, 0.3);
  flex-shrink: 0;
  margin-bottom: 4px;
  transition: background 0.25s, border-color 0.25s;
}

.vitrine-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--accent-light);
}

.vitrine-card:hover .vitrine-icon {
  background: rgba(0, 174, 239, 0.25);
  border-color: rgba(0, 174, 239, 0.6);
}

.vitrine-card h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0;
  color: white;
}

.vitrine-card p {
  font-size: 0.8125rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

/* Animations — only hide elements after JS enables reveal, preventing blank page on slow connections */
@media (prefers-reduced-motion: no-preference) {
  .js-ready .fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .js-ready .fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── Hero device mockup ─────────────────────────────────── */
.hero-mockup {
  position: relative;
  max-width: 1040px;
  margin: 32px auto 0;
}

.hero-mockup::before {
  content: "";
  position: absolute;
  inset: -32px -24px;
  border-radius: 48px;
  background: radial-gradient(ellipse at 40% 50%, rgba(0, 86, 255, 0.55) 0%, rgba(0, 174, 239, 0.25) 50%, transparent 80%);
  filter: blur(48px);
  z-index: 0;
  pointer-events: none;
}

.hero-mockup-shell {
  position: relative;
  z-index: 1;
  border-radius: 18px;
  overflow: hidden;
  border: 1.5px solid rgba(0, 174, 239, 0.45);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06),
    0 40px 100px rgba(0, 0, 0, 0.65),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.hero-mockup-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  background: #0d1117;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.mockup-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  flex-shrink: 0;
}

.mockup-dot--red    { background: #ff5f57; }
.mockup-dot--yellow { background: #febc2e; }
.mockup-dot--green  { background: #28c840; }

.mockup-url-bar {
  flex: 1;
  max-width: 320px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  padding: 4px 14px;
  font-size: 11px;
  font-family: "Inter", monospace;
  color: rgba(255, 255, 255, 0.42);
  text-align: center;
  letter-spacing: 0.02em;
}

.hero-mockup-screen {
  background: #06090f;
  line-height: 0;
  position: relative;
}

.hero-mockup-screen img {
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 16 / 7;
  min-height: 240px;
}

.hero-mockup-screen--video {
  aspect-ratio: 16 / 9;
  min-height: 240px;
}

/* ── YouTube inline facade player ────────────────────────── */
.yt-facade {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
  overflow: hidden;
  display: block;
  line-height: 0;
}

.yt-facade img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease, filter 0.3s ease;
  filter: brightness(0.82);
}

.yt-facade:hover img {
  transform: scale(1.04);
  filter: brightness(0.65);
}

.yt-facade-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.36) 100%);
  pointer-events: none;
}

.yt-facade-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 80px;
  height: 80px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.22s cubic-bezier(.34,1.56,.64,1);
  pointer-events: none;
}

.yt-facade-play svg {
  width: 80px;
  height: 80px;
  filter: drop-shadow(0 6px 24px rgba(0,0,0,0.6));
}

.yt-facade:hover .yt-facade-play {
  transform: scale(1.15);
}

.yt-facade-hint {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.68);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: white;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 7px 20px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.18);
  white-space: nowrap;
  pointer-events: none;
  transition: opacity 0.2s;
}

.yt-facade:hover .yt-facade-hint {
  opacity: 0.7;
}

/* Active iframe (injected on click) */
.yt-facade-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  background: #000;
}

/* ─── CAPTCHA de diagnóstico ──────────────────────────────── */
.captcha-wrap {
  margin-top: 4px;
  padding: 14px 16px;
  background: #f0f4ff;
  border: 1.5px solid #cbd5e8;
  border-radius: 12px;
}

.captcha-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.captcha-shield {
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 12px;
  flex-shrink: 0;
}

.captcha-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.captcha-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.captcha-question {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-navy);
  white-space: nowrap;
  font-family: var(--font-display);
  min-width: 90px;
}

.captcha-input-field {
  flex: 1;
  max-width: 90px;
  padding: 10px 12px;
  border: 1.5px solid #cbd5e8;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-navy);
  font-family: var(--font-display);
  background: white;
  outline: none;
  transition: border-color 0.2s;
}

.captcha-input-field:focus {
  border-color: var(--accent);
}

.captcha-input-field.captcha-error-field {
  border-color: #ef4444;
  background: #fff5f5;
}

.captcha-refresh-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1.5px solid #cbd5e8;
  background: white;
  color: var(--text-muted);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
  flex-shrink: 0;
}

.captcha-refresh-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: rotate(30deg);
}

.captcha-error-msg {
  font-size: 12px;
  color: #ef4444;
  font-weight: 600;
  margin-top: 8px;
  display: none;
}

.captcha-ok-msg {
  font-size: 12px;
  color: #16a34a;
  font-weight: 600;
  margin-top: 8px;
  display: none;
}

/* ─── WhatsApp floating button ─────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1300;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #25d366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.5), 0 10px 40px rgba(37, 211, 102, 0.25), 0 2px 6px rgba(0, 0, 0, 0.18);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease;
  text-decoration: none;
  overflow: visible;
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.4);
  animation: waRipple 2.8s ease-out infinite;
  pointer-events: none;
}

@keyframes waRipple {
  0%   { transform: scale(0.86); opacity: 0.9; }
  70%  { transform: scale(1.18); opacity: 0; }
  100% { transform: scale(1.18); opacity: 0; }
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.65), 0 16px 50px rgba(37, 211, 102, 0.25);
}

/* Remove old chat-bubble stubs (kept for layout safety) */
.chat-bubble { display: none !important; }
.chat-widget { display: none !important; }
/* Launch live modal */
body.launch-modal-open {
  overflow: hidden;
}

.launch-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 14px;
}

.launch-modal.is-open {
  display: flex;
}

.launch-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 7, 18, 0.72);
  backdrop-filter: blur(12px);
}

.launch-modal-card {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  max-height: min(92vh, 620px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(56, 213, 255, 0.45) rgba(15, 23, 42, 0.34);
  background:
    radial-gradient(circle at 16% 0%, rgba(56, 213, 255, 0.16), transparent 34%),
    linear-gradient(180deg, #07111f 0%, #050b18 100%);
  border: 1px solid rgba(56, 213, 255, 0.26);
  border-radius: 18px;
  box-shadow: 0 28px 92px rgba(0, 0, 0, 0.56), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
  color: #f8fafc;
}

.launch-modal-card::-webkit-scrollbar {
  width: 7px;
}

.launch-modal-card::-webkit-scrollbar-track {
  background: rgba(15, 23, 42, 0.34);
}

.launch-modal-card::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(56, 213, 255, 0.7), rgba(59, 130, 246, 0.55));
  border-radius: 999px;
}

.launch-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(111, 231, 255, 0.3);
  border-radius: 50%;
  background: rgba(9, 26, 53, 0.82);
  color: #6fe7ff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.launch-modal-close:hover {
  transform: scale(1.06);
  background: rgba(56, 213, 255, 0.22);
  border-color: rgba(111, 231, 255, 0.54);
  color: #ffffff;
}

.launch-modal-close span {
  transform: translateY(-1px);
}

.launch-modal-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 7.7;
  background: #000;
  display: block;
  overflow: hidden;
}

.launch-modal-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 7, 18, 0.12) 0%, rgba(3, 7, 18, 0.08) 34%, rgba(3, 7, 18, 0.58) 100%),
    radial-gradient(circle at top left, rgba(56, 213, 255, 0.12), transparent 34%);
  pointer-events: none;
}

.launch-modal-video img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: brightness(0.82);
  transition: transform 0.25s ease, filter 0.25s ease;
}

.launch-modal-video:hover img {
  transform: scale(1.025);
  filter: brightness(0.68);
}

.launch-modal-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.launch-modal-play svg {
  width: 58px;
  height: 58px;
  filter: drop-shadow(0 8px 22px rgba(0, 0, 0, 0.52));
}

.launch-modal-copy {
  position: relative;
  padding: 14px 16px 16px;
  background: linear-gradient(180deg, rgba(8, 15, 32, 0.24), rgba(5, 11, 24, 0));
  border-top: 1px solid rgba(148, 163, 184, 0.1);
}

.launch-modal-kicker {
  display: inline-flex;
  margin: 0 0 14px;
  padding: 4px 9px;
  border: 1px solid rgba(56, 213, 255, 0.28);
  border-radius: 999px;
  color: #38d5ff;
  background: rgba(56, 213, 255, 0.08);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.launch-modal h2 {
  max-width: 500px;
  margin: 0 0 12px;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: clamp(1.08rem, 2.1vw, 1.42rem);
  line-height: 1.12;
}

.launch-modal-lead {
  margin: 0 0 16px;
  color: #c7d2e5;
  font-size: 0.88rem;
  line-height: 1.4;
}

.launch-countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
  margin: 0 0 10px;
}

.launch-countdown-item {
  min-height: 50px;
  padding: 6px 0 4px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.72);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.launch-countdown-item strong {
  color: #38d5ff;
  font-family: var(--font-display);
  font-size: clamp(1.08rem, 2.5vw, 1.48rem);
  line-height: 1;
}

.launch-countdown-item span {
  margin-top: 2px;
  color: #94a3b8;
  font-size: 0.73rem;
  font-weight: 800;
  text-transform: uppercase;
}

.launch-products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.launch-product-pill {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  width: 100%;
  min-height: 38px;
  padding: 7px 10px 7px 7px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.9), rgba(8, 15, 32, 0.82));
  border: 1px solid rgba(56, 213, 255, 0.16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  color: #e0f2fe;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.launch-product-pill > span:last-child {
  min-width: 0;
  line-height: 1.15;
}

.launch-product-icon {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

.launch-product-icon svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.launch-product-pill--cloud {
  border-color: rgba(148, 163, 184, 0.24);
  color: #dbeafe;
}

.launch-product-pill--cloud .launch-product-icon {
  background: rgba(148, 163, 184, 0.16);
  color: #dbeafe;
}

.launch-product-pill--bi {
  border-color: rgba(111, 231, 255, 0.22);
  color: #bff6ff;
}

.launch-product-pill--bi .launch-product-icon {
  background: rgba(111, 231, 255, 0.14);
  color: #6fe7ff;
}

.launch-product-pill--nfe {
  border-color: rgba(125, 176, 255, 0.22);
  color: #dbeafe;
}

.launch-product-pill--nfe .launch-product-icon {
  background: rgba(125, 176, 255, 0.14);
  color: #7db0ff;
}

.launch-product-pill--ia {
  border-color: rgba(255, 195, 77, 0.22);
  color: #fff1c4;
}

.launch-product-pill--ia .launch-product-icon {
  background: rgba(255, 195, 77, 0.14);
  color: #ffc34d;
}

.launch-product-pill--rpa {
  border-color: rgba(52, 224, 161, 0.22);
  color: #d6ffef;
}

.launch-product-pill--rpa .launch-product-icon {
  background: rgba(52, 224, 161, 0.14);
  color: #34e0a1;
}

.launch-product-pill--logistica {
  border-color: rgba(255, 122, 107, 0.22);
  color: #ffe0da;
}

.launch-product-pill--logistica .launch-product-icon {
  background: rgba(255, 122, 107, 0.14);
  color: #ff7a6b;
}

@media (max-width: 640px) {
  .launch-modal {
    padding: 12px;
  }

  .launch-modal-card {
    border-radius: 16px;
  }

  .launch-modal-copy {
    padding: 14px;
  }

  .launch-countdown {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .launch-products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-height: 820px) {
  .launch-modal-card {
    max-height: 94vh;
  }

  .launch-modal-video {
    aspect-ratio: 16 / 7.2;
  }
}

@media (max-width: 420px) {
  .launch-products {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* ─── Calculadora de Custo de Inatividade ─────────────────── */
.calc-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #050a1a 0%, #000b3d 100%);
  position: relative;
  overflow: hidden;
}

.calc-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,174,239,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,174,239,.025) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}

.calc-section::after {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(0, 86, 255, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.calc-inner {
  position: relative;
  z-index: 1;
}

.calc-header {
  text-align: center;
  margin-bottom: 48px;
}

.calc-brand-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,174,239,.08);
  border: 1px solid rgba(0,174,239,.2);
  border-radius: 100px;
  padding: 5px 16px 5px 10px;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-light);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.calc-brand-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent-light);
  box-shadow: 0 0 8px var(--accent-light);
  animation: calcPulse 2s ease-in-out infinite;
}

@keyframes calcPulse {
  0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.8)}
}

.calc-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  margin: 0 0 14px;
}

.calc-header h2 span { color: var(--accent-light); }

.calc-header p {
  font-size: 16px;
  color: rgba(255,255,255,.6);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

.calc-section-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.calc-section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(0,174,239,.3) 0%, transparent 100%);
}

.calc-inputs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 14px;
}

@media(max-width: 640px) { .calc-inputs-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width: 420px) { .calc-inputs-grid { grid-template-columns: 1fr; } }

.calc-input-card {
  background: rgba(10, 22, 40, 0.9);
  border: 1px solid rgba(0,174,239,.15);
  border-radius: 12px;
  padding: 16px;
  transition: border-color .2s;
  position: relative;
  overflow: hidden;
}

.calc-input-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,rgba(0,174,239,.04) 0%,transparent 60%);
  pointer-events: none;
}

.calc-input-card:focus-within { border-color: var(--accent-light); }

.calc-input-card label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 10px;
}

.calc-input-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.calc-input-prefix {
  font-family: var(--font-sans);
  font-size: 13px;
  color: rgba(255,255,255,.45);
  white-space: nowrap;
  user-select: none;
}

.calc-input-card input[type=number] {
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  width: 100%;
  min-width: 0;
}

.calc-input-card input[type=number]::-webkit-inner-spin-button { display: none; }

.calc-input-hint {
  font-size: 10px;
  color: rgba(255,255,255,.25);
  margin-top: 6px;
}

.calc-scenario-row {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.calc-scenario-btn {
  flex: 1;
  min-width: 130px;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid rgba(0,174,239,.18);
  background: rgba(10,22,40,.9);
  color: rgba(255,255,255,.55);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all .15s;
  text-align: center;
}

.calc-scenario-btn:hover { border-color: rgba(0,174,239,.4); color: #fff; }

.calc-scenario-btn.is-active {
  border-color: var(--accent-light);
  background: rgba(0,174,239,.1);
  color: var(--accent-light);
  font-weight: 700;
}

.calc-result-hero {
  background: rgba(10, 22, 40, 0.9);
  border: 1px solid rgba(0,174,239,.18);
  border-radius: 18px;
  padding: 32px;
  margin-bottom: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.calc-result-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,rgba(0,174,239,.05) 0%,transparent 50%,rgba(0,229,160,.02) 100%);
  pointer-events: none;
}

.calc-result-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 12px;
}

.calc-result-value {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 7vw, 4.5rem);
  font-weight: 700;
  color: var(--accent-light);
  line-height: 1;
  margin-bottom: 8px;
  text-shadow: 0 0 40px rgba(0,174,239,.35);
  transition: all .3s cubic-bezier(.34,1.56,.64,1);
}

.calc-result-unit {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  margin-bottom: 4px;
}

.calc-result-desc { font-size: 12px; color: rgba(255,255,255,.3); }

.calc-metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

@media(max-width: 640px) { .calc-metrics-grid { grid-template-columns: 1fr 1fr; } }

.calc-metric-card {
  background: rgba(10,22,40,.9);
  border: 1px solid rgba(0,174,239,.12);
  border-radius: 12px;
  padding: 18px 16px;
  position: relative;
  overflow: hidden;
  transition: transform .2s, border-color .2s;
}

.calc-metric-card:hover { transform: translateY(-2px); border-color: rgba(0,174,239,.25); }

.calc-metric-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--cm-color, var(--accent-light));
  opacity: .6;
}

.calc-metric-card.cm-green  { --cm-color: #00E5A0; }
.calc-metric-card.cm-amber  { --cm-color: #FFB830; }
.calc-metric-card.cm-red    { --cm-color: #FF4D6D; }
.calc-metric-card.cm-blue   { --cm-color: var(--accent-light); }

.calc-metric-icon { font-size: 20px; margin-bottom: 10px; display: block; }

.calc-metric-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 6px;
}

.calc-metric-value {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  transition: color .3s;
}

.calc-metric-value.cv-accent { color: var(--accent-light); }
.calc-metric-value.cv-green  { color: #00E5A0; }
.calc-metric-value.cv-amber  { color: #FFB830; }
.calc-metric-value.cv-red    { color: #FF4D6D; }

.calc-metric-sub { font-size: 11px; color: rgba(255,255,255,.25); margin-top: 4px; }

.calc-downtime-card {
  background: rgba(10,22,40,.9);
  border: 1px solid rgba(0,174,239,.12);
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 20px;
}

.calc-dt-hdr {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(0,174,239,.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.calc-dt-hdr h3 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.calc-dt-hdr span { font-size: 11px; color: rgba(255,255,255,.4); }

.calc-dt-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  padding: 13px 20px;
  border-bottom: 1px solid rgba(0,174,239,.07);
  align-items: center;
  transition: background .15s;
}

.calc-dt-row:last-child { border-bottom: none; }
.calc-dt-row:hover { background: rgba(255,255,255,.02); }

.calc-dt-row.dt-hdr-row {
  background: rgba(0,174,239,.06);
  padding: 10px 20px;
}

@media(max-width: 560px) {
  .calc-dt-row { grid-template-columns: 1fr 1fr; gap: 6px; }
  .calc-dt-row .dt-hide-mob { display: none; }
}

.dt-cell-label  { font-size: 13px; color: #fff; font-weight: 500; }
.dt-cell-hdr    { font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,.4); }

.dt-cell-val {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  text-align: right;
}

.dt-cell-val.dv-red    { color: #FF4D6D; }
.dt-cell-val.dv-amber  { color: #FFB830; }
.dt-cell-val.dv-accent { color: var(--accent-light); }

.calc-impact-section {
  background: rgba(10,22,40,.9);
  border: 1px solid rgba(0,174,239,.12);
  border-radius: 18px;
  padding: 24px;
  margin-bottom: 20px;
}

.calc-impact-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.calc-impact-row:last-child { margin-bottom: 0; }

.calc-impact-label {
  font-size: 12px;
  color: rgba(255,255,255,.55);
  min-width: 160px;
  font-weight: 500;
}

.calc-bar-wrap {
  flex: 1;
  height: 8px;
  background: rgba(255,255,255,.08);
  border-radius: 100px;
  overflow: hidden;
}

.calc-bar {
  height: 100%;
  border-radius: 100px;
  transition: width .6s cubic-bezier(.34,1.56,.64,1);
  width: 0%;
}

.calc-bar.cb-green  { background: #00E5A0; }
.calc-bar.cb-amber  { background: #FFB830; }
.calc-bar.cb-red    { background: #FF4D6D; }
.calc-bar.cb-blue   { background: var(--accent-light); }

.calc-bar-val {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  min-width: 110px;
  text-align: right;
  color: #fff;
}

.calc-proposta-card {
  background: linear-gradient(135deg, rgba(0,86,255,.15) 0%, rgba(0,174,239,.08) 100%);
  border: 1px solid rgba(0,174,239,.3);
  border-radius: 18px;
  padding: 24px 28px;
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
}

@media(max-width: 520px) { .calc-proposta-card { grid-template-columns: 1fr; } }

.calc-proposta-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 6px;
}

.calc-proposta-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.calc-proposta-sub {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  line-height: 1.5;
}

.calc-proposta-badge { text-align: center; white-space: nowrap; }

.calc-proposta-pct {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: #00E5A0;
  line-height: 1;
  text-shadow: 0 0 30px rgba(0,229,160,.3);
}

.calc-proposta-pct-lbl {
  font-size: 11px;
  color: rgba(255,255,255,.45);
  margin-top: 4px;
}

.calc-btn-row { display: flex; gap: 12px; margin-top: 8px; flex-wrap: wrap; }

.calc-btn {
  flex: 1;
  min-width: 160px;
  padding: 14px;
  border-radius: 12px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all .15s;
  border: none;
  letter-spacing: .3px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
}

.calc-btn-outline {
  background: transparent;
  border: 1px solid rgba(0,174,239,.25);
  color: rgba(255,255,255,.55);
}

.calc-btn-outline:hover { border-color: var(--accent-light); color: var(--accent-light); }

.calc-btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 20px rgba(0,86,255,.35);
}

.calc-btn-primary:hover { background: #1a6fff; box-shadow: 0 6px 28px rgba(0,86,255,.5); }
.calc-btn-primary:disabled { opacity: .35; cursor: not-allowed; box-shadow: none; }

/* ═══════════════════════════════════════════════════════════════════════════
   FEATURES SCROLL-PINNED SECTION  (.feat-*)
   Desktop ≥1024px : sticky two-column driven by scroll progress
   Mobile  <1024px : vertical accordion, no sticky
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Outer wrapper — establishes scroll budget ──────────────────────────── */
.feat-wrapper {
  position: relative;
  /* JS sets exact height: (TOTAL+1)*100vh. CSS fallback: */
  height: 800vh;
  background: linear-gradient(180deg, #050a1a 0%, var(--bg-deep) 100%);
}

/* ── Sticky inner — pins for the full scroll budget ─────────────────────── */
.feat-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* ── Progress bar ────────────────────────────────────────────────────────── */
.feat-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  z-index: 10;
  flex-shrink: 0;
}

.feat-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 100%);
  transition: width 0.15s linear;
  border-radius: 0 2px 2px 0;
}

/* ── Two-column inner grid ───────────────────────────────────────────────── */
.feat-inner {
  display: flex;
  align-items: stretch;
  height: 100%;
  gap: 0;
  padding-top: clamp(20px, 3vh, 36px);
}

/* ── Left column ─────────────────────────────────────────────────────────── */
.feat-list {
  flex: 0 0 38%;
  width: 38%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(116px, 14vh, 156px) 44px 20px 0;
  overflow-y: auto;
  scrollbar-width: none;
  gap: 0;
}

.feat-list::-webkit-scrollbar {
  display: none;
}

/* ── ZONA ATIVA: título grande + desc + CTA ──────────────────────────────── */
.feat-active-zone {
  flex-shrink: 0;
  margin-bottom: 20px;
}

.feat-section-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin: 0 0 10px;
}

.feat-active-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.14;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
  transition: opacity 0.35s ease;
}

.feat-active-desc {
  font-size: 0.84rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.62);
  margin: 0 0 14px;
  max-width: 360px;
  transition: opacity 0.35s ease;
}

.feat-active-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-white);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: gap 0.25s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s;
}

.feat-active-cta:hover {
  gap: 14px;
}

/* ── NAV: lista compacta embaixo ─────────────────────────────────────────── */
.feat-nav {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  overflow: visible;
}

/* ── Item de nav ─────────────────────────────────────────────────────────── */
.feat-item {
  border-left: 2.5px solid transparent;
  padding-left: 16px;
  opacity: 0.35;
  transition:
    opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.feat-item + .feat-item {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.feat-item.is-active {
  border-left-color: var(--accent);
  opacity: 1;
}

/* ── Header do item ──────────────────────────────────────────────────────── */
.feat-item-header {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 0;
  font-family: var(--font-sans);
  color: var(--text-white);
}

.feat-item-title {
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-white);
  flex: 1;
}

.feat-item-chevron {
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.3);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feat-item.is-active .feat-item-chevron {
  transform: rotate(90deg);
  color: var(--accent-light);
}

/* Desktop: corpo do item oculto (conteúdo está na zona ativa) */
.feat-item-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  padding-left: 0;
}

.feat-item-desc {
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 12px;
}

/* ── CTA link (used only in mobile accordion body) ───────────────────────── */
.feat-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-light);
  text-decoration: none;
  border-bottom: 1.5px solid transparent;
  transition: border-color 0.2s, color 0.2s;
  padding-bottom: 1px;
}

.feat-cta:hover {
  color: var(--text-white);
  border-bottom-color: var(--accent-light);
}

.feat-cta--soon {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-light);
  background: rgba(0, 174, 239, 0.15);
  border: 1px solid rgba(0, 174, 239, 0.3);
  border-radius: var(--radius-pill);
  padding: 4px 14px;
  cursor: default;
}

.feat-soon-list {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(245, 158, 11, 0.28);
}

.feat-soon-heading {
  margin: 0 0 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f59e0b;
}

.feat-soon-lock {
  flex-shrink: 0;
}

.feat-soon-products {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feat-soon-product {
  display: inline-block;
  width: fit-content;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
}

.feat-preview-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-end;
  width: fit-content;
  min-width: 220px;
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  color: var(--text-white);
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feat-preview-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(0, 174, 239, 0.35);
}

/* ── Right column: media preview container ───────────────────────────────── */
.feat-preview {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: clamp(102px, 13vh, 148px) 0 20px 4px;
}

.feat-preview-stage {
  position: relative;
  flex: 0 0 auto;
  height: clamp(390px, 41vw, 560px);
  min-height: 0;
  overflow: hidden;
}

/* ── Individual media panel — stacked absolutely ─────────────────────────── */
.feat-media {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.03) translateY(10px);
  transition:
    opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.feat-media.is-active {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
}

.feat-media-single {
  position: relative;
  width: min(100%, 860px);
  aspect-ratio: 16 / 9;
  height: auto;
  margin: 0 auto;
  padding: 8px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(6, 14, 34, 0.98) 0%, rgba(3, 9, 23, 0.94) 100%);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
  overflow: hidden;
}

.feat-media-single--cloud {
  border-color: rgba(122, 177, 255, 0.28);
  box-shadow: 0 16px 38px rgba(8, 25, 74, 0.45);
}

.feat-media-single--video {
  padding: 6px;
  background:
    radial-gradient(circle at top left, rgba(59, 130, 246, 0.22), transparent 52%),
    linear-gradient(180deg, rgba(6, 14, 34, 0.98) 0%, rgba(3, 9, 23, 0.94) 100%);
  border-color: rgba(56, 213, 255, 0.3);
}

.feat-media--video-stack,
.feat-media--ia {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 14px;
}

.feat-video-switcher {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.feat-video-switcher--preview {
  justify-content: center;
  width: min(100%, 860px);
  margin: 0 auto;
  padding: 0 8px;
}

.feat-video-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: border-color 0.2s, background 0.2s, color 0.2s, transform 0.2s;
}

.feat-video-switch:hover {
  border-color: rgba(0, 174, 239, 0.7);
  color: var(--text-white);
}

.feat-video-switch.is-active {
  border-color: rgba(0, 174, 239, 0.92);
  background: rgba(0, 174, 239, 0.22);
  color: var(--text-white);
  transform: translateY(-1px);
}

/* ── 4-image grid inside each media panel ────────────────────────────────── */
.feat-media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  width: 100%;
  height: 100%;
  padding: 0;
}

.feat-grid-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Stagger columns vertically for Bookmarkify-style depth */
.feat-grid-img:nth-child(1),
.feat-grid-img:nth-child(3) {
  transform: translateY(-10px);
}

.feat-grid-img:nth-child(2),
.feat-grid-img:nth-child(4) {
  transform: translateY(10px);
}

.feat-media-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
  height: 100%;
  align-items: center;
}

.feat-visual-card {
  position: relative;
  margin: 0;
  aspect-ratio: 16 / 10;
  padding: 14px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(7, 16, 39, 0.94) 0%, rgba(4, 10, 24, 0.84) 100%);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.feat-visual-card--video {
  aspect-ratio: 16 / 9;
  padding: 0;
  background: rgba(5, 11, 30, 0.95);
}

.feat-visual-card--hero {
  z-index: 2;
}

.feat-visual-card--support {
  z-index: 1;
}

.feat-visual-card--offset {
  transform: translateY(28px);
}

.feat-visual {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 14px;
  object-fit: cover;
  object-position: center top;
  background: rgba(3, 8, 20, 0.95);
}

.feat-visual--video {
  border-radius: 18px;
  object-position: center center;
}

.feat-media-single .feat-visual {
  border-radius: 18px;
}

.feat-media-single--video .feat-visual--video {
  border-radius: 18px;
  background: #020814;
}

.feat-media-showcase--cloud,
.feat-media-showcase--ia {
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  max-width: min(100%, 760px);
}

.feat-media-showcase--cloud .feat-visual-card,
.feat-media-showcase--ia .feat-visual-card {
  aspect-ratio: auto;
}

.feat-media-showcase--cloud .feat-visual-card--hero,
.feat-media-showcase--ia .feat-visual-card--hero {
  min-height: clamp(320px, 38vw, 500px);
}

.feat-media-showcase--cloud .feat-visual-card--support,
.feat-media-showcase--ia .feat-visual-card--support {
  min-height: clamp(250px, 28vw, 370px);
  align-self: center;
}

.feat-media-showcase--cloud .feat-visual-card {
  padding: 12px;
  border-color: rgba(122, 177, 255, 0.2);
}

.feat-media-showcase--cloud .feat-visual {
  border-radius: 18px;
}

.feat-media-showcase--ia .feat-visual-card--video {
  background:
    radial-gradient(circle at top left, rgba(59, 130, 246, 0.22), transparent 55%),
    linear-gradient(180deg, rgba(7, 16, 39, 0.98) 0%, rgba(4, 10, 24, 0.92) 100%);
  border-color: rgba(56, 213, 255, 0.18);
}

.feat-media-showcase--ia .feat-visual--video {
  background: #020814;
}

@media (min-width: 1024px) {
  .feat-media-showcase--screens,
  .feat-media-showcase--videos {
    gap: 22px;
    align-items: center;
  }

  .feat-media-showcase--screens .feat-visual-card {
    min-height: 0;
    aspect-ratio: 16 / 9;
    padding: 10px;
  }

  .feat-media-showcase--videos .feat-visual-card {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .feat-media-showcase--videos .feat-visual--video {
    object-fit: contain;
    background: #050b1e;
  }

  .feat-media-showcase--cloud,
  .feat-media-showcase--ia {
    grid-template-columns: minmax(0, 1fr);
  }

  .feat-media-showcase--cloud .feat-visual-card,
  .feat-media-showcase--ia .feat-visual-card {
    aspect-ratio: auto;
  }

  .feat-media-showcase--cloud .feat-visual-card--hero,
  .feat-media-showcase--ia .feat-visual-card--hero {
    min-height: clamp(320px, 38vw, 500px);
  }

  .feat-media-showcase--cloud .feat-visual-card--support,
  .feat-media-showcase--ia .feat-visual-card--support {
    min-height: clamp(250px, 28vw, 370px);
  }
}

@media (min-width: 1360px) {
  .feat-media-showcase--cloud,
  .feat-media-showcase--ia {
    grid-template-columns: minmax(0, 1fr);
    gap: 26px;
  }

  .feat-media-showcase--screens .feat-visual-card,
  .feat-media-showcase--videos .feat-visual-card {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .feat-media-showcase--cloud .feat-visual-card,
  .feat-media-showcase--ia .feat-visual-card {
    aspect-ratio: auto;
  }

  .feat-media-showcase--cloud .feat-visual-card--hero,
  .feat-media-showcase--ia .feat-visual-card--hero {
    min-height: clamp(360px, 42vw, 560px);
  }

  .feat-media-showcase--cloud .feat-visual-card--support,
  .feat-media-showcase--ia .feat-visual-card--support {
    min-height: clamp(280px, 30vw, 410px);
  }
}

.feat-acc-gallery,
.feat-acc-video-group {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
}

.feat-acc-gallery {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feat-acc-video-group {
  grid-template-columns: 1fr;
}

.feat-acc-media-card {
  margin: 0;
  padding: 10px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 16, 39, 0.92);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.feat-acc-media-card--video {
  padding: 0;
  overflow: hidden;
  background: rgba(5, 11, 30, 0.95);
}

.feat-acc-visual {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  border-radius: 10px;
  background: rgba(3, 8, 20, 0.95);
}

.feat-acc-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 14px;
  background: #050b1e;
}

.feat-acc-single {
  display: block;
  margin: 0 0 14px;
  padding: 10px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 16, 39, 0.92);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.feat-acc-single--cloud {
  border-color: rgba(122, 177, 255, 0.18);
}

.feat-acc-single--video {
  padding: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(59, 130, 246, 0.18), transparent 56%),
    rgba(5, 11, 30, 0.96);
}

.feat-acc-single .feat-acc-visual,
.feat-acc-single .feat-acc-video {
  min-height: clamp(250px, 42vw, 340px);
}

.feat-acc-gallery--cloud,
.feat-acc-video-group--ia {
  gap: 14px;
}

.feat-acc-gallery--cloud .feat-acc-media-card--hero,
.feat-acc-video-group--ia .feat-acc-media-card--hero {
  border-color: rgba(122, 177, 255, 0.18);
}

.feat-acc-gallery--cloud .feat-acc-media-card--support,
.feat-acc-video-group--ia .feat-acc-media-card--support {
  max-width: 86%;
  justify-self: end;
}

.feat-acc-gallery--cloud .feat-acc-visual,
.feat-acc-video-group--ia .feat-acc-video {
  min-height: clamp(210px, 36vw, 290px);
}

/* ── "Em Breve" section variant ──────────────────────────────────────────── */
.feat-wrapper--soon {
  background: linear-gradient(180deg, #050a1a 0%, #000b3d 100%);
}

.feat-section-label--soon {
  color: #f59e0b; /* amber — sinaliza "em breve" */
}

/* ── Desktop: active zone visible, accordion body hidden ─────────────────── */
@media (min-width: 1024px) {
  .feat-acc-img {
    display: none;
  }
  /* Body hidden on desktop — content is in feat-active-zone */
  .feat-item-body {
    display: none !important;
  }
  /* Icon hidden on desktop */
  .feat-item-icon {
    display: none;
  }
}

/* ════════════════════════════════════════════════════════════════════════════
   MOBILE ACCORDION  (<1024px)
   ════════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1023px) {

  .feat-wrapper {
    height: auto !important;
    padding: 64px 0 80px;
  }

  .feat-sticky {
    position: static;
    height: auto;
    overflow: visible;
    display: block;
  }

  .feat-progress-bar {
    display: none;
  }

  .feat-inner {
    display: block;
    height: auto;
    padding-top: 0;
  }

  /* Left column: full width on mobile */
  .feat-list {
    flex: none;
    width: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
    overflow: visible;
  }

  /* Active zone: simpler on mobile */
  .feat-active-zone {
    display: none; /* hidden on mobile — accordion body shows desc */
  }

  .feat-nav {
    border-top: none;
  }

  .feat-preview {
    display: none;
  }

  /* Each item becomes an accordion card */
  .feat-item {
    border-left: none;
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 0;
    opacity: 1;
    background: rgba(255, 255, 255, 0.04);
    transition:
      border-color 0.35s cubic-bezier(0.4, 0, 0.2, 1),
      background 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 10px;
  }

  .feat-item + .feat-item {
    border-top: 1.5px solid rgba(255, 255, 255, 0.1);
    margin-top: 0;
  }

  .feat-item.is-active {
    border-color: var(--accent);
    background: rgba(0, 86, 255, 0.08);
  }

  .feat-item-header {
    padding: 16px 18px;
    gap: 12px;
  }

  .feat-item-title {
    font-size: 0.9375rem;
  }

  /* Accordion body expands on mobile */
  .feat-item-body {
    padding-left: 18px;
    padding-right: 18px;
    padding-bottom: 0;
    max-height: 0;
    overflow: hidden;
    transition:
      max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1),
      padding-bottom 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .feat-item.is-active .feat-item-body {
    max-height: 1400px;
    padding-bottom: 18px;
  }

  .feat-video-switcher {
    gap: 6px;
    margin: 0 0 12px;
  }

  .feat-video-switch {
    flex: 1 1 calc(50% - 6px);
    min-width: 118px;
    font-size: 0.67rem;
    padding: 8px 10px;
  }

  .feat-acc-img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 14px;
  }

  /* Grid hidden on mobile */
  .feat-media-grid {
    display: none;
  }

  .feat-media-single {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .feat-acc-single {
    border-radius: 18px;
  }

  .feat-acc-single .feat-acc-visual,
  .feat-acc-single .feat-acc-video {
    min-height: clamp(220px, 56vw, 360px);
  }

  .feat-acc-gallery {
    grid-template-columns: 1fr;
  }

  .feat-acc-gallery--cloud .feat-acc-media-card,
  .feat-acc-video-group--ia .feat-acc-media-card {
    border-radius: 18px;
  }

  .feat-acc-gallery--cloud .feat-acc-media-card--hero,
  .feat-acc-video-group--ia .feat-acc-media-card--hero {
    max-width: 100%;
  }

  .feat-acc-gallery--cloud .feat-acc-media-card--support,
  .feat-acc-video-group--ia .feat-acc-media-card--support {
    max-width: 88%;
  }

  .feat-acc-gallery--cloud .feat-acc-visual,
  .feat-acc-video-group--ia .feat-acc-video {
    min-height: clamp(220px, 56vw, 360px);
  }

  .feat-soon-list {
    margin-top: 16px;
    padding: 14px 18px 18px;
    border: 1.5px solid rgba(245, 158, 11, 0.32);
    border-radius: 18px;
    background: rgba(245, 158, 11, 0.08);
  }

  .feat-media-showcase {
    gap: 14px;
  }

  .feat-visual-card--offset {
    transform: none;
  }
}

/* Blog pages */
.blog-page {
  background: linear-gradient(180deg, #020a2f 0%, #050f3c 44%, #071a52 100%);
  color: var(--text-white);
}

.blog-main {
  min-height: 100vh;
}

.blog-hero {
  position: relative;
  padding: clamp(72px, 11vw, 124px) 0 38px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 14% 14%, rgba(0, 174, 239, 0.2), transparent 42%),
    radial-gradient(circle at 85% 26%, rgba(0, 86, 255, 0.28), transparent 46%);
}

.blog-hero--single {
  padding-bottom: 26px;
}

.blog-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.08);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.blog-hero h1 {
  margin: 0 0 10px;
  max-width: 980px;
  font-family: var(--font-display);
  font-size: clamp(28px, 4.3vw, 52px);
  line-height: 1.08;
}

.blog-hero p {
  margin: 0;
  max-width: 860px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(15px, 1.7vw, 18px);
  line-height: 1.62;
}

.blog-news-section,
.blog-single-section {
  padding: clamp(28px, 6vw, 64px) 0 clamp(56px, 9vw, 96px);
}

.blog-news-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.blog-news-card {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(180deg, rgba(8, 22, 60, 0.94) 0%, rgba(4, 14, 40, 0.96) 100%);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.32);
}

.blog-news-thumb {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
}

.blog-news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-news-tag {
  position: absolute;
  left: 14px;
  top: 14px;
  padding: 7px 11px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(2, 9, 26, 0.7);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-news-content {
  padding: 18px 20px 22px;
}

.blog-news-meta {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  letter-spacing: 0.02em;
}

.blog-news-content h2 {
  margin: 0 0 10px;
  font-size: clamp(20px, 2.5vw, 27px);
  line-height: 1.25;
  font-family: var(--font-display);
}

.blog-news-content h2 a:hover {
  color: #8fd4ff;
}

.blog-news-content p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.65;
  font-size: 15px;
}

.blog-news-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #73ccff;
}

.blog-news-link::after {
  content: "";
  display: none;
}

.blog-pagination {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.blog-page-link,
.blog-page-arrow {
  min-width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  transition: transform 0.2s, background 0.2s, border-color 0.2s;
}

.blog-page-link:hover,
.blog-page-arrow:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 174, 239, 0.46);
  background: rgba(0, 174, 239, 0.16);
}

.blog-page-link.is-active {
  border-color: rgba(255, 255, 255, 0.34);
  background: linear-gradient(135deg, #0056ff 0%, #0086ff 100%);
}

.blog-article {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(9, 21, 56, 0.96) 0%, rgba(5, 13, 36, 0.97) 100%);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.blog-article-cover {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-article-cover img {
  width: 100%;
  max-height: min(62vh, 620px);
  object-fit: cover;
}

.blog-article-body {
  padding: clamp(20px, 3vw, 38px);
}

.blog-article-body p,
.blog-article-body li {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.76;
  font-size: clamp(15px, 1.55vw, 17px);
}

.blog-article-body p {
  margin: 0 0 16px;
}

.blog-article-body h4,
.blog-article-body h5 {
  margin: 22px 0 12px;
  color: #9bd7ff;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.4;
  font-family: var(--font-display);
}

.blog-article-body ul,
.blog-article-body ol {
  margin: 0 0 16px;
  padding-left: 22px;
}

.blog-article-body blockquote {
  margin: 22px 0;
  padding: 14px 18px;
  border-left: 4px solid var(--accent-light);
  border-radius: 0 12px 12px 0;
  background: rgba(0, 174, 239, 0.12);
  color: #d8f1ff;
  font-size: 16px;
  line-height: 1.6;
}

.blog-article-nav {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.blog-article-nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 12px;
  padding: 10px 12px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 700;
}

.blog-article-nav a:hover {
  border-color: rgba(0, 174, 239, 0.45);
  background: rgba(0, 174, 239, 0.16);
}

.blog-footer .footer-grid.blog-footer-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* Terms page */
.legal-page {
  background: linear-gradient(180deg, #020a2f 0%, #051341 60%, #081a53 100%);
}

.legal-main {
  padding: clamp(74px, 10vw, 120px) 0 clamp(58px, 9vw, 96px);
}

.legal-hero {
  margin-bottom: 24px;
}

.legal-hero h1 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: clamp(30px, 4.5vw, 52px);
  line-height: 1.1;
}

.legal-hero p {
  margin: 0;
  max-width: 880px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.legal-card {
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: linear-gradient(180deg, rgba(8, 22, 60, 0.95) 0%, rgba(4, 14, 40, 0.97) 100%);
  padding: 22px;
}

.legal-card h2 {
  margin: 0 0 10px;
  font-size: clamp(20px, 2.7vw, 30px);
  font-family: var(--font-display);
}

.legal-card p {
  margin: 0 0 15px;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.7;
}

.legal-link-list {
  margin: 0;
  padding-left: 18px;
}

.legal-link-list li {
  margin-bottom: 8px;
}

.legal-link-list a {
  color: #8fd4ff;
  font-weight: 600;
}

@media (max-width: 960px) {
  .blog-news-grid,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .blog-article-nav {
    grid-template-columns: 1fr;
  }

  .blog-footer .footer-grid.blog-footer-grid {
    grid-template-columns: 1fr;
  }
}

/* Blog/Terms visual refresh */
.blog-page {
  background: #f5f8ff;
  color: #0f1f47;
}

.blog-page .site-header {
  background: linear-gradient(135deg, rgba(0, 41, 128, 0.94) 0%, rgba(0, 24, 86, 0.94) 100%);
}

.blog-hero {
  border-bottom: 1px solid rgba(7, 34, 92, 0.12);
  background:
    radial-gradient(circle at 15% 20%, rgba(0, 123, 255, 0.14), transparent 40%),
    radial-gradient(circle at 85% 20%, rgba(10, 184, 255, 0.1), transparent 42%),
    linear-gradient(180deg, #ffffff 0%, #f3f8ff 100%);
}

.blog-hero h1 {
  color: #10214f;
}

.blog-hero p {
  color: #3f517f;
}

.blog-news-card,
.blog-article {
  border: 1px solid rgba(8, 42, 114, 0.12);
  background: #ffffff;
  box-shadow: 0 22px 36px rgba(9, 33, 89, 0.12);
}

.blog-news-meta {
  color: #5c6d95;
}

.blog-news-content h2,
.blog-news-content h2 a {
  color: #132455;
}

.blog-news-content p {
  color: #3f5079;
}

.blog-news-tag {
  border-color: rgba(0, 76, 188, 0.2);
  background: rgba(255, 255, 255, 0.94);
  color: #0d2f6f;
}

.blog-page-link,
.blog-page-arrow {
  border-color: rgba(7, 41, 114, 0.2);
  background: #fff;
  color: #15306d;
}

.blog-page-link:hover,
.blog-page-arrow:hover {
  border-color: rgba(0, 123, 255, 0.45);
  background: rgba(0, 123, 255, 0.1);
}

.blog-article-body p,
.blog-article-body li {
  color: #31466f;
}

.blog-article-body h4,
.blog-article-body h5 {
  color: #123d84;
}

.blog-article-body blockquote {
  border-left-color: #2f7eff;
  background: rgba(47, 126, 255, 0.09);
  color: #1a3e7b;
}

.blog-article-nav a {
  border-color: rgba(10, 50, 120, 0.22);
  background: #fff;
  color: #17397d;
}

.blog-article-nav a:hover {
  border-color: rgba(0, 123, 255, 0.48);
  background: rgba(0, 123, 255, 0.11);
}

.blog-footer {
  background: #081a53;
}

.terms-page {
  background: #f3f7ff;
  color: #15264f;
}

.terms-main {
  padding: clamp(56px, 8vw, 88px) 0 clamp(52px, 8vw, 90px);
}

.terms-hero {
  margin-bottom: 22px;
}

.terms-hero .blog-hero-eyebrow {
  color: #0d377f;
  border-color: rgba(16, 61, 142, 0.22);
  background: rgba(21, 96, 217, 0.09);
}

.terms-hero h1 {
  margin: 0 0 10px;
  color: #102455;
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.1;
}

.terms-hero p {
  margin: 0;
  max-width: 920px;
  color: #445983;
  line-height: 1.68;
}

.terms-card {
  border-radius: 22px;
  border: 1px solid rgba(10, 51, 120, 0.13);
  background: #ffffff;
  box-shadow: 0 20px 36px rgba(10, 39, 101, 0.11);
  padding: clamp(16px, 3vw, 30px);
}

.terms-layout {
  display: grid;
  grid-template-columns: minmax(220px, 290px) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.terms-toc {
  position: sticky;
  top: 110px;
  border-radius: 16px;
  border: 1px solid rgba(17, 62, 144, 0.18);
  background: #f8fbff;
  padding: 14px;
}

.terms-toc h2 {
  margin: 0 0 10px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #1f3f7b;
}

.terms-toc a {
  display: block;
  color: #305591;
  font-size: 13px;
  line-height: 1.45;
  padding: 6px 8px;
  border-radius: 9px;
}

.terms-toc a:hover {
  background: rgba(0, 110, 255, 0.11);
  color: #0d367f;
}

.terms-content h2,
.terms-content h3,
.terms-content h4,
.terms-content h5 {
  margin: 18px 0 10px;
  color: #123b84;
  line-height: 1.35;
}

.terms-content p,
.terms-content li,
.terms-content span {
  color: #334a73;
  line-height: 1.72;
  font-size: 15px;
}

.terms-content ul,
.terms-content ol {
  margin: 0 0 14px;
  padding-left: 20px;
}

.terms-content a {
  color: #0f4aa4;
  font-weight: 600;
}

.terms-content blockquote {
  margin: 16px 0;
  padding: 12px 15px;
  border-left: 4px solid #2f7eff;
  border-radius: 0 10px 10px 0;
  background: rgba(47, 126, 255, 0.08);
  color: #1b427f;
}

.terms-content .hide-legacy {
  display: none !important;
}

.terms-content .container {
  max-width: none;
  width: 100%;
  padding: 0;
}

.terms-content .row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.terms-content .col-md-12,
.terms-content .col-lg-12,
.terms-content .col-xl-12 {
  width: 100%;
}

.terms-content .col-md-3 {
  width: min(290px, 100%);
  flex: 0 0 auto;
}

.terms-content .col-md-9,
.terms-content .col-xl-8,
.terms-content .col-lg-7,
.terms-content .col-xl-4,
.terms-content .col-lg-5 {
  flex: 1 1 300px;
  min-width: 0;
}

.terms-content .col-lg-6,
.terms-content .col-md-6 {
  flex: 1 1 280px;
}

.terms-content .card {
  border-radius: 16px;
  border: 1px solid rgba(9, 49, 118, 0.12);
  background: #fff;
}

.terms-content .card-body {
  padding: 16px;
}

.terms-content .site-heading {
  text-align: left !important;
  padding-top: 0 !important;
  margin-bottom: 8px;
}

.terms-content .sub-title {
  margin: 0;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: #1b3f85;
}

.terms-content .list-group {
  margin: 0 !important;
  padding: 0;
  list-style: none;
  border-radius: 14px;
  border: 1px solid rgba(9, 50, 120, 0.12);
  background: #f8fbff;
}

.terms-content .list-group-item {
  padding: 9px 12px;
  border-bottom: 1px solid rgba(9, 50, 120, 0.1);
  font-size: 13px;
  line-height: 1.45;
}

.terms-content .list-group-item:last-child {
  border-bottom: 0;
}

.terms-content .list-group-item a {
  color: #1e427f;
  font-weight: 500;
}

.terms-content .adapt-subtitle {
  display: block;
  margin-top: 10px;
  margin-bottom: 8px;
  font-weight: 700;
  color: #1d3d7b;
}

.terms-content .adapt-left {
  padding-left: 10px;
}

.terms-content .check-list {
  margin: 8px 0 0;
  padding-left: 18px;
}

.terms-content .social {
  display: flex;
  gap: 8px;
  padding: 0;
  margin: 10px 0 0;
  list-style: none;
}

.terms-content .social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(6, 83, 212, 0.11);
  color: #0e3d88;
}

@media (max-width: 960px) {
  .terms-layout {
    grid-template-columns: 1fr;
  }

  .terms-toc {
    position: static;
  }
}

/* Blog/Terms final polish */
.blog-page {
  background: #ffffff;
}

.blog-hero {
  background:
    radial-gradient(circle at 15% 20%, rgba(0, 123, 255, 0.14), transparent 40%),
    radial-gradient(circle at 85% 20%, rgba(10, 184, 255, 0.1), transparent 42%),
    #ffffff;
}

.blog-hero-eyebrow {
  color: #0d377f;
  border-color: rgba(16, 61, 142, 0.24);
  background: rgba(21, 96, 217, 0.1);
}

.blog-news-link {
  padding: 11px 16px;
  border-radius: 999px;
  border: 1px solid rgba(20, 80, 173, 0.18);
  background: #0b2d75;
  color: #ffffff;
  box-shadow: 0 12px 22px rgba(9, 33, 89, 0.12);
}

.blog-news-link:hover {
  color: #ffffff;
  background: #123f93;
  transform: translateY(-1px);
}

.blog-news-content h2 a {
  transition: color 0.2s ease;
}

.blog-news-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-news-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 42px rgba(9, 33, 89, 0.15);
}

.blog-news-thumb img {
  transition: transform 0.35s ease;
}

.blog-news-thumb:hover img {
  transform: scale(1.03);
}

.blog-footer.blog-footer {
  margin-top: 22px;
}

.blog-single-section .container {
  max-width: 1040px;
}

.blog-article {
  border-radius: 18px;
  overflow: hidden;
}

.blog-article-cover img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
}

.blog-article-body {
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 52px);
}

.blog-article-body p,
.blog-article-body li {
  font-size: 16px;
  line-height: 1.82;
}

.blog-article-body h4,
.blog-article-body h5 {
  margin-top: 30px;
}

.blog-article-nav {
  max-width: 860px;
  margin: 24px auto 0;
}

.blog-article-nav a {
  background: #ffffff;
  border-color: rgba(12, 59, 135, 0.16);
  color: #123b84;
  box-shadow: 0 10px 18px rgba(9, 33, 89, 0.08);
}

.terms-page {
  background: #ffffff;
}

.terms-content .about-style-three-area > .container > .row > .col-md-12 > .card {
  border: 0;
  box-shadow: none;
  background: transparent;
}

.terms-content .about-style-three-area .card[style*="height: 100vh"] {
  height: auto !important;
  min-height: 0 !important;
}

.terms-content .about-style-three-area .card-body[style*="height: 100%"] {
  height: auto !important;
}

.terms-content .about-style-three-area .terms-card {
  margin-top: 0 !important;
}

.terms-content .card .card {
  box-shadow: none;
  background: #fcfdff;
}

.terms-content .project-details-area,
.terms-content .default-padding {
  padding: 0 !important;
}

.terms-content .project-details-items {
  width: 100%;
}

.terms-content .top-info {
  margin-bottom: 16px;
}

.terms-content .left-info h2 {
  margin: 0 0 10px;
  color: #123b84;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.2;
}

.terms-content .right-info .project-info {
  border-radius: 14px;
  border: 1px solid rgba(9, 49, 118, 0.16);
  background: #f8fbff;
  padding: 14px;
}

.terms-content .right-info .project-info .title {
  margin: 0 0 8px;
  color: #153d84;
  font-size: 19px;
  line-height: 1.3;
}

.terms-content .main-content {
  margin-top: 12px;
}

.terms-content .main-content p {
  margin: 0 0 14px;
}

.terms-content .pr-35,
.terms-content .pr-md-15,
.terms-content .pr-xs-15 {
  padding-right: 0 !important;
}

.terms-content [style*="margin-top: 40px"] {
  margin-top: 10px !important;
}

.terms-content [style*="padding-top: 60px"],
.terms-content [style*="padding-top: 50px"] {
  padding-top: 0 !important;
}

.terms-pdf-viewer {
  width: 100%;
  height: 85vh;
  min-height: 800px;
  border: 0;
  border-radius: 14px;
  background: #eef3fb;
  box-shadow: 0 12px 32px rgba(10, 39, 101, 0.1);
}

