/* ==========================================================================
   EVOE — Design System (limpo)
   ========================================================================== */

:root {
  --evoe-black: #05070C;
  --evoe-navy: #0E1322;
  --evoe-surface: #161D31;
  --evoe-accent: #4A6CF7;
  --evoe-accent-hover: #3A58E0;
  --evoe-white: #F2F4F8;
  --evoe-text-dim: #9AA3B8;
  --evoe-line: rgba(255, 255, 255, 0.10);
  --evoe-gold: #C9B28A;
  --evoe-radius: 20px;
  --evoe-radius-sm: 14px;
  --font-display: "Sora", sans-serif;
  --font-body: "Montserrat", sans-serif;
  --font-ui: "Poppins", sans-serif;
  --container: 1180px;
  --space-x: clamp(20px, 4vw, 56px);
  --section-y: clamp(72px, 9vw, 120px);
  --glass-bg: linear-gradient(155deg, rgba(255,255,255,0.14) 0%, rgba(255,255,255,0.05) 100%);
  --glass-bg-solid: rgba(255, 255, 255, 0.94);
  --glass-border: rgba(255, 255, 255, 0.18);
  --glass-blur: blur(22px) saturate(170%);
  --glass-shadow: 0 24px 60px -24px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255,255,255,0.2);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 64px;
}

html, body {
  margin: 0;
  background: var(--evoe-black);
  color: var(--evoe-white);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: inherit; }

::selection {
  background: var(--evoe-accent);
  color: #fff;
}

:focus-visible {
  outline: 2px solid var(--evoe-accent);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 5000;
  padding: 12px 20px;
  background: var(--evoe-accent);
  color: #fff;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

.container {
  width: min(var(--container), calc(100% - var(--space-x) * 2));
  margin-inline: auto;
}

/* ---------- tipografia ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  margin: 0;
  font-weight: 700;
}

.section-intro {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
}
.section-intro--left {
  margin-left: 0;
  margin-right: auto;
  text-align: left;
}
.section-intro__title {
  margin: 0 0 12px;
  font-size: clamp(26px, 3.2vw, 36px);
  line-height: 1.2;
  color: var(--evoe-white);
}
.section-intro__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--evoe-text-dim);
}

/* ---------- botões ---------- */
.btn-primary,
.btn-submit,
.modalidades-btn,
.wa-submit,
#cta1 .text {
  font-family: var(--font-ui);
  font-weight: 600;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--evoe-radius-sm);
  background: var(--evoe-accent);
  border: none;
  color: #fff;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-primary:hover {
  background: var(--evoe-accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(60, 91, 232, 0.35);
}

.link-button {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: var(--evoe-accent);
  font-weight: 600;
  cursor: pointer;
}
.link-button:hover { color: var(--evoe-white); }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border-bottom: 1px solid rgba(21, 25, 45, 0.06);
  transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 24px -16px rgba(8, 12, 28, 0.28);
  border-bottom-color: rgba(21, 25, 45, 0.08);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 8px var(--space-x);
  min-height: 56px;
  transition: padding 0.25s ease, min-height 0.25s ease;
}

.site-header.is-scrolled .site-header__inner {
  padding-top: 6px;
  padding-bottom: 6px;
  min-height: 52px;
}

.site-header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: opacity 0.2s ease;
}
.site-header__logo:hover {
  opacity: 0.8;
}
.site-header__logo img {
  width: auto;
  height: 30px;
  max-width: 180px;
  object-fit: contain;
  filter: brightness(0);
  opacity: 0.92;
}

.site-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav__list a {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: rgba(21, 25, 45, 0.62);
  text-decoration: none;
  border-radius: 8px;
  transition: color 0.2s ease, background 0.2s ease;
}

.site-nav__list a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 4px;
  height: 2px;
  border-radius: 2px;
  background: var(--evoe-accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.22s ease;
}

.site-nav__list a:hover,
.site-nav__list a.is-active {
  color: var(--evoe-navy);
  background: rgba(60, 91, 232, 0.07);
}

.site-nav__list a:hover::after,
.site-nav__list a.is-active::after {
  transform: scaleX(1);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

#cta1,
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1.5px solid rgba(21, 25, 45, 0.14);
  color: var(--evoe-navy);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
#cta1 .arrow,
.header-cta .arrow {
  width: 13px;
  height: 13px;
  transition: transform 0.2s ease;
}
#cta1:hover,
.header-cta:hover {
  background: var(--evoe-navy);
  border-color: var(--evoe-navy);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(21, 25, 45, 0.16);
}
#cta1:hover .arrow,
.header-cta:hover .arrow {
  transform: translateX(2px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 36px;
  height: 36px;
  padding: 0;
  background: rgba(21, 25, 45, 0.04);
  border: 1px solid rgba(21, 25, 45, 0.08);
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s ease;
}
.nav-toggle:hover {
  background: rgba(60, 91, 232, 0.1);
}
.nav-toggle__bar {
  display: block;
  width: 16px;
  height: 2px;
  background: var(--evoe-navy);
  border-radius: 2px;
  margin: 0 auto;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: min(78vh, 720px);
  display: flex;
  align-items: center;
  padding: 120px var(--space-x) 72px;
  background:
    linear-gradient(105deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.55) 48%, rgba(0,0,0,0.25) 100%),
    url(../img/hero/hero-alt.webp) center/cover no-repeat;
  background-color: #000;
}
.hero__content { max-width: 600px; }
.hero__title {
  margin: 0 0 16px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  color: #fff;
}
.hero__lead {
  margin: 0 0 24px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--evoe-text-dim);
}

.icon-list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.icon-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  line-height: 1.4;
}
.icon-list__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-list__icon svg { width: 100%; height: 100%; fill: currentColor; }
.icon-list__icon--accent { color: var(--evoe-accent); }
.icon-list__icon--muted { color: #E14848; }
.icon-list--hero { color: #fff; }

/* ---------- stats ---------- */
.stats-band {
  background: transparent;
  margin-top: -40px;
  position: relative;
  z-index: 5;
  padding: 0 var(--space-x);
}
.stats-band__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.28) 0%,
    rgba(255, 255, 255, 0.10) 45%,
    rgba(255, 255, 255, 0.16) 100%
  );
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 24px;
  box-shadow:
    0 24px 60px -20px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    inset 0 -1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
  position: relative;
}
.stats-band__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.35) 0%,
    transparent 28%,
    transparent 72%,
    rgba(255, 255, 255, 0.12) 100%
  );
  pointer-events: none;
}
.stat-item {
  position: relative;
  z-index: 1;
  padding: 30px 22px;
  text-align: center;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
  transition: background 0.25s ease;
}
.stat-item:first-child { border-left: none; }
.stat-item:hover {
  background: rgba(255, 255, 255, 0.12);
}
.stat-value {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
}
/* ---------- events band ---------- */
.events-band {
  background: #0B0E17;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  padding: 16px 0;
  margin-top: 56px;
}
.events-band__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 100%;
}
.events-band__label {
  flex: 0 0 auto;
  margin-left: var(--space-x);
  padding: 6px 16px;
  border-radius: 999px;
  background: var(--evoe-accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.events-band__track {
  display: flex;
  flex-wrap: nowrap;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 24px, #000 calc(100% - 24px), transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 24px, #000 calc(100% - 24px), transparent);
}
.events-band__group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  animation: events-band-scroll 22s linear infinite;
}
.events-band__item {
  white-space: nowrap;
  color: #fff;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0 18px;
}
.events-band__sep {
  color: var(--evoe-accent);
  font-size: 14px;
}
@keyframes events-band-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}
@media (prefers-reduced-motion: reduce) {
  .events-band__group { animation: none; }
}

.stat-label {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

/* ---------- problema / solução ---------- */
.problema-solucao {
  padding: var(--section-y) 0 0;
  background: var(--evoe-black);
  overflow: hidden;
}
.problema-solucao__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 0;
  align-items: stretch;
  position: relative;
}
.problema-solucao__photo {
  margin: 0;
  border-radius: 22px 22px 0 0;
  overflow: hidden;
  min-height: 560px;
  height: 100%;
  align-self: stretch;
  display: flex;
  position: relative;
  z-index: 1;
}
.problema-solucao__photo img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: 50% 18%;
  display: block;
}
.problema-solucao__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px 0 var(--section-y);
  margin-left: -80px;
  position: relative;
  z-index: 2;
  min-height: 100%;
  justify-content: center;
}
.problema-solucao__content h2 {
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.25;
  color: #fff;
}
.problema-solucao__content > p {
  margin: 0;
  color: var(--evoe-text-dim);
  font-size: 15px;
  line-height: 1.55;
}
.problema-cards-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 8px;
  align-items: stretch;
}
.problema-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  padding: 26px 24px 28px;
  border-radius: 20px;
  border: 1px solid transparent;
  transition: transform 0.28s var(--ease-out), box-shadow 0.28s var(--ease-out), border-color 0.28s ease, background 0.28s ease;
}
.problema-card--dark {
  background: linear-gradient(165deg, rgba(14, 18, 32, 0.72) 0%, rgba(10, 12, 22, 0.58) 100%);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-color: rgba(255, 255, 255, 0.14);
  color: #fff;
  box-shadow:
    0 20px 50px -20px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.problema-card--light {
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.88) 0%, rgba(244, 247, 255, 0.78) 100%);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-color: rgba(255, 255, 255, 0.65);
  color: var(--evoe-navy);
  box-shadow:
    0 22px 50px -18px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
.problema-card:hover { transform: translateY(-4px); }
.problema-card--dark:hover {
  border-color: rgba(255, 110, 110, 0.4);
  background: linear-gradient(165deg, rgba(18, 22, 40, 0.82) 0%, rgba(12, 14, 28, 0.68) 100%);
  box-shadow: 0 24px 48px -16px rgba(0, 0, 0, 0.55);
}
.problema-card--light:hover {
  border-color: rgba(74, 108, 247, 0.45);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.94) 0%, rgba(240, 244, 255, 0.86) 100%);
  box-shadow: 0 26px 52px -14px rgba(60, 91, 232, 0.3);
}
.problema-card__head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}
.problema-card__badge {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}
.problema-card__badge svg { width: 20px; height: 20px; }
.problema-card__badge--bad {
  color: #FF6B6B;
  background: rgba(255, 80, 80, 0.12);
  border: 1px solid rgba(255, 80, 80, 0.28);
}
.problema-card__badge--good {
  color: #3A58E0;
  background: rgba(74, 108, 247, 0.12);
  border: 1px solid rgba(74, 108, 247, 0.28);
}
.problema-card__title {
  margin: 0;
  font-size: 17px;
  line-height: 1.35;
  flex: 1;
  padding-top: 5px;
}
.problema-card--light .problema-card__title b { color: #3A58E0; }
.problema-card .icon-list {
  margin: 0;
  gap: 11px;
  flex: 1;
}
.problema-card .icon-list li {
  font-size: 14px;
  line-height: 1.45;
  min-height: auto;
  align-items: flex-start;
  gap: 10px;
}
.problema-card .icon-list__icon {
  width: 16px;
  height: 16px;
  margin-top: 2px;
}
.problema-card--dark .icon-list__icon--muted { color: #FF6B6B; }
.problema-card--light .icon-list__icon--muted,
.problema-card--light .icon-list__icon--accent { color: #3A58E0; }

/* ---------- BENEFÍCIOS ---------- */

.benefits-section {
  padding: var(--section-y) 0;
  background:
    radial-gradient(60% 50% at 80% 0%, rgba(74,108,247,0.12) 0%, transparent 60%),
    var(--evoe-navy);
}

.benefits-section .section-intro__title {
  color: #fff;
}

.benefits-section .section-intro__text {
  color: var(--evoe-text-dim);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

@media (max-width: 1100px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

.benefit-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  min-height: 100%;
  padding: 32px 24px 28px;
  background: linear-gradient(160deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.02) 100%);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  text-align: center;
  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    transform 0.25s var(--ease-out),
    box-shadow 0.25s ease;
}

.benefit-card:hover {
  background: linear-gradient(160deg, rgba(74,108,247,0.16) 0%, rgba(255,255,255,0.04) 100%);
  border-color: rgba(74,108,247,0.4);
  transform: translateY(-4px);
  box-shadow: 0 18px 36px -16px rgba(60, 91, 232, 0.35);
}

.benefit-card__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  padding: 10px;
  border-radius: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.benefit-card__icon img {
  display: block;
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter 0.25s ease;
}

.benefit-card:hover .benefit-card__icon {
  transform: scale(1.06);
  background: rgba(74,108,247,0.18);
  border-color: rgba(74,108,247,0.35);
}

.benefit-card:hover .benefit-card__icon img {
  filter:
    brightness(0)
    saturate(100%)
    invert(46%)
    sepia(96%)
    saturate(1700%)
    hue-rotate(214deg)
    brightness(103%);
}

.benefit-card__title {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  flex-shrink: 0;
}

.benefit-card__text {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--evoe-text-dim);
  flex: 1;
}

/* ---------- linhas / produtos ---------- */
.linhas-section {
  padding: var(--section-y) 0;
  background: linear-gradient(180deg, #0a0f1a 0%, #05080f 100%);
}

.linhas-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.linha-card {
  margin: 0;
  border-radius: var(--evoe-radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--evoe-line);
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.linha-card:hover {
  border-color: rgba(60, 91, 232, 0.45);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.55);
}

.linha-card__hit {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  border: none;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
  font: inherit;
}

.linha-card__media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #0c1220;
}

.linha-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.45s ease;
}

.linha-card:hover .linha-card__media img {
  transform: scale(1.05);
}

.linha-card__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 16px 18px;
  flex: 1;
}

.linha-card__tag {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--evoe-accent);
}

.linha-card__title {
  margin: 0;
  font-size: 18px;
  color: #fff;
}

.linha-card__text {
  margin: 0 0 8px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--evoe-text-dim);
  flex: 1;
}

.linha-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}

.linha-card__cta::after {
  content: "→";
  transition: transform 0.2s ease;
}

.linha-card:hover .linha-card__cta::after {
  transform: translateX(4px);
}

.linhas-note {
  margin: 28px 0 0;
  text-align: center;
  font-size: 14px;
  color: var(--evoe-text-dim);
}

/* ---------- catálogo lookbook (modal) ---------- */
.produtos-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.produtos-modal.is-open {
  opacity: 1;
  visibility: visible;
}

html.produtos-modal-lock,
html.produtos-modal-lock body {
  overflow: hidden;
}

.produtos-modal-overlay {
  position: absolute;
  inset: 0;
  border: none;
  padding: 0;
  background: rgba(2, 4, 10, 0.78);
  backdrop-filter: blur(4px);
  cursor: default;
}

.produtos-modal-dialog {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: min(1120px, 100%);
  max-height: 100%;
  margin: 24px;
  background: #0d121f;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.produtos-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 28px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

.produtos-modal-kicker {
  margin: 0 0 4px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--evoe-accent);
}

.produtos-modal-titulo {
  margin: 0 0 6px;
  font-size: 26px;
  color: #fff;
}

.produtos-modal-subtitulo {
  margin: 0;
  max-width: 42ch;
  font-size: 14px;
  line-height: 1.5;
  color: var(--evoe-text-dim);
}

.produtos-modal-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.produtos-modal-wa {
  display: inline-flex;
  align-items: center;
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--evoe-accent);
  color: #fff;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease;
}

.produtos-modal-wa:hover {
  background: var(--evoe-accent-hover);
}

.produtos-modal-close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.produtos-modal-close:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.28);
}

.produtos-modal-close svg {
  width: 16px;
  height: 16px;
}

.produtos-modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px 28px;
}

.produtos-lookbook {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
}

.lookbook-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 14px;
  overflow: hidden;
  background: #121826;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.lookbook-tile:hover {
  border-color: rgba(60, 91, 232, 0.4);
  transform: translateY(-2px);
}

.lookbook-tile__media {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #0a0e18;
}

.lookbook-tile__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.4s ease;
}

.lookbook-tile:hover .lookbook-tile__media img {
  transform: scale(1.04);
}

.lookbook-tile__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 12px 14px;
}

.lookbook-tile__nome {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.lookbook-tile__meta {
  margin: 0;
  font-size: 12px;
  color: var(--evoe-text-dim);
}

.lookbook-tile__cta {
  margin-top: 8px;
  align-self: flex-start;
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(60, 91, 232, 0.15);
  border: 1px solid rgba(60, 91, 232, 0.35);
  color: #fff;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease;
}

.lookbook-tile__cta:hover {
  background: var(--evoe-accent);
  border-color: var(--evoe-accent);
}

/* ---------- soluções ---------- */
.solucoes {
  padding: var(--section-y) 0;
  background:
    radial-gradient(50% 60% at 50% 50%, rgba(74, 108, 247, 0.10) 0%, transparent 60%),
    var(--evoe-black);
  overflow: hidden;
}
.solucoes-grid {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 580px) 1fr;
  gap: 12px 20px;
  align-items: center;
}
.solucoes-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  z-index: 2;
}
.solucoes-list--left .solucoes-item {
  flex-direction: row;
  justify-content: flex-end;
  text-align: right;
}
.solucoes-list--right .solucoes-item {
  flex-direction: row;
  justify-content: flex-start;
  text-align: left;
}
.solucoes-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.3s var(--ease-out), background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.solucoes-item:hover {
  transform: translateY(-3px);
  background: rgba(74, 108, 247, 0.10);
  border-color: rgba(74, 108, 247, 0.35);
  box-shadow: 0 14px 32px -16px rgba(74, 108, 247, 0.4);
}
.solucoes-check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.25s ease, transform 0.25s ease;
}
.solucoes-check svg { width: 100%; height: 100%; }
.solucoes-item:hover .solucoes-check {
  color: #7B93FF;
  transform: scale(1.08);
}
.solucoes-item h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  color: #fff;
  max-width: 18ch;
}
.solucoes-connector {
  flex: 1 1 auto;
  min-width: 28px;
  height: 1px;
  align-self: center;
  opacity: 0.85;
  position: relative;
  transition: opacity 0.3s ease, filter 0.3s ease;
}
.solucoes-list--left .solucoes-connector {
  order: 3;
  background: linear-gradient(90deg, rgba(74, 108, 247, 0.08), rgba(74, 108, 247, 0.75));
}
.solucoes-list--right .solucoes-connector {
  order: -1;
  background: linear-gradient(90deg, rgba(74, 108, 247, 0.75), rgba(74, 108, 247, 0.08));
}
.solucoes-connector::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4A6CF7;
  box-shadow: 0 0 0 4px rgba(74, 108, 247, 0.22);
  transform: translateY(-50%);
}
.solucoes-list--left .solucoes-connector::after { right: -2px; }
.solucoes-list--right .solucoes-connector::after { left: -2px; }
.solucoes-item:hover .solucoes-connector {
  opacity: 1;
  filter: brightness(1.3);
}
.solucoes-center {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.solucoes-center__glow {
  position: absolute;
  width: 70%;
  height: 70%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 108, 247, 0.28) 0%, transparent 70%);
  filter: blur(20px);
  pointer-events: none;
  animation: solucoes-pulse 4.5s ease-in-out infinite;
}
@keyframes solucoes-pulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.12); opacity: 1; }
}
.solucoes-rotator {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 580px;
  margin: 0 auto;
}
.solucoes-illustration {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.4));
  opacity: 0;
  transition: opacity 1s ease, transform 0.4s var(--ease-out);
}
.solucoes-illustration:first-child {
  position: relative;
}
.solucoes-illustration.is-active {
  opacity: 1;
}
.solucoes-center:hover .solucoes-illustration.is-active {
  transform: scale(1.04);
}
@media (prefers-reduced-motion: reduce) {
  .solucoes-center__glow { animation: none; }
}

/* ---------- steps / processo ---------- */
.steps-section {
  padding: var(--section-y) 0;
  background: #F3F5F9;
}

.section-intro__title--dark { color: var(--evoe-navy); }
.section-intro__text--dark { color: rgba(21, 25, 45, 0.68); }

.process-track {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 10px;
  align-items: stretch;
}

.process-card {
  position: relative;
  padding: 28px 22px 24px;
  background: #fff;
  border: 1px solid rgba(21, 25, 45, 0.08);
  border-radius: 18px;
  box-shadow: 0 10px 28px -18px rgba(8, 12, 28, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
}

.process-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--evoe-accent);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.35s ease;
}

.process-card:hover {
  transform: translateY(-6px);
  border-color: rgba(60, 91, 232, 0.3);
  box-shadow: 0 22px 40px -18px rgba(60, 91, 232, 0.28);
}

.process-card:hover::before {
  transform: scaleY(1);
}

.process-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.process-card__num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(21, 25, 45, 0.28);
  transition: color 0.25s ease;
}

.process-card:hover .process-card__num {
  color: var(--evoe-accent);
}

.process-card__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(60, 91, 232, 0.08);
  color: var(--evoe-accent);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.process-card__icon svg {
  width: 22px;
  height: 22px;
}

.process-card:hover .process-card__icon {
  background: var(--evoe-accent);
  color: #fff;
  transform: scale(1.06);
}

.process-card__title {
  margin: 0 0 8px;
  font-size: 18px;
  color: var(--evoe-navy);
}

.process-card__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(21, 25, 45, 0.65);
}

.process-connector {
  width: 28px;
  height: 2px;
  align-self: center;
  background: linear-gradient(90deg, rgba(60, 91, 232, 0.15), rgba(60, 91, 232, 0.55), rgba(60, 91, 232, 0.15));
  border-radius: 2px;
  position: relative;
}

.process-connector::after {
  content: "";
  position: absolute;
  right: -3px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--evoe-accent);
  transform: translateY(-50%);
  box-shadow: 0 0 0 4px rgba(60, 91, 232, 0.15);
}

/* ---------- pitch 3D ---------- */
.pitch-3d {
  position: relative;
  padding: var(--section-y) 0;
  background: var(--evoe-black);
  text-align: center;
  overflow: hidden;
}
.pitch-3d::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/pitch-3d-bg.webp") center / cover no-repeat;
  opacity: 0.25;
  z-index: 0;
}
.pitch-3d::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.55), rgba(0,0,0,0.75));
  z-index: 0;
}
.pitch-3d > * {
  position: relative;
  z-index: 1;
}
.pitch-3d h2 {
  margin: 0 0 12px;
  font-size: clamp(24px, 3vw, 30px);
  color: #fff;
}
.pitch-3d p {
  margin: 0 auto 24px;
  max-width: 520px;
  color: var(--evoe-text-dim);
}

/* ---------- FAQ ---------- */
.faq-section {
  padding: var(--section-y) 0;
  background: #F4F5F8;
  overflow: hidden;
}
.faq-section .section-intro__title { color: var(--evoe-navy); }
.faq-section .section-intro__text { color: rgba(21, 25, 45, 0.7); }

.faq-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 32px;
  align-items: stretch;
}
.faq-section__photo {
  margin: calc(var(--section-y) * -1) 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.faq-section__photo img {
  width: auto;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  object-position: bottom;
  display: block;
  filter: drop-shadow(0 24px 32px rgba(21, 25, 45, 0.18));
}
.faq-section__content {
  min-width: 0;
}

.faq-app { width: 100%; max-width: 760px; margin: 0; }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: #fff;
  border: 1px solid rgba(21, 25, 45, 0.08);
  border-radius: var(--evoe-radius-sm);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(8, 12, 28, 0.04);
}
.faq-item.is-open {
  border-color: rgba(60, 91, 232, 0.35);
  box-shadow: 0 8px 24px rgba(60, 91, 232, 0.08);
}
.faq-item-heading { margin: 0; }
.faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 18px 20px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}
.faq-question {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--evoe-navy);
}
.faq-chevron-wrap {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(21, 25, 45, 0.12);
  transition: background 0.2s ease, border-color 0.2s ease;
}
.faq-item.is-open .faq-chevron-wrap {
  background: var(--evoe-accent);
  border-color: var(--evoe-accent);
}
.faq-chevron {
  width: 14px;
  height: 14px;
  color: rgba(21, 25, 45, 0.45);
  transition: transform 0.3s ease, color 0.2s ease;
}
.faq-item.is-open .faq-chevron {
  color: #fff;
  transform: rotate(180deg);
}
.faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}
.faq-item.is-open .faq-panel { grid-template-rows: 1fr; }
.faq-panel-inner { overflow: hidden; min-height: 0; }
.faq-answer {
  margin: 0;
  padding: 0 20px 18px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(21, 25, 45, 0.7);
}
.faq-answer strong { color: var(--evoe-navy); }

/* ---------- orçamento ---------- */
.orcamento {
  padding: var(--section-y) 0;
  background:
    radial-gradient(80% 80% at 10% 20%, rgba(60, 91, 232, 0.18) 0%, transparent 55%),
    var(--evoe-navy);
}

.orcamento-split {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 40px;
  align-items: center;
}

.orcamento-copy {
  max-width: 460px;
}

.orcamento-kicker {
  margin: 0 0 10px;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--evoe-accent);
}

.orcamento-title {
  margin: 0 0 14px;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.15;
  color: #fff;
}

.orcamento-lead {
  margin: 0 0 22px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--evoe-text-dim);
}

.orcamento-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.orcamento-points li {
  position: relative;
  padding-left: 28px;
  font-size: 14.5px;
  color: #fff;
}

.orcamento-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(60, 91, 232, 0.2);
  box-shadow: inset 0 0 0 4px var(--evoe-accent);
}

.orcamento-card {
  width: 100%;
  padding: 32px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 24px 50px -20px rgba(0, 0, 0, 0.4);
}

.orcamento-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-field {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.form-label {
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-ui);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(21, 25, 45, 0.5);
  text-align: left;
}

.form-input {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--evoe-navy);
  background: #F7F8FB;
  border: 1px solid rgba(21, 25, 45, 0.1);
  border-radius: 12px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-input:hover {
  border-color: rgba(60, 91, 232, 0.3);
}

.form-input:focus {
  outline: none;
  background: #fff;
  border-color: var(--evoe-accent);
  box-shadow: 0 0 0 3px rgba(60, 91, 232, 0.15);
}

textarea.form-input {
  min-height: 96px;
  resize: vertical;
}

.btn-submit {
  width: 100%;
  margin-top: 4px;
  padding: 15px 20px;
  background: var(--evoe-accent);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-submit:hover {
  background: var(--evoe-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(60, 91, 232, 0.35);
}

/* ---------- footer ---------- */
.site-footer {
  background: var(--evoe-navy);
  border-top: 1px solid var(--evoe-line);
}
.site-footer__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px var(--space-x);
}
.site-footer__brand img {
  width: 100%;
  max-width: 180px;
}
.site-footer h2 {
  margin: 0 0 16px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
}
.contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}
.contact-item:last-child { margin-bottom: 0; }
.contact-item__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--evoe-line);
  color: #fff;
  padding: 8px;
  box-sizing: border-box;
}
.contact-item__icon img,
.contact-item__icon svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.contact-item__icon svg { fill: currentColor; }
.contact-item__icon:hover { color: var(--evoe-accent); border-color: rgba(74, 108, 247, 0.4); background: rgba(74, 108, 247, 0.12); }
.contact-item__body h3 {
  margin: 0 0 2px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--evoe-text-dim);
}
.contact-item__body p {
  margin: 0;
  font-size: 14px;
  color: #fff;
}
.contact-item__body a {
  color: inherit;
  text-decoration: none;
}
.contact-item__body a:hover { color: var(--evoe-accent); }

.site-footer__bottom {
  background: #000;
  border-top: 1px solid var(--evoe-line);
  padding: 18px var(--space-x);
  text-align: center;
}
.site-footer__bottom p {
  margin: 0 0 4px;
  font-size: 13px;
  color: var(--evoe-text-dim);
}
.site-footer__bottom p:last-child { margin: 0; }
.creds a { color: var(--evoe-text-dim); }
.creds a:hover { color: var(--evoe-accent); }

/* ---------- FAB WhatsApp ---------- */
.wa-fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 400;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--evoe-accent);
  border: none;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, background 0.2s ease;
}
.wa-fab:hover {
  background: var(--evoe-accent-hover);
  transform: translateY(-2px);
}
.wa-fab svg { width: 28px; height: 28px; fill: currentColor; }

/* ---------- modais produtos / WA / soluções ---------- */
.produtos-modal,
.wa-modal,
.solucoes-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.produtos-modal.is-open,
.wa-modal.is-open,
.solucoes-modal.is-open {
  opacity: 1;
  visibility: visible;
}
html.produtos-modal-lock,
html.produtos-modal-lock body,
html.wa-modal-lock,
html.wa-modal-lock body,
html.solucoes-modal-lock,
html.solucoes-modal-lock body {
  overflow: hidden;
}
.produtos-modal-overlay,
.wa-modal-overlay,
.solucoes-modal-overlay {
  position: absolute;
  inset: 0;
  border: none;
  padding: 0;
  background: rgba(4, 6, 14, 0.72);
  backdrop-filter: blur(3px);
  cursor: default;
}
.produtos-modal-dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 860px;
  max-height: 86vh;
  display: flex;
  flex-direction: column;
  background: var(--evoe-navy);
  border: 1px solid var(--evoe-line);
  border-radius: var(--evoe-radius);
  overflow: hidden;
}
.produtos-modal-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px 14px;
  border-bottom: 1px solid var(--evoe-line);
}
.produtos-modal-titulo {
  margin: 0 0 4px;
  font-size: 20px;
  color: #fff;
}
.produtos-modal-subtitulo {
  margin: 0;
  font-size: 14px;
  color: var(--evoe-text-dim);
}
.produtos-modal-close,
.wa-modal-close {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--evoe-line);
  background: transparent;
  color: #fff;
  cursor: pointer;
}
.produtos-modal-close svg,
.wa-modal-close svg { width: 16px; height: 16px; }
.produtos-modal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  padding: 20px 24px 24px;
  overflow-y: auto;
}
.produto-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--evoe-line);
  border-radius: var(--evoe-radius-sm);
  overflow: hidden;
}
.produto-card-media {
  aspect-ratio: 3 / 4;
  background: rgba(0, 0, 0, 0.3);
  overflow: hidden;
}
.produto-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.produto-card-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px;
}
.produto-card-nome {
  margin: 0;
  font-size: 14px;
  color: #fff;
}
.produto-card-variante {
  font-size: 12px;
  color: var(--evoe-text-dim);
}
.produto-card-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0 12px;
}
.produto-swatch {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid rgba(230, 230, 230, 0.35);
  background: var(--swatch-cor, #333);
  cursor: pointer;
  padding: 0;
}
.produto-swatch.is-active {
  box-shadow: 0 0 0 2px var(--evoe-navy), 0 0 0 3.5px var(--evoe-accent);
}
.produto-card-cta {
  display: inline-flex;
  justify-content: center;
  padding: 10px 12px;
  margin-top: 4px;
  font-size: 13px;
  color: #fff;
  background: var(--evoe-accent);
  border-radius: 8px;
  text-decoration: none;
  text-align: center;
}

.wa-modal-dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.8) 100%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border-radius: var(--evoe-radius);
  padding: 32px 28px 28px;
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.7);
}
.wa-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  color: var(--evoe-navy);
  border-color: rgba(21, 25, 45, 0.15);
}

/* ---------- popup "Ver soluções" (mobile) ---------- */
.solucoes-cta-mobile { display: none; }
.solucoes-modal-dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  max-height: 86vh;
  overflow-y: auto;
  background: var(--evoe-navy);
  border: 1px solid var(--evoe-line);
  border-radius: var(--evoe-radius);
  padding: 32px 24px 28px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}
.solucoes-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--evoe-line);
  background: transparent;
  color: #fff;
  cursor: pointer;
}
.solucoes-modal-close svg { width: 16px; height: 16px; }
.solucoes-modal-titulo {
  margin: 0 0 6px;
  font-size: 22px;
  color: #fff;
  padding-right: 32px;
}
.solucoes-modal-subtitulo {
  margin: 0 0 22px;
  font-size: 14px;
  color: var(--evoe-text-dim);
}
.solucoes-modal-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.solucoes-modal-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-family: var(--font-display);
  font-size: 14.5px;
  font-weight: 600;
  color: #fff;
}
.solucoes-modal-check {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  background: rgba(74, 108, 247, 0.14);
  border: 1px solid rgba(74, 108, 247, 0.28);
  color: #7B93FF;
}
.solucoes-modal-check svg { width: 19px; height: 19px; }
.solucoes-modal-cta {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 20px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, #5B7CFF 0%, #3A58E0 100%);
  color: #fff;
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}


/* ---------- motion extras ---------- */
.btn-primary,
.modalidades-btn,
.linha-card,
.benefit-card,
.problema-card,
.faq-item,
.lookbook-tile,
.wa-fab {
  will-change: transform;
}

.btn-primary {
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(60, 91, 232, 0.35);
}

/* benefit/problema motion defined in section blocks */

.faq-item {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.faq-item:hover {
  transform: translateY(-2px);
}

/* solucoes + stats motion in section blocks */

/* anchors */
#inicio, #quemsomos, #solucoes, #linhasatendidas, #faq, #orcamento {
  scroll-margin-top: 64px;
}

/* ---------- responsive ---------- */
@media (max-width: 1100px) {
  .linhas-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1024px) {
  .process-track {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .process-connector { display: none; }
  .orcamento-split {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .orcamento-copy { max-width: none; }

  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .solucoes-grid { grid-template-columns: 1fr; gap: 20px; }
  .solucoes-center { order: -1; }
  .solucoes-illustration { max-width: 260px; }
  .solucoes-list--left .solucoes-item,
  .solucoes-list--right .solucoes-item {
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
  }
  .solucoes-list--left .solucoes-connector,
  .solucoes-list--right .solucoes-connector { display: none; }
  .solucoes-item h3 { max-width: none; }
  .steps-grid { grid-template-columns: 1fr; }
  .problema-solucao__grid { grid-template-columns: 1fr; gap: 0; }
  .problema-solucao__photo {
    min-height: 320px;
    border-radius: 22px 22px 0 0;
    order: -1;
  }
  .problema-solucao__photo img { min-height: 320px; }
  .problema-solucao__content {
    margin-left: 0;
    margin-top: -48px;
    padding: 0 12px var(--section-y);
  }
  .faq-section__grid { grid-template-columns: 1fr; gap: 0; }
  .faq-section__photo { order: -1; margin: 0 0 -24px; }
  .faq-section__photo img { width: 100%; height: auto; max-width: 260px; max-height: none; margin: 0 auto; }
}

@media (max-width: 1024px) {
  /* nav inline do desktop é substituído pelo drawer (.site-nav-drawer, ver
     bloco "MOBILE APP EXPERIENCE" mais abaixo). Tablet usa o mesmo drawer
     do mobile — só o desktop (>1024px) mantém a navbar inline. */
  .nav-toggle { display: flex; }
  .site-nav { display: none; }
}

@media (max-width: 1024px) {
  .process-track { grid-template-columns: 1fr; }
  .orcamento-card { padding: 22px; }
  .form-row { grid-template-columns: 1fr; }

  .hero {
    min-height: auto;
    padding: 110px var(--space-x) 48px;
  }
  .stats-band__inner { grid-template-columns: 1fr; }
  .stat-item {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }
  .stat-item:first-child { border-top: none; }
  .problema-cards-row { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .linhas-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .linha-card__text { display: none; }
  .linha-card__body { padding: 12px; }
  .linha-card__title { font-size: 15px; }
  .produtos-modal-dialog {
    margin: 0;
    max-height: 100%;
    height: 100%;
    border-radius: 0;
    width: 100%;
  }
  .produtos-modal-header {
    flex-direction: column;
    padding: 18px 16px 14px;
  }
  .produtos-modal-actions {
    width: 100%;
    justify-content: space-between;
  }
  .produtos-modal-body { padding: 14px 16px 24px; }
  .produtos-lookbook {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .form-row { grid-template-columns: 1fr; }
  .orcamento-card { padding: 24px; }
  .site-footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .site-footer__brand { display: flex; justify-content: center; }
  .contact-item { text-align: left; }
  .btn-primary { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ==========================================================================
   PREMIUM / LIQUID GLASS refinements
   ========================================================================== */

html, body {
  background: var(--evoe-black);
}

/* header in main block */

.hero {
  min-height: min(86vh, 820px);
  padding: 140px var(--space-x) 88px;
  background-color: #05070C;
}

.hero__title {
  letter-spacing: -0.03em;
  text-shadow: 0 2px 40px rgba(0,0,0,0.35);
}

.btn-primary {
  background: linear-gradient(135deg, #5B7CFF 0%, #3A58E0 100%);
  border: 1px solid rgba(255,255,255,0.28);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.35), 0 12px 30px -12px rgba(74, 108, 247, 0.55);
  backdrop-filter: blur(10px);
}

/* stats liquid glass in main block */


/* problema / benefits premium styles consolidated in main blocks above */

.linhas-section {
  background:
    radial-gradient(50% 40% at 0% 100%, rgba(74,108,247,0.1) 0%, transparent 50%),
    linear-gradient(180deg, #080c16 0%, #05070c 100%);
}

.linha-card {
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
  overflow: hidden;
}

.linha-card__media {
  aspect-ratio: 4 / 5;
}

.linha-card__media img {
  object-position: center 25%;
}

.linha-card__body {
  background: linear-gradient(180deg, rgba(8,12,22,0) 0%, rgba(8,12,22,0.4) 100%);
}

.process-card {
  background: linear-gradient(160deg, rgba(255,255,255,0.95) 0%, rgba(245,247,252,0.9) 100%);
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: 0 18px 40px -22px rgba(8,12,28,0.28), inset 0 1px 0 rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);
}

.orcamento {
  background:
    radial-gradient(70% 60% at 15% 30%, rgba(74,108,247,0.22) 0%, transparent 55%),
    radial-gradient(50% 40% at 90% 80%, rgba(201,178,138,0.08) 0%, transparent 50%),
    var(--evoe-navy);
}

.orcamento-card {
  background: linear-gradient(160deg, rgba(255,255,255,0.97) 0%, rgba(244,247,255,0.94) 100%);
  border: 1px solid rgba(255,255,255,0.65);
  box-shadow: 0 30px 70px -24px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.9);
  backdrop-filter: blur(18px);
}

.faq-item {
  background: linear-gradient(160deg, rgba(255,255,255,0.98) 0%, rgba(248,249,252,0.94) 100%);
  border: 1px solid rgba(21,25,45,0.06);
  box-shadow: 0 10px 28px -18px rgba(8,12,28,0.18);
}

.produtos-modal-dialog {
  background: linear-gradient(180deg, rgba(14,19,34,0.98) 0%, rgba(8,12,22,0.98) 100%);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(24px);
}

.lookbook-tile {
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
}

/* solucoes illustration in main block */

.pitch-3d .btn-primary {
  min-width: 220px;
}

/* Image containment helpers */
.linha-card__media,
.problema-solucao__photo,
.lookbook-tile__media {
  overflow: hidden;
}

img {
  max-width: 100%;
}

/* ==========================================================================
   MOBILE APP EXPERIENCE
   Reformulação completa da experiência mobile — não é só "responsivo".
   Tudo abaixo tem precedência sobre as regras acima nos breakpoints móveis
   (mesma especificidade, ordem de código posterior vence a cascata).
   ========================================================================== */

:root {
  --safe-b: env(safe-area-inset-bottom, 0px);
  --safe-t: env(safe-area-inset-top, 0px);
}

/* elementos novos: escondidos por padrão (desktop), ligados via media query */
.site-nav-drawer,
.site-nav__head,
.site-nav__close,
.site-nav__cta,
.site-nav__overlay,
.mobile-cta-bar,
.problema-tabs__nav {
  display: none;
}
.problema-tabs__radio { position: absolute; opacity: 0; pointer-events: none; }

@media (max-width: 1024px) {
  html { overflow-x: hidden; }
  body { overflow-x: hidden; }

  /* ---------- header / drawer de navegação ---------- */
  .site-header__inner { padding: 10px var(--space-x); }
  .nav-toggle {
    display: flex;
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }
  .nav-toggle__bar { width: 18px; }

  .site-nav-drawer {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    bottom: auto;
    left: auto;
    width: min(86vw, 360px);
    height: 100vh;
    height: 100dvh;
    max-height: none;
    margin: 0;
    padding: calc(18px + var(--safe-t)) 20px 24px;
    background: #fff;
    border-radius: 0;
    border: none;
    border-left: 1px solid rgba(21, 25, 45, 0.08);
    box-shadow: -24px 0 60px -20px rgba(8, 12, 28, 0.35);
    overflow-y: auto;
    z-index: 1200;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.35s var(--ease-out), visibility 0s linear 0.35s;
  }
  .site-nav-drawer.is-open {
    display: flex;
    transform: translateX(0);
    visibility: visible;
    transition: transform 0.35s var(--ease-out), visibility 0s linear 0s;
  }
  .site-nav__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(21, 25, 45, 0.08);
  }
  .site-nav__head-title {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(21, 25, 45, 0.45);
  }
  .site-nav__close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(21, 25, 45, 0.1);
    background: rgba(21, 25, 45, 0.03);
    color: var(--evoe-navy);
    cursor: pointer;
  }
  .site-nav__close svg { width: 16px; height: 16px; }
  .site-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 0;
    margin: 0 0 auto;
  }
  .site-nav__list a {
    display: flex;
    align-items: center;
    padding: 16px 14px;
    border-radius: 12px;
    font-size: 16px;
    min-height: 52px;
  }
  .site-nav__list a::after { display: none; }
  .site-nav__list a:active { background: rgba(60, 91, 232, 0.1); }
  .site-nav__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 18px;
    padding: 15px 20px;
    min-height: 52px;
    border-radius: 14px;
    background: var(--evoe-accent);
    color: #fff;
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
  }
  /* o header cria seu próprio contexto de empilhamento (position:sticky + z-index);
     sem isto, o drawer/overlay abaixo ficariam presos atrás de elementos fixos
     fora do header, como a barra de CTA mobile (z-index mais alto que 500). */
  .site-header { z-index: 1300; }

  .site-nav__overlay {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1150;
    border: none;
    padding: 0;
    background: rgba(5, 7, 12, 0.55);
    backdrop-filter: blur(2px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0s linear 0.3s;
  }
  .site-nav-drawer.is-open ~ .site-nav__overlay,
  .site-nav-drawer.is-open + .site-nav__overlay {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0s linear 0s;
  }
  html.nav-drawer-lock,
  html.nav-drawer-lock body { overflow: hidden; }

  #cta1.header-cta { display: none; }
}

@media (max-width: 1024px) {
  /* Tablet segue o mesmo padrão do mobile, só que numa dimensão maior —
     o desktop (>1024px) é a única versão com a estrutura/imagens completas. */
  /* ---------- base / performance ---------- */
  * { -webkit-tap-highlight-color: transparent; }
  .site-header,
  .produtos-modal-dialog,
  .wa-modal-dialog {
    backdrop-filter: blur(10px) saturate(140%);
    -webkit-backdrop-filter: blur(10px) saturate(140%);
  }

  .container { width: calc(100% - 32px); }
  .section-intro { margin-bottom: 28px; }
  .section-intro__title { font-size: 24px; line-height: 1.28; letter-spacing: -0.01em; }
  .section-intro__text { font-size: 14.5px; line-height: 1.6; }

  h2 { line-height: 1.25; }

  /* ---------- botões / toque ---------- */
  .btn-primary,
  .btn-submit,
  .wa-submit,
  .header-cta {
    min-height: 52px;
    font-size: 15px;
  }
  .btn-primary { width: 100%; padding: 15px 24px; }

  /* ---------- hero (corrige override indevido do bloco premium) ---------- */
  .hero {
    min-height: auto;
    padding: calc(88px + var(--safe-t)) 20px 40px;
    background-position: 72% center;
  }
  .hero__content { max-width: none; }
  .hero__title { font-size: 30px; line-height: 1.18; margin-bottom: 14px; }
  .hero__lead { font-size: 15px; margin-bottom: 20px; }
  .icon-list--hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 12px;
    margin-bottom: 24px;
  }
  .icon-list--hero li {
    align-items: flex-start;
    font-size: 13px;
    line-height: 1.35;
    gap: 8px;
  }

  /* ---------- stats: lista empilhada, sem swipe (todos os números visíveis
     de cara — arrastar horizontal escondia dado e ficava pouco óbvio) ---------- */
  .stats-band { margin-top: -28px; padding: 0 20px; }
  .stats-band__inner {
    display: flex;
    flex-direction: column;
    grid-template-columns: none;
  }
  .stat-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 18px 20px;
    text-align: left;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }
  .stat-item:first-child { border-top: none; }
  .stat-value { margin: 0; font-size: 24px; white-space: nowrap; }
  .stat-label {
    max-width: 58%;
    text-align: right;
    line-height: 1.35;
  }

  /* ---------- problema x solução: abas ---------- */
  /* a foto não encaixa bem no mobile (proporção/composição pensadas pro
     desktop) — removida; conteúdo assume a coluna toda. */
  .problema-solucao__photo { display: none; }
  .problema-solucao { padding-top: 56px; }
  .problema-solucao__content { padding: 0 0 56px; margin-top: 0; }
  .problema-solucao__content h2 { font-size: 22px; }
  .problema-tabs__nav {
    display: flex;
    gap: 8px;
    margin: 4px 0 16px;
    padding: 4px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
  }
  .problema-tabs__btn {
    flex: 1;
    text-align: center;
    padding: 11px 8px;
    border-radius: 10px;
    font-family: var(--font-ui);
    font-size: 12.5px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--evoe-text-dim);
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
  }
  #problema-tab-1:checked ~ .problema-tabs__nav .problema-tabs__btn--bad,
  #problema-tab-2:checked ~ .problema-tabs__nav .problema-tabs__btn--good {
    background: var(--evoe-accent);
    color: #fff;
  }
  .problema-cards-row { grid-template-columns: 1fr; }
  .problema-cards-row .problema-card { display: none; }
  #problema-tab-1:checked ~ .problema-cards-row .problema-card:nth-child(1),
  #problema-tab-2:checked ~ .problema-cards-row .problema-card:nth-child(2) {
    display: flex;
  }

  /* ---------- benefícios: lista de linhas (estilo Nubank/Notion) ---------- */
  .benefits-section { padding: 56px 0; }
  .benefits-grid { grid-template-columns: 1fr; gap: 10px; }
  .benefit-card {
    display: grid;
    grid-template-columns: 48px 1fr;
    column-gap: 14px;
    row-gap: 3px;
    align-items: start;
    text-align: left;
    padding: 16px;
    border-radius: 16px;
  }
  .benefit-card__icon {
    grid-column: 1;
    grid-row: 1 / span 2;
    width: 48px;
    height: 48px;
    margin: 0;
  }
  .benefit-card__title { grid-column: 2; grid-row: 1; text-align: left; font-size: 15px; }
  .benefit-card__text { grid-column: 2; grid-row: 2; text-align: left; font-size: 13px; }

  /* ---------- linhas / produtos: carrossel horizontal ---------- */
  .linhas-section { padding: 56px 0; }
  .linhas-grid {
    display: flex;
    grid-template-columns: none;
    gap: 12px;
    padding: 4px 4px 8px;
    margin: 0 -4px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .linhas-grid::-webkit-scrollbar { display: none; }
  .linha-card {
    flex: 0 0 62%;
    scroll-snap-align: start;
  }
  .linha-card:first-child { margin-left: 12px; }
  .linha-card:last-child { margin-right: 12px; }
  .linha-card__text { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
  .linha-card__title { font-size: 16px; }
  .linhas-note { padding: 0 20px; }

  /* ---------- soluções ---------- */
  .solucoes { padding: 56px 0; }
  /* listas viram um popup ("Ver soluções") — a versão empilhada dos dois
     lados ficava enorme e repetitiva embaixo da ilustração. */
  .solucoes-list--left,
  .solucoes-list--right { display: none; }
  .solucoes-grid { display: block; }
  .solucoes-center { display: flex; flex-direction: column; align-items: center; }
  /* sem as listas ao lado, a ilustração pode crescer e virar o protagonista */
  .solucoes-rotator { max-width: min(82vw, 360px); }
  .solucoes-illustration { max-width: min(82vw, 360px); }
  .solucoes-center__glow { width: 90%; height: 90%; }
  .solucoes-cta-mobile {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 14px 24px;
    min-height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    font-family: var(--font-ui);
    font-size: 14.5px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    z-index: 2;
  }
  .solucoes-cta-mobile svg { width: 16px; height: 16px; }
  .solucoes-cta-mobile:active { background: rgba(74, 108, 247, 0.16); border-color: rgba(74, 108, 247, 0.4); }

  /* ---------- processo: lista de etapas (timeline compacta) ---------- */
  .steps-section { padding: 56px 0; }
  .process-track {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .process-card {
    display: grid;
    grid-template-columns: 48px 1fr;
    column-gap: 14px;
    row-gap: 4px;
    align-items: start;
    padding: 16px;
  }
  .process-card__top {
    grid-column: 1;
    grid-row: 1 / span 2;
    flex-direction: column-reverse;
    align-items: center;
    gap: 6px;
    margin-bottom: 0;
  }
  .process-card__icon { width: 40px; height: 40px; }
  .process-card__num { font-size: 10px; }
  .process-card__title { grid-column: 2; grid-row: 1; margin: 0; font-size: 16px; }
  .process-card__text { grid-column: 2; grid-row: 2; font-size: 13.5px; }

  /* ---------- pitch 3D ---------- */
  .pitch-3d { padding: 48px 20px; }
  .pitch-3d h2 { font-size: 22px; }
  .pitch-3d .btn-primary { width: auto; min-width: 0; }

  /* ---------- FAQ ---------- */
  /* a foto da corredora (pensada pra sangrar a altura toda da seção no
     desktop) não tem como encaixar bem no mobile — removida. */
  .faq-section__photo { display: none; }
  .faq-section { padding: 56px 0; }
  .faq-trigger { padding: 16px 16px; min-height: 52px; }
  .faq-question { font-size: 14.5px; }

  /* ---------- orçamento ---------- */
  .orcamento { padding: 56px 0; }
  .orcamento-title { font-size: 26px; }
  .orcamento-card { padding: 20px; border-radius: 18px; }
  .form-input { min-height: 50px; font-size: 16px; padding: 12px 14px; }
  textarea.form-input { min-height: 90px; }
  .btn-submit { min-height: 54px; }

  /* ---------- footer ---------- */
  .site-footer__inner { padding: 44px 20px; gap: 36px; }
  .contact-item__body p,
  .contact-item__body a { font-size: 13.5px; }

  /* ---------- FAB + barra fixa de CTA (estilo app) ---------- */
  .wa-fab { display: none; }
  .mobile-cta-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 900;
    padding: 10px 14px calc(10px + var(--safe-b));
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(16px) saturate(160%);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
    border-top: 1px solid rgba(21, 25, 45, 0.08);
    box-shadow: 0 -8px 24px -12px rgba(8, 12, 28, 0.18);
  }
  .mobile-cta-bar__link {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(21, 25, 45, 0.06);
    border: 1px solid rgba(21, 25, 45, 0.1);
    color: var(--evoe-navy);
  }
  .mobile-cta-bar__link svg { width: 19px; height: 19px; fill: currentColor; }
  .mobile-cta-bar__btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 0 16px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(135deg, #5B7CFF 0%, #3A58E0 100%);
    color: #fff;
    font-family: var(--font-ui);
    font-size: 14.5px;
    font-weight: 600;
    cursor: pointer;
  }
  .mobile-cta-bar__btn svg { width: 18px; height: 18px; fill: currentColor; }

  /* espaço para a barra fixa não cobrir o fim da página */
  .site-footer__bottom { padding-bottom: calc(18px + 70px + var(--safe-b)); }
}

@media (max-width: 480px) {
  .hero__title { font-size: 26px; }
  .linha-card { flex-basis: 74%; }
  .icon-list--hero { grid-template-columns: 1fr; }
  .stat-value { font-size: 21px; }
  .stat-label { font-size: 11px; }
}

@media (prefers-reduced-motion: reduce) {
  .site-nav-drawer { transition: none; }
  .site-nav__overlay { transition: none; }
}
