/* ==========================================================
   ITA ENERGY · Landing Page
   Tema: dark com glow vermelho — inspirado em pomelo.la
   Cores: #BC0100 (vermelho) · #F0F0F0 (branco) · #000000 (preto)
   ========================================================== */

/* ----- Reset / Base ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "ABCDiatype", "Archivo", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  background: #FFFFFF;
  color: #1a1a1a;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; background: none; border: none; color: inherit; }
ul { list-style: none; }
::selection { background: #BC0100; color: #fff; }

/* ----- Design tokens ----- */
:root {
  --red: #BC0100;
  --red-2: #8e0100;
  --red-glow: rgba(188, 1, 0, 0.45);
  /* V2 (tema claro): --white passa a ser a cor de TEXTO escuro; --black o fundo claro */
  --white: #141414;
  --black: #FFFFFF;

  --bg-0: #FFFFFF;
  --bg-1: #F6F6F6;
  --bg-2: #EFEFEF;
  --bg-3: #E7E7E7;

  --border: rgba(0,0,0,0.10);
  --border-strong: rgba(0,0,0,0.18);

  --text: #141414;
  --text-2: rgba(20,20,20,0.72);
  --text-3: rgba(20,20,20,0.5);

  --font-display: "Archivo", "ABCDiatype", "Inter", sans-serif;
  --font-body: "Inter", "ABCDiatype", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  --container: 1280px;
  --gap: clamp(20px, 4vw, 56px);
  --section-py: clamp(80px, 10vw, 160px);

  --ease: cubic-bezier(.2,.7,.2,1);
  --ease-out-expo: cubic-bezier(.16, 1, .3, 1);
}

/* ----- Container ----- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
  position: relative;
}

/* ----- Typography ----- */
.display, .display-lg, .display-md {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.02;
  color: var(--white);
}
.display { font-size: clamp(1.9rem, 4.2vw, 3.4rem); line-height: 1.1; }
.display-lg { font-size: clamp(3rem, 8vw, 7rem); }
.display-md { font-size: clamp(2rem, 4.6vw, 3.6rem); line-height: 1.06; }

.lead { font-size: clamp(1.05rem, 1.4vw, 1.25rem); color: var(--text-2); max-width: 60ch; }
.lead-sm { font-size: 1.05rem; color: var(--text-2); max-width: 60ch; }

.kicker {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--text-3);
  text-transform: uppercase;
  margin-bottom: 18px;
  display: inline-block;
}
.kicker.red { color: var(--red); }

.grad {
  background: linear-gradient(180deg, var(--white) 0%, var(--red) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  padding-bottom: 0.08em;
  white-space: nowrap;
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  transition: all 0.3s var(--ease);
  position: relative;
  isolation: isolate;
  white-space: nowrap;
}
.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 0 0 0 var(--red-glow);
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, #d40100, #8e0100);
  z-index: -1;
  transition: opacity 0.3s var(--ease);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 40px var(--red-glow), 0 0 0 1px rgba(255,255,255,0.1) inset;
}
.btn-outline {
  border: 1px solid var(--border-strong);
  color: var(--white);
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.06);
  border-color: var(--red);
  color: var(--white);
}
.btn-block { width: 100%; padding: 16px 24px; font-size: 16px; }
.btn-lg { padding: 18px 32px; font-size: 16px; }

/* ----- Cursor glow ----- */
.cursor-glow {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--red-glow) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  mix-blend-mode: screen;
  filter: blur(40px);
}
body:hover .cursor-glow { opacity: 0.4; }
@media (max-width: 768px) { .cursor-glow { display: none; } }

/* ----- Loader ----- */
.loader {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at center, #0a0a0a 0%, var(--black) 70%),
    var(--black);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s var(--ease), visibility 0.8s;
  overflow: hidden;
}
.loader::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 50% 50%, #000 0%, transparent 60%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, #000 0%, transparent 60%);
  opacity: 0.5;
}
.loader::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--red-glow) 0%, transparent 60%);
  filter: blur(60px);
  transform: translate(-50%, -50%);
  animation: pulseGlow 2.4s ease-in-out infinite;
  mix-blend-mode: screen;
}
.loader.done { opacity: 0; visibility: hidden; }

.loader-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.loader-logo {
  position: relative;
  width: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: loaderLogoIn 0.8s var(--ease-out-expo) both;
}
.loader-logo img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 24px var(--red-glow));
  animation: loaderLogoBreathe 2.4s ease-in-out infinite;
  position: relative;
  z-index: 2;
}
.loader-pulse {
  position: absolute;
  inset: -30px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--red-glow) 0%, transparent 70%);
  animation: loaderPulse 2.4s ease-in-out infinite;
}
@keyframes loaderLogoIn {
  from { opacity: 0; transform: scale(0.85); filter: blur(8px); }
  to { opacity: 1; transform: scale(1); filter: blur(0); }
}
@keyframes loaderLogoBreathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}
@keyframes loaderPulse {
  0%, 100% { opacity: 0.4; transform: scale(0.95); }
  50% { opacity: 0.8; transform: scale(1.1); }
}

.loader-bar {
  width: 220px;
  height: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
.loader-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--red-2), var(--red), #ff3030);
  width: 0%;
  animation: loadProg 1.6s var(--ease-out-expo) forwards;
  box-shadow: 0 0 10px var(--red-glow);
}
@keyframes loadProg { to { width: 100%; } }
.loader-text {
  font-family: var(--font-mono);
  font-weight: 500;
  letter-spacing: 0.18em;
  font-size: 10px;
  color: var(--text-3);
  text-transform: uppercase;
  animation: loaderTextIn 1s var(--ease-out-expo) 0.3s both;
}
@keyframes loaderTextIn {
  from { opacity: 0; letter-spacing: 0.3em; }
  to { opacity: 1; letter-spacing: 0.18em; }
}

/* ----- Announcement bar ----- */
.announcement {
  background: var(--red);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  overflow: hidden;
  padding: 10px 0;
  position: relative;
  z-index: 100;
}
.announcement-track {
  display: flex;
  gap: 28px;
  animation: marquee 35s linear infinite;
  white-space: nowrap;
  width: fit-content;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ----- Header ----- */
.header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(5,5,5,0.6);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: padding 0.3s var(--ease), background 0.3s var(--ease);
}
.header.scrolled { padding: 4px 0; background: rgba(5,5,5,0.85); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  gap: 24px;
}
.logo img {
  height: 36px;
  width: auto;
  transition: transform 0.3s var(--ease);
}
.logo:hover img { transform: scale(1.04); }

.nav {
  display: flex;
  gap: 28px;
  font-size: 14px;
  color: var(--text-2);
}
.nav a {
  position: relative;
  transition: color 0.25s var(--ease);
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--red);
  transition: width 0.3s var(--ease);
}
.nav a:hover { color: var(--white); }
.nav a:hover::after { width: 100%; }

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.btn-wpp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-2);
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  transition: all 0.25s var(--ease);
}
.btn-wpp:hover { border-color: var(--red); color: var(--white); }
.btn-wpp svg { color: #25D366; }

.menu-toggle {
  display: none;
  width: 32px;
  height: 32px;
  position: relative;
}
.menu-toggle span {
  position: absolute;
  left: 4px;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s var(--ease);
}
.menu-toggle span:nth-child(1) { top: 11px; }
.menu-toggle span:nth-child(2) { top: 19px; }
.menu-toggle.active span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 360px;
  height: 100vh;
  background: var(--bg-1);
  border-left: 1px solid var(--border);
  padding: 100px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: right 0.4s var(--ease);
  z-index: 80;
}
.mobile-drawer.open { right: 0; }
.mobile-drawer a { font-size: 18px; }

@media (max-width: 980px) {
  .nav { display: none; }
  .btn-wpp span, .header-cta .btn { display: none; }
  .menu-toggle { display: block; }
  .header-cta .btn-wpp { padding: 8px; }
}

/* ====== HERO ====== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(60px, 7vw, 90px) 0 clamp(30px, 4vw, 50px);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  top: -25%;
  left: 5%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.1);
  transform-origin: top right;
  z-index: 0;
  opacity: 1;
  filter: saturate(1.2) contrast(1.08);
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.35) 55%, rgba(0,0,0,0.1) 100%),
    linear-gradient(180deg, transparent 60%, var(--black) 100%),
    radial-gradient(ellipse at 80% 50%, rgba(188,1,0,0.18), transparent 55%);
  z-index: 1;
}
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at 50% 30%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, #000 0%, transparent 75%);
  opacity: 0.5;
}
.hero-glow {
  position: absolute;
  top: 10%;
  left: 50%;
  width: 90vw;
  max-width: 1100px;
  height: 700px;
  background: radial-gradient(ellipse at center,
    rgba(188,1,0,0.2) 0%,
    rgba(188,1,0,0.08) 30%,
    transparent 70%);
  transform: translateX(-50%);
  filter: blur(60px);
  animation: pulseGlow 6s ease-in-out infinite;
  mix-blend-mode: screen;
}
@keyframes pulseGlow {
  0%, 100% { opacity: 0.7; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.05); }
}
.hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.12'/></svg>");
  mix-blend-mode: overlay;
  opacity: 0.15;
}

.hero .container.hero-inner {
  max-width: none;
  margin: 0;
  padding-left: clamp(24px, 6vw, 80px);
  padding-right: clamp(24px, 6vw, 80px);
  display: flex;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}
.hero-copy {
  max-width: 680px;
  width: 100%;
  text-align: left;
}

/* Trafo decorativo acima do título — visível apenas no mobile */
.hero-mobile-trafo { display: none; }

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 36px;
}

/* Side form on the right of hero */
.hero-form-side {
  width: 100%;
  max-width: 460px;
  justify-self: end;
}
.hero-side-form {
  background: linear-gradient(180deg, rgba(15,15,15,0.7), rgba(5,5,5,0.85));
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 20px;
  padding: 24px 22px;
  display: grid;
  gap: 10px;
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  box-shadow:
    0 30px 80px -10px rgba(0,0,0,0.6),
    0 0 60px -20px var(--red-glow),
    inset 0 1px 0 rgba(255,255,255,0.06);
  position: relative;
}
.hero-side-form::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(180deg, rgba(188,1,0,0.5), transparent 60%);
  -webkit-mask: linear-gradient(#000, #000) content-box, linear-gradient(#000, #000);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  pointer-events: none;
}
.hero-side-form .form-head { margin-bottom: 6px; }
.hero-side-form .form-head h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 8px 0 4px;
}
.hero-side-form .form-head p { color: var(--text-2); font-size: 12px; }
.hero-side-form .field { position: relative; }
.hero-side-form .field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.hero-side-form .field input,
.hero-side-form .field select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 13px 12px 5px;
  border-radius: 10px;
  font-size: 13px;
  font-family: inherit;
  transition: all 0.25s var(--ease);
  appearance: none;
}
.hero-side-form .field select { padding: 11px 12px; }
.hero-side-form .field input:focus,
.hero-side-form .field select:focus {
  outline: none;
  border-color: var(--red);
  background: rgba(188,1,0,0.06);
  box-shadow: 0 0 0 3px rgba(188,1,0,0.12);
}
.hero-side-form .field label {
  position: absolute;
  top: 13px;
  left: 12px;
  font-size: 12px;
  color: var(--text-3);
  pointer-events: none;
  transition: all 0.2s var(--ease);
}
.hero-side-form .field input:focus ~ label,
.hero-side-form .field input:not(:placeholder-shown) ~ label {
  top: 3px;
  font-size: 9px;
  color: var(--red);
}
.hero-side-form .btn-block { padding: 13px 18px !important; font-size: 14px !important; margin-top: 2px; }
.hero-side-form .form-foot { font-size: 11px; color: var(--text-3); text-align: center; margin-top: 2px; }
.hero-side-form .form-foot a { color: var(--red); text-decoration: underline; }

@media (max-width: 980px) {
  .hero-form-side { justify-self: stretch; max-width: 100%; }
}

/* Inline horizontal form replacing bullets */
.hero-inline-form {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  align-items: stretch;
  background: rgba(10,10,10,0.45);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 10px;
  margin: 32px 0 14px;
  max-width: 640px;
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  box-shadow: 0 20px 50px -10px rgba(0,0,0,0.5), 0 0 40px -20px var(--red-glow);
}
.hero-inline-form .field-wide { grid-column: span 2; }
.hero-inline-form .hero-inline-btn { grid-column: 1 / -1; margin-top: 2px; }
.hero-inline-form .field { position: relative; }
.hero-inline-form .field input,
.hero-inline-form .field select {
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  color: var(--white);
  padding: 14px 12px 4px !important;
  border-radius: 10px;
  font-size: 14px !important;
  font-family: inherit;
  appearance: none;
  transition: all 0.25s var(--ease);
}
.hero-inline-form .field select { padding: 12px !important; }
.hero-inline-form .field input:focus,
.hero-inline-form .field select:focus {
  outline: none;
  border-color: var(--red) !important;
  background: rgba(188,1,0,0.08) !important;
  box-shadow: 0 0 0 3px rgba(188,1,0,0.15);
}
.hero-inline-form .field label {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 13px;
  color: var(--text-3);
  pointer-events: none;
  transition: all 0.2s var(--ease);
}
.hero-inline-form .field input:focus ~ label,
.hero-inline-form .field input:not(:placeholder-shown) ~ label {
  top: 3px !important;
  font-size: 9px !important;
  color: var(--red);
}
.hero-inline-btn {
  white-space: nowrap;
  border-radius: 10px !important;
  padding: 14px 22px !important;
  font-size: 14px !important;
}
.hero-form-foot {
  font-size: 12px;
  color: var(--text-3);
  margin-bottom: 32px;
}
.hero-form-foot a { color: var(--red); text-decoration: underline; }

@media (max-width: 760px) {
  .hero-inline-form {
    grid-template-columns: 1fr 1fr;
  }
  .hero-inline-form .field-wide { grid-column: span 2; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--text-3);
  text-transform: uppercase;
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  margin-bottom: 28px;
  background: rgba(255,255,255,0.02);
}
.eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 12px var(--red);
  animation: blink 1.8s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-copy h1 { margin-bottom: 28px; }
.hero-copy .lead { margin-bottom: 32px; }
.hero-copy .lead strong { color: var(--white); font-weight: 600; }

.hero-bullets {
  display: grid;
  gap: 12px;
  margin-bottom: 36px;
}
.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-2);
  font-size: 15px;
}
.check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--red);
  position: relative;
  flex-shrink: 0;
}
.check::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='none' stroke='white' stroke-width='3' d='M4 12l5 5L20 7'/></svg>") center/12px no-repeat;
}

.trust-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--text-3);
  font-size: 13px;
  letter-spacing: 0.02em;
  flex-wrap: wrap;
}
.trust-bar .sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--text-3);
}

/* Hero form */
.hero-form {
  position: relative;
}
.form-card {
  background: rgba(10,10,10,0.25);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  padding: 22px 20px;
  position: relative;
  backdrop-filter: blur(14px) saturate(130%);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
  box-shadow:
    0 20px 60px -10px rgba(0,0,0,0.4),
    0 0 40px -20px var(--red-glow),
    inset 0 1px 0 rgba(255,255,255,0.06);
}
.field input, .field select {
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
}
.form-head { margin-bottom: 16px; }
.form-head h2 { font-size: 1.3rem !important; }
.form-head p { font-size: 13px !important; }
.lead-form { gap: 10px !important; }
.field input, .field select { padding: 12px 12px 6px !important; font-size: 14px !important; }
.field select { padding: 10px 12px !important; }
.field label { top: 12px !important; font-size: 13px !important; }
.field input:focus ~ label,
.field input:not(:placeholder-shown) ~ label {
  top: 3px !important;
  font-size: 9px !important;
}
.btn-block { padding: 14px 20px !important; font-size: 14px !important; }
.form-foot { font-size: 11px !important; }
.form-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(180deg, rgba(188,1,0,0.5), transparent 60%);
  -webkit-mask: linear-gradient(#000, #000) content-box, linear-gradient(#000, #000);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.form-head { margin-bottom: 24px; }
.badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--red);
  padding: 4px 10px;
  border: 1px solid var(--red);
  border-radius: 999px;
  margin-bottom: 14px;
}
.form-head h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.form-head p { color: var(--text-2); font-size: 14px; }

.lead-form { display: grid; gap: 14px; }
.field { position: relative; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field input, .field select {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 16px 14px 8px;
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  transition: all 0.25s var(--ease);
  appearance: none;
}
.field select { padding: 12px 14px; }
.field input:focus, .field select:focus {
  outline: none;
  border-color: var(--red);
  background: rgba(188,1,0,0.05);
  box-shadow: 0 0 0 4px rgba(188,1,0,0.1);
}
.field label {
  position: absolute;
  top: 16px;
  left: 14px;
  font-size: 14px;
  color: var(--text-3);
  pointer-events: none;
  transition: all 0.2s var(--ease);
  background: transparent;
}
.field input:focus ~ label,
.field input:not(:placeholder-shown) ~ label {
  top: 4px;
  font-size: 10px;
  color: var(--red);
  letter-spacing: 0.04em;
}
.form-foot { font-size: 12px; color: var(--text-3); text-align: center; margin-top: 4px; }
.form-foot a { color: var(--red); text-decoration: underline; }

.scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--text-3);
  animation: bob 2.4s ease-in-out infinite;
  z-index: 2;
}
@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.6; }
  50% { transform: translateX(-50%) translateY(6px); opacity: 1; }
}

@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .form-card { padding: 28px; }
}

/* ====== Credentials ====== */
.credentials {
  padding: 60px 0;
  background: linear-gradient(180deg, #BC0100 0%, #8e0100 100%);
  border-top: none;
  border-bottom: none;
}
.cred-head {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.7);
  justify-content: center;
}
.cred-head .line {
  height: 1px;
  flex: 1;
  background: rgba(255,255,255,0.3);
  max-width: 240px;
}
.cred-marquee {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.cred-track {
  display: flex;
  gap: 60px;
  animation: marquee 40s linear infinite;
  width: fit-content;
}
.cred-item {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  letter-spacing: -0.01em;
  color: rgba(255,255,255,0.85);
  white-space: nowrap;
  transition: color 0.3s var(--ease);
}
.cred-item:hover { color: #fff; }

/* ====== Section head ====== */
.section-head {
  margin-bottom: clamp(40px, 6vw, 72px);
  max-width: 800px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ====== BIG NUMBERS ====== */
.bignums { padding: var(--section-py) 0; position: relative; }
.bignums-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
}
.bn-card {
  background: var(--bg-1);
  padding: clamp(28px, 4vw, 48px);
  transition: background 0.3s var(--ease);
  position: relative;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.bn-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 100%, var(--red-glow), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.bn-card:hover { background: var(--bg-2); }
.bn-card:hover::before { opacity: 0.5; }
.bn-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 16px;
  background: linear-gradient(180deg, var(--white) 0%, rgba(188,1,0,0.6) 110%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  z-index: 1;
  white-space: nowrap;
}
.bn-sufix {
  font-family: var(--font-display);
  font-size: 1em;
  font-weight: 800;
  margin-left: 6px;
  vertical-align: baseline;
  letter-spacing: -0.03em;
  color: inherit;
  -webkit-text-fill-color: inherit;
  background: inherit;
  -webkit-background-clip: text;
  background-clip: text;
}
.bn-card p { color: var(--text-2); font-size: 14px; position: relative; z-index: 1; }

.bn-card-brand {
  background: linear-gradient(180deg, #BC0100 0%, #8e0100 100%) !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bn-card-brand::before { display: none !important; }
.bn-card-brand:hover { background: linear-gradient(180deg, #d40100 0%, #BC0100 100%) !important; }
.bn-brand-logo {
  width: clamp(120px, 60%, 200px);
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

@media (max-width: 900px) { .bignums-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .bignums-grid { grid-template-columns: 1fr; } }

/* ====== PROBLEM ====== */
.problem { padding: var(--section-py) 0; background: var(--bg-0); position: relative; }
.problem::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -10%;
  width: 60vw;
  height: 60vw;
  max-width: 800px;
  max-height: 800px;
  background: radial-gradient(circle, var(--red-glow), transparent 70%);
  filter: blur(80px);
  opacity: 0.6;
  transform: translateY(-50%);
  pointer-events: none;
}
.problem-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  position: relative;
  z-index: 1;
}
.problem-copy .kicker { margin-bottom: 24px; }
.problem-copy h2 { margin-bottom: 24px; }
.problem-copy .lead-sm { margin-bottom: 36px; }
.problem-list { display: grid; gap: 16px; }
.problem-list li {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: all 0.3s var(--ease);
}
.problem-list li:hover {
  border-color: var(--red);
  transform: translateX(4px);
  background: linear-gradient(90deg, rgba(188,1,0,0.06), var(--bg-1));
}
.problem-list .num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--red);
  flex-shrink: 0;
  padding-top: 2px;
}
.problem-list h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.problem-list p { color: var(--text-2); font-size: 14px; }

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

/* ====== VS ====== */
.vs { padding: var(--section-py) 0; background: var(--bg-1); }
.vs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
  position: relative;
}
.vs-col {
  padding: clamp(32px, 4vw, 48px);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}
.vs-bad {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
  border: 1px solid var(--border);
}
.vs-good {
  background: linear-gradient(180deg, rgba(188,1,0,0.08), rgba(188,1,0,0.02));
  border: 1px solid rgba(188,1,0,0.3);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 30px 80px -20px var(--red-glow);
}
.vs-col header { margin-bottom: 24px; }
.vs-col .tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  padding: 6px 12px;
  border-radius: 999px;
  display: inline-block;
}
.vs-bad .tag { background: rgba(255,255,255,0.06); color: var(--text-3); }
.vs-good .tag { background: var(--red); color: #fff; }
.vs-col ul { display: grid; gap: 12px; }
.vs-col li {
  display: flex;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  color: var(--text-2);
  font-size: 14px;
  align-items: flex-start;
}
.vs-good li { color: var(--white); }
.vs-col li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}
.vs-bad li::before { background: var(--text-3); }
.vs-good li::before { background: var(--red); box-shadow: 0 0 8px var(--red); }

.vs-divider {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.vs-bolt {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 10px var(--bg-1), 0 0 60px var(--red-glow);
  animation: pulseGlow 2s ease-in-out infinite;
}

@media (max-width: 900px) {
  .vs-grid { grid-template-columns: 1fr; gap: 16px; }
  .vs-divider { padding: 12px 0; }
}

/* ====== LIGHT SECTIONS (visual rhythm) ====== */
.light-section {
  background: linear-gradient(180deg, #F0F0F0 0%, #FFFFFF 100%) !important;
  color: #111 !important;
  position: relative;
  overflow: hidden;
}
.light-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 50% 50%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, #000 0%, transparent 75%);
  opacity: 0.6;
  pointer-events: none;
}
.light-section > * { position: relative; z-index: 1; }

/* Glow vermelho sutil de "wave" no topo da seção clara */
.light-section::after {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  opacity: 0.5;
}

.light-section .kicker { color: rgba(0,0,0,0.5); }
.light-section .kicker.red { color: var(--red); }
.light-section .display, .light-section .display-md, .light-section .display-lg {
  color: #111;
}
.light-section .grad {
  background: linear-gradient(180deg, #1a1a1a 0%, var(--red) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.light-section .lead,
.light-section .lead-sm,
.light-section p { color: rgba(0,0,0,0.65); }

/* Light Section: Solutions cards */
.light-section .sol-card {
  background: #FFFFFF;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 4px 24px -8px rgba(0,0,0,0.08);
}
.light-section .sol-card:hover {
  background: #FFFFFF;
  border-color: var(--red);
  box-shadow: 0 30px 60px -20px rgba(188,1,0,0.25);
}
.light-section .sol-card h3 { color: #111; }
.light-section .sol-card p { color: rgba(0,0,0,0.6); }
.light-section .sol-card.feat {
  background: linear-gradient(180deg, #111 0%, #1a1a1a 100%);
  border-color: var(--red);
}
.light-section .sol-card.feat h3 { color: #fff; }
.light-section .sol-card.feat p { color: rgba(255,255,255,0.7); }

/* Light Section: How / Timeline */
.light-section .tl-line {
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}
.light-section .tl-step::before {
  background: var(--red);
  box-shadow: 0 0 16px rgba(188,1,0,0.4), 0 0 0 4px #F0F0F0;
}
.light-section .tl-step h4 { color: #111; }
.light-section .tl-step p { color: rgba(0,0,0,0.6); }

/* Light Section: Big Numbers */
.light-section .bignums-grid {
  background: rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 4px 24px -8px rgba(0,0,0,0.06);
}
.light-section .bn-card {
  background: #FFFFFF;
  transition: background 0.3s var(--ease);
}
.light-section .bn-card::before {
  background: radial-gradient(circle at 50% 100%, rgba(188,1,0,0.18), transparent 70%);
}
.light-section .bn-card:hover {
  background: #FAFAFA;
}
.light-section .bn-card-brand {
  background: linear-gradient(180deg, #BC0100 0%, #8e0100 100%) !important;
}
.light-section .bn-card-brand::before { display: none !important; }
.light-section .bn-card-brand:hover {
  background: linear-gradient(180deg, #d40100 0%, #BC0100 100%) !important;
}
.light-section .bn-num {
  background: linear-gradient(180deg, #1a1a1a 0%, var(--red) 110%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.light-section .bn-card p {
  color: rgba(0,0,0,0.6);
}
.light-section .bn-sufix {
  color: inherit;
  -webkit-text-fill-color: inherit;
  background: inherit;
  -webkit-background-clip: text;
  background-clip: text;
}

/* ====== SOLUTIONS (cards) ====== */
.solutions {
  padding: var(--section-py) 0;
  background: linear-gradient(180deg, #BC0100 0%, #8e0100 100%) !important;
  color: #fff !important;
}
.solutions .kicker { color: rgba(255,255,255,0.6) !important; }
.solutions .display-md, .solutions .solutions-h2 { color: #fff !important; }
.solutions .grad {
  background: linear-gradient(180deg, #fff 0%, rgba(255,255,255,0.7) 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
}
.solutions .sol-card {
  background: rgba(255,255,255,0.12) !important;
  border-color: rgba(255,255,255,0.2) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.solutions .sol-card:hover {
  background: rgba(255,255,255,0.2) !important;
  border-color: rgba(255,255,255,0.4) !important;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.3) !important;
}
.solutions .sol-card h3 { color: #fff !important; }
.solutions .sol-card p { color: rgba(255,255,255,0.75) !important; }
.solutions .sol-ico {
  background: rgba(255,255,255,0.2) !important;
  color: #fff !important;
}
.solutions .sol-card.feat {
  background: rgba(0,0,0,0.3) !important;
  border-color: rgba(255,255,255,0.3) !important;
}
.solutions .sol-card.feat .sol-ico {
  background: #fff !important;
  color: #BC0100 !important;
  box-shadow: 0 0 30px rgba(255,255,255,0.3) !important;
}
.solutions .sol-card.feat h3 { color: #fff !important; }
.solutions .sol-card.feat p { color: rgba(255,255,255,0.75) !important; }
.solutions .ribbon {
  color: #fff !important;
  border-color: rgba(255,255,255,0.5) !important;
}
.solutions-h2 {
  font-size: clamp(1.7rem, 3.6vw, 2.9rem) !important;
  max-width: 22ch;
}
.sol-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.sol-card {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease);
}
.sol-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: linear-gradient(180deg, var(--red), transparent 50%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  z-index: 0;
  border-radius: inherit;
  padding: 1px;
  -webkit-mask: linear-gradient(#000, #000) content-box, linear-gradient(#000, #000);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
}
.sol-card:hover {
  transform: translateY(-6px);
  background: var(--bg-2);
}
.sol-card:hover::before { opacity: 1; }
.sol-ico {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(188,1,0,0.1);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.sol-ico svg { width: 26px; height: 26px; }
.sol-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.sol-card p { color: var(--text-2); font-size: 14px; line-height: 1.6; }
.sol-card.feat .sol-ico { background: var(--red); color: #fff; box-shadow: 0 0 30px var(--red-glow); }
.ribbon {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  color: var(--red);
  padding: 4px 8px;
  border: 1px solid var(--red);
  border-radius: 999px;
}

@media (max-width: 900px) { .sol-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .sol-grid { grid-template-columns: 1fr; } }

/* ====== PANELS ====== */
.panels { background: var(--bg-1); position: relative; }
.panel {
  position: sticky;
  top: 0;
  min-height: 145vh;
  padding-top: clamp(80px, 10vw, 140px);
  padding-bottom: 45vh;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  border-radius: 32px 32px 0 0;
  box-shadow: 0 -40px 80px -20px rgba(0,0,0,0.7);
  transform-origin: top center;
}
.panel .container.panel-grid {
  align-items: center;
}
.panel-1 {
  background: linear-gradient(180deg, #0f0f0f 0%, var(--bg-1) 100%);
  z-index: 1;
}
.panel-2 {
  background: linear-gradient(180deg, var(--bg-0) 0%, #0a0a0a 100%);
  z-index: 2;
}
.panel-2::before {
  content: '';
  position: absolute;
  top: 30%;
  right: -20%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, var(--red-glow), transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}
.panel-3 {
  background: linear-gradient(180deg, #0a0507 0%, var(--black) 100%);
  z-index: 3;
}
.panel-3::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  opacity: 0.6;
}

@media (max-width: 900px) {
  .panel {
    position: relative;
    min-height: auto;
    border-radius: 24px 24px 0 0;
  }
}

.panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.panel-grid.reversed > :first-child { order: 2; }

.panel-copy h2 { margin-bottom: 24px; }
.panel-copy p { color: var(--text-2); margin-bottom: 28px; max-width: 52ch; }
.ticks { display: grid; gap: 12px; margin-bottom: 32px; }
.ticks li {
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--text-2);
  font-size: 15px;
}
.ticks li::before {
  content: '→';
  color: var(--red);
  font-weight: 700;
}

.panel-visual { position: relative; }
.visual-card {
  background: linear-gradient(180deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--border-strong);
  border-radius: 24px;
  padding: 36px;
  display: grid;
  gap: 14px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 100px -20px rgba(0,0,0,0.5);
}
.visual-spec {
  display: flex;
  justify-content: space-between;
  padding: 16px 20px;
  background: rgba(255,255,255,0.03);
  border-radius: 12px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--white);
}
.visual-spec b {
  color: var(--red);
  font-weight: 500;
  letter-spacing: 0.05em;
}
.visual-pulse {
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--red-glow), transparent 70%);
  filter: blur(40px);
  animation: pulseGlow 4s ease-in-out infinite;
  pointer-events: none;
}

/* Panel 1 — Showcase de produtos (Venda) */
.visual-showcase {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
.vsh-main {
  position: relative;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(188,1,0,0.18), transparent 60%),
    linear-gradient(180deg, #1a1a1a 0%, #0c0c0c 100%);
  border: 1px solid var(--border-strong);
  border-radius: 24px;
  padding: 24px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  box-shadow: 0 40px 100px -20px rgba(0,0,0,0.5);
}
.vsh-main img {
  width: auto;
  max-width: 78%;
  max-height: 280px;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,0.7));
  transition: transform 0.6s var(--ease);
}
.vsh-main:hover img { transform: scale(1.04); }
.vsh-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--red);
  padding: 6px 12px;
  background: rgba(188,1,0,0.1);
  border: 1px solid rgba(188,1,0,0.3);
  border-radius: 999px;
  z-index: 3;
}
.vsh-pulse {
  position: absolute;
  bottom: -120px;
  right: -120px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, var(--red-glow), transparent 70%);
  filter: blur(50px);
  animation: pulseGlow 4s ease-in-out infinite;
  pointer-events: none;
}

.vsh-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.vsh-item {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: all 0.3s var(--ease);
  cursor: default;
}
.vsh-item:hover {
  background: rgba(188,1,0,0.06);
  border-color: var(--red);
  transform: translateY(-3px);
}
.vsh-item img {
  width: 100%;
  height: 80px;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.5));
}
.vsh-item span {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  color: var(--text-3);
}
.vsh-item:hover span { color: var(--red); }

.vsh-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 4px;
}
.vsh-spec {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.vsh-spec b {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}
.vsh-spec span {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  color: var(--text-3);
}

/* Panel visuals with real product images */
.visual-card-img {
  position: relative;
  background: linear-gradient(180deg, #1a1a1a 0%, var(--bg-1) 100%);
  border: 1px solid var(--border-strong);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  overflow: hidden;
  box-shadow: 0 40px 100px -20px rgba(0,0,0,0.5);
}
.visual-card-img img {
  width: 100%;
  max-width: 380px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.6));
  position: relative;
  z-index: 2;
}
.visual-spec-overlay {
  display: grid;
  gap: 8px;
  width: 100%;
  position: relative;
  z-index: 2;
}

/* Panel 2 — Locação · Card cinematográfico com case COP30 */
.visual-locacao {
  background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
  border: 1px solid var(--border-strong);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 40px 100px -20px rgba(0,0,0,0.6);
  position: relative;
}
.visual-locacao::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(180deg, var(--red), transparent 60%);
  -webkit-mask: linear-gradient(#000, #000) content-box, linear-gradient(#000, #000);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  pointer-events: none;
  z-index: 3;
}
.vloc-img {
  position: relative;
  height: 280px;
  overflow: hidden;
}
.vloc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s var(--ease);
}
.visual-locacao:hover .vloc-img img { transform: scale(1.06); }
.vloc-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 30%, rgba(10,10,10,0.4) 70%, #0a0a0a 100%),
    radial-gradient(circle at 100% 0%, rgba(188,1,0,0.3), transparent 50%);
  pointer-events: none;
}
.vloc-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: #fff;
  padding: 6px 12px;
  background: var(--red);
  border-radius: 999px;
  z-index: 2;
  box-shadow: 0 8px 24px rgba(188,1,0,0.4);
}
.vloc-stat {
  padding: 28px 32px 32px;
  position: relative;
  z-index: 2;
}
.vloc-big {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 5vw, 4rem);
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(180deg, var(--white) 0%, var(--red) 110%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 6px;
}
.vloc-big small {
  font-size: 0.32em;
  margin-left: 6px;
  vertical-align: super;
  opacity: 0.7;
  -webkit-text-fill-color: var(--text-2);
}
.vloc-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--text-3);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.vloc-rows { display: grid; gap: 2px; }
.vloc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-top: 1px solid var(--border);
  font-size: 13px;
}
.vloc-row span { color: var(--text-3); font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; }
.vloc-row b { color: var(--white); font-weight: 500; text-align: right; max-width: 60%; }

.visual-evs-img {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(188,1,0,0.08) 0%, var(--bg-1) 100%);
  border: 1px solid var(--border-strong);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow: 0 40px 100px -20px rgba(0,0,0,0.5);
}
.visual-evs-img img {
  width: 100%;
  max-width: 360px;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.6));
}
.visual-evs-img .ev-data {
  width: 100%;
}

.visual-stat {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-2) 100%);
  border-radius: 24px;
  padding: 48px 36px;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 100px -20px var(--red-glow);
}
.visual-stat::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 0%, rgba(255,255,255,0.2), transparent 50%);
}
.vs-big {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3rem, 6vw, 5rem);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 4px;
  position: relative;
}
.vs-big small {
  font-size: 0.3em;
  margin-left: 6px;
  vertical-align: super;
  opacity: 0.7;
}
.visual-stat > span {
  display: block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  opacity: 0.8;
  margin-bottom: 32px;
  position: relative;
}
.vs-row {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.2);
  font-size: 13px;
  position: relative;
}
.vs-row span { opacity: 0.7; }
.vs-row b { font-weight: 600; }

.visual-evs {
  display: grid;
  gap: 28px;
  padding: 48px;
  border: 1px solid var(--border-strong);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(188,1,0,0.06), transparent);
  position: relative;
}
.ev-icon {
  width: 100px;
  height: 100px;
  border-radius: 24px;
  background: var(--red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 60px var(--red-glow);
}
.ev-data { display: grid; gap: 12px; }
.ev-data > div {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 13px;
}
.ev-data span { color: var(--text-3); letter-spacing: 0.1em; }
.ev-data b { color: var(--white); font-weight: 500; }

@media (max-width: 900px) {
  .panel-grid { grid-template-columns: 1fr; }
  .panel-grid.reversed > :first-child { order: 1; }
}

/* ====== HOW (Timeline) ====== */
.how { padding: var(--section-py) 0; background: var(--bg-0); position: relative; }
.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  position: relative;
  margin-top: 60px;
}
.tl-line {
  position: absolute;
  top: 24px;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}
.tl-step {
  position: relative;
  padding-top: 60px;
}
.tl-step::before {
  content: '';
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 16px var(--red-glow), 0 0 0 4px var(--bg-0);
}
.tl-num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--red);
  display: block;
  margin-bottom: 10px;
  text-align: center;
}
.tl-step h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 8px;
  text-align: center;
}
.tl-step p { color: var(--text-2); font-size: 13px; text-align: center; line-height: 1.6; }

@media (max-width: 900px) {
  .timeline { grid-template-columns: 1fr; gap: 32px; }
  .tl-line { display: none; }
  .tl-step { padding-top: 0; padding-left: 60px; text-align: left; }
  .tl-step::before { left: 16px; top: 6px; transform: none; }
  .tl-num, .tl-step h4, .tl-step p { text-align: left; }
}

/* ====== CATALOG / CAROUSEL ====== */
.catalog { padding: var(--section-py) 0; background: var(--bg-1); position: relative; }
.carousel {
  position: relative;
  margin-top: 40px;
}
.car-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 8px 0 32px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.car-track::-webkit-scrollbar { display: none; }

.car-card {
  flex: 0 0 360px;
  scroll-snap-align: start;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s var(--ease);
  display: flex;
  flex-direction: column;
}
.car-card:hover {
  transform: translateY(-6px);
  border-color: var(--red);
  box-shadow: 0 30px 60px -20px var(--red-glow);
}
.car-img {
  height: 220px;
  background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.car-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 14px;
  position: relative;
  z-index: 2;
  transition: transform 0.5s var(--ease);
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
}
.car-card:hover .car-img img { transform: scale(1.06); }
.car-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 24px 24px;
}
.car-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 100%, var(--red-glow), transparent 60%);
}
.car-img .placeholder {
  position: relative;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--text-3);
  padding: 8px 14px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
}

.car-body { padding: 28px; flex: 1; display: flex; flex-direction: column; gap: 12px; }
.car-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--red);
}
.car-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: -0.01em;
}
.car-card > .car-body > p { color: var(--text-2); font-size: 14px; line-height: 1.6; }
.car-card ul {
  display: grid;
  gap: 8px;
  margin: 8px 0;
  padding: 16px;
  background: rgba(255,255,255,0.02);
  border-radius: 12px;
}
.car-card li {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-2);
  padding: 6px 0;
  border-bottom: 1px dashed var(--border);
}
.car-card li:last-child { border-bottom: none; }
.car-card li b { color: var(--white); font-weight: 500; }
.car-card .btn { margin-top: auto; }

.car-btn {
  position: absolute;
  top: 100px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-strong);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: all 0.3s var(--ease);
  backdrop-filter: blur(10px);
}
.car-prev { left: -24px; }
.car-next { right: -24px; }
.car-btn:hover {
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 0 30px var(--red-glow);
}

.car-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 16px;
}
.car-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  transition: all 0.3s var(--ease);
}
.car-dots button.active { background: var(--red); width: 24px; border-radius: 999px; }

@media (max-width: 768px) {
  .car-prev { left: 4px; }
  .car-next { right: 4px; }
  .car-card { flex: 0 0 85%; }
}

/* Catalog footer CTA */
.catalog-foot {
  margin-top: 48px;
  padding: 28px 32px;
  background: linear-gradient(90deg, rgba(188,1,0,0.08), rgba(255,255,255,0.02));
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.catalog-foot p {
  color: var(--text-2);
  font-size: 15px;
  max-width: 60ch;
}
.catalog-foot p b { color: var(--white); font-weight: 600; }
@media (max-width: 700px) {
  .catalog-foot { flex-direction: column; align-items: flex-start; padding: 24px; }
}

/* ====== CASES ====== */
.cases { padding: var(--section-py) 0; background: var(--bg-0); }
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.case-card {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 0;
  transition: all 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.case-img {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
}
.case-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.case-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(11,11,11,0.6) 80%, var(--bg-1) 100%);
  pointer-events: none;
}
.case-card:hover .case-img img { transform: scale(1.06); }
.case-card > header,
.case-card > .case-row,
.case-card > .case-result { padding-left: 32px; padding-right: 32px; }
.case-card > header { padding-top: 24px; padding-bottom: 4px; }
.case-card > .case-row + .case-row { padding-top: 4px; }
.case-card > .case-result { padding-bottom: 32px; padding-top: 16px; margin-top: auto; }
.case-card:hover {
  transform: translateY(-6px);
  border-color: var(--red);
  box-shadow: 0 30px 60px -20px var(--red-glow);
}
.case-card.feat {
  background: linear-gradient(180deg, rgba(188,1,0,0.08), var(--bg-1));
  border-color: rgba(188,1,0,0.3);
}
.case-seg {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--text-3);
  display: inline-block;
  margin-bottom: 10px;
}
.case-seg.red { color: var(--red); }
.case-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.case-row { padding: 12px 0; border-top: 1px solid var(--border); }
.case-row span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--text-3);
  display: block;
  margin-bottom: 6px;
}
.case-row p { font-size: 14px; color: var(--text-2); }
.case-result {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.case-result > div {
  padding: 16px;
  background: rgba(188,1,0,0.06);
  border-radius: 12px;
  border: 1px solid rgba(188,1,0,0.2);
}
.case-result b {
  font-family: var(--font-display);
  font-size: 1.5rem;
  display: block;
  color: var(--white);
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.case-result span {
  font-size: 11px;
  color: var(--text-3);
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
}

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

/* ====== STRIP ====== */
.strip {
  padding: var(--section-py) 0;
  position: relative;
  background: linear-gradient(180deg, var(--bg-0) 0%, var(--bg-1) 50%, var(--bg-0) 100%);
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.strip-bg { position: absolute; inset: 0; pointer-events: none; }
.strip-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 50% 50%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, #000 0%, transparent 75%);
}
.strip-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90vw;
  max-width: 1200px;
  height: 600px;
  background: radial-gradient(ellipse at center, var(--red-glow) 0%, transparent 60%);
  filter: blur(80px);
  transform: translate(-50%, -50%);
  animation: pulseGlow 5s ease-in-out infinite;
  mix-blend-mode: screen;
}
.strip-scan {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--red) 50%, transparent 100%);
  animation: scanLine 4s ease-in-out infinite;
  opacity: 0.6;
}
@keyframes scanLine {
  0% { top: 0%; opacity: 0; }
  10% { opacity: 0.8; }
  50% { opacity: 0.6; }
  90% { opacity: 0.8; }
  100% { top: 100%; opacity: 0; }
}
.strip-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(40px, 5vw, 64px);
  text-align: center;
}
.strip-head { max-width: 760px; }
.strip-head h2 { font-size: clamp(2.2rem, 4.8vw, 3.8rem); }

.strip-stats {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: clamp(16px, 2vw, 32px);
  width: 100%;
  max-width: 1100px;
  padding: clamp(28px, 4vw, 48px) clamp(20px, 3vw, 36px);
  background: linear-gradient(180deg, rgba(20,20,20,0.6), rgba(10,10,10,0.4));
  border: 1px solid var(--border-strong);
  border-radius: 24px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.06);
  position: relative;
}
.strip-stats::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(180deg, rgba(188,1,0,0.4), transparent 60%);
  -webkit-mask: linear-gradient(#000, #000) content-box, linear-gradient(#000, #000);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  pointer-events: none;
}
.strip-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 8px;
  transition: transform 0.3s var(--ease);
}
.strip-stat:hover { transform: translateY(-4px); }
.strip-stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(180deg, var(--white) 0%, var(--red) 130%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
}
.strip-stat-num sup {
  font-family: var(--font-mono);
  font-size: 0.22em;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
  -webkit-text-fill-color: var(--text-3);
  margin-left: 6px;
  vertical-align: super;
  top: -0.2em;
  position: relative;
}
.strip-stat-label {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.5;
  max-width: 22ch;
}
.strip-stat-label b { color: var(--white); font-weight: 600; }
.strip-sep {
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, transparent, var(--border-strong), transparent);
}

.strip-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  max-width: 560px;
}
.strip-cta p {
  color: var(--text-2);
  font-size: 15px;
  text-align: center;
}

@media (max-width: 900px) {
  .strip-stats {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding: 32px 24px;
  }
  .strip-sep { display: none; }
}
@media (max-width: 480px) {
  .strip-stats { grid-template-columns: 1fr; }
}

/* ====== FAQ ====== */
.faq { padding: var(--section-py) 0; background: var(--bg-0); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: flex-start;
}
.faq-side h2 { margin-bottom: 20px; }
.faq-side .lead-sm { margin-bottom: 24px; }
.faq-list { display: grid; gap: 8px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--bg-1);
  overflow: hidden;
  transition: border-color 0.3s var(--ease);
}
.faq-item[open] { border-color: var(--red); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .plus {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  position: relative;
  flex-shrink: 0;
  transition: all 0.3s var(--ease);
}
.faq-item .plus::before, .faq-item .plus::after {
  content: '';
  position: absolute;
  inset: 50% 30%;
  height: 1px;
  background: var(--white);
  transform: translateY(-50%);
  transition: transform 0.3s var(--ease);
}
.faq-item .plus::after { transform: translateY(-50%) rotate(90deg); }
.faq-item[open] .plus { background: var(--red); border-color: var(--red); }
.faq-item[open] .plus::after { transform: translateY(-50%) rotate(0); }
.faq-item div {
  padding: 0 24px 20px;
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.7;
}
@media (max-width: 900px) { .faq-grid { grid-template-columns: 1fr; } }

/* ====== CTA Final ====== */
.cta-final {
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
  background: var(--black);
}
.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 50% 50%, #000 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, #000 0%, transparent 70%);
}
.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80vw;
  height: 80vw;
  max-width: 900px;
  max-height: 900px;
  background: radial-gradient(circle, var(--red-glow), transparent 60%);
  filter: blur(80px);
  transform: translate(-50%, -50%);
  animation: pulseGlow 6s ease-in-out infinite;
}
.cta-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.cta-copy { text-align: left; }
.cta-copy .kicker { margin-bottom: 18px; }
.cta-copy h2 {
  margin-bottom: 22px;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  line-height: 1.1;
}
.cta-copy .lead { margin: 0 0 32px; font-size: 1rem; max-width: 52ch; }
.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.cta-form-wrap {
  position: relative;
}
.cta-form {
  background: linear-gradient(180deg, rgba(20,20,20,0.7), rgba(10,10,10,0.85));
  border: 1px solid var(--border-strong);
  border-radius: 22px;
  padding: 30px 28px;
  display: grid;
  gap: 12px;
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  box-shadow:
    0 30px 80px -10px rgba(0,0,0,0.6),
    0 0 60px -20px var(--red-glow),
    inset 0 1px 0 rgba(255,255,255,0.06);
}
.cta-form::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(180deg, rgba(188,1,0,0.5), transparent 60%);
  -webkit-mask: linear-gradient(#000, #000) content-box, linear-gradient(#000, #000);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  pointer-events: none;
}
.cta-form .form-head { margin-bottom: 8px; }
.cta-form .form-head h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-top: 8px;
}
.cta-form .field input,
.cta-form .field select {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 14px 14px 6px;
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  transition: all 0.25s var(--ease);
  appearance: none;
}
.cta-form .field select { padding: 12px 14px; }
.cta-form .field input:focus,
.cta-form .field select:focus {
  outline: none;
  border-color: var(--red);
  background: rgba(188,1,0,0.06);
  box-shadow: 0 0 0 3px rgba(188,1,0,0.12);
}
.cta-form .field { position: relative; }
.cta-form .field label {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 13px;
  color: var(--text-3);
  pointer-events: none;
  transition: all 0.2s var(--ease);
}
.cta-form .field input:focus ~ label,
.cta-form .field input:not(:placeholder-shown) ~ label {
  top: 3px;
  font-size: 9px;
  color: var(--red);
  letter-spacing: 0.04em;
}
.cta-form .field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.cta-form .btn-block { margin-top: 4px; }
.cta-form .form-foot { font-size: 11px; color: var(--text-3); text-align: center; margin-top: 4px; }
.cta-form .form-foot a { color: var(--red); text-decoration: underline; }

/* Field validation error */
.field-error {
  border-color: #BC0100 !important;
  box-shadow: 0 0 0 2px rgba(188, 1, 0, 0.15) !important;
  animation: shake-field 0.4s ease;
}
@keyframes shake-field {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-4px); }
  40%, 80% { transform: translateX(4px); }
}

@media (max-width: 900px) {
  .cta-inner { grid-template-columns: 1fr; }
  .cta-copy { text-align: center; }
  .cta-actions { justify-content: center; }
}

/* ====== Footer ====== */
.footer {
  background: var(--bg-1);
  padding: 80px 0 32px;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
}
.foot-brand img { height: 40px; margin-bottom: 20px; }
.foot-brand p { color: var(--text-2); font-size: 14px; max-width: 36ch; }
.foot-col h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--text-3);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.foot-col a, .foot-col p {
  display: block;
  color: var(--text-2);
  font-size: 14px;
  padding: 6px 0;
  transition: color 0.25s var(--ease);
}
.foot-col a:hover { color: var(--red); }
.foot-col .addr { font-size: 13px; padding-top: 8px; }

.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 12px;
  color: var(--text-3);
  flex-wrap: wrap;
  gap: 12px;
}
.dev-by {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-3);
  font-size: 12px;
  transition: opacity 0.25s var(--ease);
}
.dev-by:hover { opacity: 0.75; }
.dev-by img {
  height: 22px;
  width: auto;
  filter: brightness(0) invert(1) opacity(0.5);
  transition: filter 0.25s var(--ease);
}
.dev-by:hover img { filter: brightness(0) invert(1) opacity(0.8); }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .foot-brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ====== Floating WhatsApp ====== */
.fab-wpp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(37,211,102,0.4);
  z-index: 70;
  transition: transform 0.3s var(--ease);
  animation: pulseGreen 2.4s ease-in-out infinite;
}
.fab-wpp:hover { transform: scale(1.1); }
@keyframes pulseGreen {
  0%, 100% { box-shadow: 0 10px 30px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.4); }
  50% { box-shadow: 0 10px 30px rgba(37,211,102,0.4), 0 0 0 16px rgba(37,211,102,0); }
}

/* ====== Reveal animations ====== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease-out-expo), transform 1s var(--ease-out-expo);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal:nth-child(4) { transition-delay: 0.24s; }
.reveal:nth-child(5) { transition-delay: 0.32s; }
.reveal:nth-child(6) { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* =========================================
   MOBILE OPTIMIZATIONS · ≤ 768px
   ========================================= */
@media (max-width: 768px) {
  /* Spacing & container */
  :root {
    --section-py: clamp(56px, 12vw, 80px);
  }
  .container { padding: 0 20px; }

  /* Display sizes */
  .display { font-size: clamp(1.7rem, 7vw, 2.4rem) !important; line-height: 1.12 !important; }
  .display-md { font-size: clamp(1.6rem, 6.5vw, 2.2rem) !important; line-height: 1.15 !important; }
  .display-lg { font-size: clamp(2rem, 8vw, 2.8rem) !important; line-height: 1.1 !important; }

  /* === Announcement bar === */
  .announcement-track { gap: 18px; font-size: 10px; }

  /* === Header === */
  .header-inner { padding-top: 12px; padding-bottom: 12px; gap: 12px; }
  .logo img { height: 28px; }

  /* === HERO === */
  .hero {
    min-height: 88vh;
    padding: 90px 0 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
  }
  .hero .container.hero-inner {
    padding-left: 20px;
    padding-right: 20px;
    z-index: 5;
    margin-top: 30vh;
  }
  .hero-copy { max-width: 100%; position: relative; }

  /* Trafo decorativo acima do título no mobile */
  .hero-mobile-trafo {
    display: block;
    position: relative;
    width: 100%;
    height: 220px;
    margin-top: -38vh;
    margin-bottom: 18px;
    pointer-events: none;
    animation: trafoFloat 4s ease-in-out infinite;
  }
  .hero-mobile-trafo img {
    width: auto;
    max-width: 80%;
    max-height: 100%;
    margin: 0 auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 30px 50px rgba(0,0,0,0.7))
            drop-shadow(0 0 40px rgba(188,1,0,0.45));
    position: relative;
    z-index: 2;
  }
  .hero-mobile-trafo-glow {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 60px;
    background: radial-gradient(ellipse at center, var(--red-glow) 0%, transparent 70%);
    filter: blur(20px);
    z-index: 1;
  }
  @keyframes trafoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
  }

  /* Vídeo ocupando 45% superior do hero, conteúdo subindo */
  .hero-bg { z-index: 0; }
  .hero-video {
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 50% !important;
    transform: scaleX(-1) !important;
    object-fit: cover;
    object-position: 25% center;
    opacity: 0.9;
  }
  .hero-video-overlay {
    background:
      linear-gradient(180deg,
        rgba(0,0,0,0.2) 0%,
        rgba(0,0,0,0.3) 30%,
        rgba(0,0,0,0.85) 48%,
        var(--black) 60%,
        var(--black) 100%),
      radial-gradient(ellipse at 50% 0%, rgba(188,1,0,0.25), transparent 60%);
  }
  .hero-grid { display: none; }
  .hero-glow {
    top: 5%;
    height: 350px;
    opacity: 0.5;
  }

  /* Conteúdo bem espaçado no terço inferior */
  .hero-copy h1 { margin-bottom: 18px; }
  .hero-copy .lead { font-size: 14px; line-height: 1.5; }

  .hero-btns { gap: 10px; margin-top: 28px; flex-direction: column; align-items: stretch; }
  .hero-btns .btn { justify-content: center; padding: 16px 24px; font-size: 15px; }

  /* === Credentials marquee === */
  .credentials { padding: 40px 0; }
  .cred-head { font-size: 9px; gap: 12px; margin-bottom: 20px; }
  .cred-head .line { max-width: 60px; }
  .cred-item { font-size: 1.1rem !important; }
  .cred-track { gap: 32px; }

  /* === Catalog carousel === */
  .catalog { padding: 60px 0; }
  .car-card { flex: 0 0 88% !important; }
  .car-img { height: 180px; }
  .car-body { padding: 22px; gap: 10px; }
  .car-card h3 { font-size: 1.15rem; }
  .car-btn { display: none; }
  .catalog-foot {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 22px;
  }
  .catalog-foot .btn { width: 100%; justify-content: center; }

  /* === Big numbers === */
  .bignums-grid { grid-template-columns: 1fr !important; border-radius: 20px; }
  .bn-card { min-height: 160px; padding: 32px 24px; }
  .bn-num { font-size: 2.6rem !important; }

  /* === Problem / Custo invisível === */
  .problem-grid { grid-template-columns: 1fr; gap: 32px; }
  .problem-list li { padding: 18px; gap: 14px; }
  .problem-list .num { font-size: 11px; }

  /* === VS / Antes-Depois === */
  .vs {
    padding-left: 0;
    padding-right: 0;
  }
  .vs .container { padding: 0 16px; }
  .vs .section-head { text-align: center; margin-bottom: 28px; }
  .vs .section-head h2 {
    font-size: clamp(1.5rem, 6.5vw, 2rem) !important;
    line-height: 1.2 !important;
  }
  .vs-grid {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto auto auto !important;
    gap: 0 !important;
    position: relative;
  }
  .vs-col {
    padding: 28px 22px !important;
    border-radius: 18px;
  }
  .vs-col header { margin-bottom: 16px; }
  .vs-col h4, .vs-col .tag { font-size: 10px; }
  .vs-col ul { gap: 10px; }
  .vs-col li {
    padding: 12px 0;
    font-size: 13px;
    gap: 10px;
  }
  /* Raio centralizado ENTRE os cards no mobile */
  .vs-divider {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    display: flex !important;
    justify-content: center;
    margin: -14px auto;
    z-index: 5;
  }
  .vs-bolt {
    width: 56px;
    height: 56px;
    box-shadow: 0 0 0 8px var(--bg-1), 0 0 40px var(--red-glow) !important;
  }
  .vs-bolt svg { width: 28px; height: 28px; }

  /* === Solutions === */
  .sol-grid { grid-template-columns: 1fr !important; gap: 12px; }
  .sol-card { padding: 26px 22px; }
  .sol-ico { width: 48px; height: 48px; margin-bottom: 18px; }

  /* === Panels === */
  .panel {
    position: relative !important;
    min-height: auto !important;
    padding: 60px 0 !important;
    align-items: stretch !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
  .panel-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
  .panel-grid.reversed > :first-child { order: 1 !important; }
  .visual-card,
  .visual-card-img,
  .visual-stat-img,
  .visual-evs-img,
  .visual-evs {
    padding: 24px !important;
  }
  .visual-card-img img,
  .visual-stat-img img,
  .visual-evs-img img { max-width: 80%; }
  .vs-big { font-size: 2.6rem; }
  .ev-icon { width: 64px; height: 64px; }
  .ev-icon svg { width: 36px; height: 36px; }

  /* === How (timeline) === */
  .how { padding: 60px 0; }
  .timeline { grid-template-columns: 1fr !important; gap: 22px; margin-top: 32px; }
  .tl-line { display: none; }
  .tl-step { padding-top: 0; padding-left: 56px; text-align: left; }
  .tl-step::before { left: 16px; top: 6px; transform: none; }
  .tl-num, .tl-step h4, .tl-step p { text-align: left; }

  /* === Cases === */
  .cases-grid { grid-template-columns: 1fr !important; }
  .case-img { height: 180px; }
  .case-card > header,
  .case-card > .case-row,
  .case-card > .case-result { padding-left: 22px; padding-right: 22px; }
  .case-card > header { padding-top: 18px; }
  .case-card > .case-result { padding-bottom: 22px; }

  /* === Strip / Reforço === */
  .strip { padding: 60px 0; }
  .strip-inner { gap: 28px; }
  .strip-stats {
    grid-template-columns: 1fr !important;
    padding: 24px 18px;
    border-radius: 18px;
  }
  .strip-sep { display: none; }
  .strip-stat-num { font-size: 2.4rem !important; }
  .strip-cta { gap: 14px; }
  .strip-cta .btn { width: 100%; justify-content: center; }

  /* === FAQ === */
  .faq { padding: 60px 0; }
  .faq-grid { grid-template-columns: 1fr !important; gap: 32px; }
  .faq-item summary { padding: 16px 18px; font-size: 14px; gap: 10px; }
  .faq-item div { padding: 0 18px 16px; font-size: 13px; }
  .faq-side .btn { width: 100%; justify-content: center; }

  /* === CTA Final === */
  .cta-final { padding: 60px 0; }
  .cta-inner { grid-template-columns: 1fr !important; gap: 32px; text-align: left; }
  .cta-copy { text-align: left; }
  .cta-actions { flex-direction: column; align-items: stretch; gap: 10px; }
  .cta-actions .btn { width: 100%; justify-content: center; }
  .cta-form { padding: 24px 20px; border-radius: 18px; }
  .cta-form .field-row { grid-template-columns: 1fr; gap: 10px; }

  /* === Footer === */
  .footer { padding: 60px 0 24px; }
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 28px;
    padding-bottom: 32px;
  }
  .foot-brand img { height: 32px; }
  .foot-bottom {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 8px;
    font-size: 11px;
  }
  .dev-by img { height: 18px; }

  /* === Section heads === */
  .section-head { margin-bottom: 32px; max-width: 100%; }
  .kicker { font-size: 10px; margin-bottom: 14px; }
}

/* Extra-small phones */
@media (max-width: 380px) {
  .container { padding: 0 16px; }
  .display { font-size: 1.55rem !important; }
  .display-md { font-size: 1.5rem !important; }
  .bn-num { font-size: 2.2rem !important; }
}

/* =========================================================
   ========  V2 · TEMA CLARO (OVERRIDES) ===================
   Fundo branco em toda a landing. Mantém o vermelho da marca.
   Estas regras vêm por último para vencer no cascade os
   valores escuros hardcoded do tema original.
   ========================================================= */

/* ----- Glows removidos no V2: zero neon vermelho no fundo das seções ----- */
.cursor-glow { display: none !important; }
.hero-glow, .strip-glow, .cta-glow,
.problem::before, .panel-2::before,
.hero-mobile-trafo-glow,
.vsh-pulse, .visual-pulse,
.visual-locacao::before,
.hero-visual-glow,
.vsh-main::before,
.bn-card::before {
  display: none !important;
}
/* Scanline e barra vermelha “laser” no topo do panel-3 também saem */
.strip-scan, .panel-3::after, .light-section::after { display: none !important; }

/* ----- Loader ----- */
.loader {
  background:
    radial-gradient(ellipse at center, #ffffff 0%, #f2f2f2 70%),
    #ffffff;
}
.loader::before {
  background-image:
    linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
}
.loader-bar { background: rgba(0,0,0,0.08); }
.loader-logo img { filter: drop-shadow(0 0 24px rgba(188,1,0,0.25)); }

/* ----- Header ----- */
.header {
  background: rgba(255,255,255,0.72);
  border-bottom: 1px solid var(--border);
}
.header.scrolled { background: rgba(255,255,255,0.9); }

/* ----- Buttons ----- */
.btn-outline { background: rgba(0,0,0,0.02); }
.btn-outline:hover { background: rgba(0,0,0,0.05); }

/* ----- Eyebrow / chips ----- */
.eyebrow { background: rgba(0,0,0,0.03); }

/* ----- Credentials ----- */
.cred-item { color: rgba(255,255,255,0.85); }

/* ----- Forms (glass cards claros) ----- */
.form-card,
.hero-side-form,
.cta-form {
  background: linear-gradient(180deg, #ffffff, #f5f5f5);
  box-shadow:
    0 30px 80px -20px rgba(0,0,0,0.16),
    0 0 60px -30px var(--red-glow),
    inset 0 1px 0 rgba(255,255,255,0.6);
}
.hero-inline-form { background: rgba(255,255,255,0.6); border-color: rgba(0,0,0,0.1); }
.field input, .field select,
.hero-side-form .field input, .hero-side-form .field select,
.cta-form .field input, .cta-form .field select {
  background: rgba(0,0,0,0.03) !important;
  border: 1px solid rgba(0,0,0,0.12) !important;
  color: var(--text) !important;
}
.hero-inline-form .field input,
.hero-inline-form .field select {
  background: rgba(0,0,0,0.03) !important;
  border: 1px solid rgba(0,0,0,0.12) !important;
}
.field input:focus, .field select:focus,
.hero-inline-form .field input:focus, .hero-inline-form .field select:focus,
.cta-form .field input:focus, .cta-form .field select:focus {
  background: rgba(188,1,0,0.05) !important;
  border-color: var(--red) !important;
}
/* select dropdown options legíveis */
select option { color: #141414; background: #fff; }

/* ----- VS (comparativo) ----- */
.vs-bad { background: linear-gradient(180deg, rgba(0,0,0,0.03), transparent); }
.vs-bad .tag { background: rgba(0,0,0,0.06); }
.vs-good { box-shadow: inset 0 1px 0 rgba(255,255,255,0.5), 0 30px 80px -30px var(--red-glow); }
.vs-bolt { box-shadow: 0 0 0 10px var(--bg-1), 0 0 50px -10px var(--red-glow); }

/* ----- Panels ----- */
.panel {
  box-shadow: 0 -30px 70px -30px rgba(0,0,0,0.12);
}
.panel-1 { background: linear-gradient(180deg, #ffffff 0%, var(--bg-1) 100%); }
.panel-2 { background: linear-gradient(180deg, var(--bg-0) 0%, #f4f4f4 100%); }
.panel-3 { background: linear-gradient(180deg, #fbf6f6 0%, var(--black) 100%); }

/* Showcases / visual cards */
.vsh-main {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(188,1,0,0.10), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f0f0f0 100%);
  box-shadow: 0 40px 90px -30px rgba(0,0,0,0.16);
}
.vsh-main img { filter: drop-shadow(0 30px 50px rgba(0,0,0,0.18)); }
.vsh-item, .vsh-spec { background: rgba(0,0,0,0.02); }
.vsh-item img { filter: drop-shadow(0 8px 16px rgba(0,0,0,0.15)); }
.visual-card { background: linear-gradient(180deg, var(--bg-2), var(--bg-1)); box-shadow: 0 40px 90px -30px rgba(0,0,0,0.16); }
.visual-card-img { background: linear-gradient(180deg, #ffffff 0%, var(--bg-1) 100%); box-shadow: 0 40px 90px -30px rgba(0,0,0,0.16); }
.visual-card-img img { filter: drop-shadow(0 20px 40px rgba(0,0,0,0.18)); }
.visual-spec { background: rgba(0,0,0,0.03); color: var(--text); }
.visual-evs-img { background: linear-gradient(180deg, rgba(188,1,0,0.06) 0%, var(--bg-1) 100%); box-shadow: 0 40px 90px -30px rgba(0,0,0,0.16); }
.visual-evs-img img { filter: drop-shadow(0 20px 40px rgba(0,0,0,0.18)); }

/* Locação card */
.visual-locacao {
  background: linear-gradient(180deg, #ffffff 0%, #f0f0f0 100%);
  box-shadow: 0 40px 90px -30px rgba(0,0,0,0.18);
}
.vloc-overlay {
  background:
    linear-gradient(180deg, transparent 45%, rgba(0,0,0,0.12) 85%, rgba(0,0,0,0.18) 100%),
    radial-gradient(circle at 100% 0%, rgba(188,1,0,0.18), transparent 50%);
}

/* ----- Catalog / carousel ----- */
.car-img { background: linear-gradient(135deg, #f4f4f4, #ffffff); }
.car-img::before {
  background-image:
    linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
}
.car-img img { filter: drop-shadow(0 10px 20px rgba(0,0,0,0.15)); }
.car-img .placeholder { background: rgba(255,255,255,0.7); color: var(--text-3); }
.car-card ul { background: rgba(0,0,0,0.02); }
.car-btn { background: rgba(255,255,255,0.7); color: var(--text); }
.car-btn:hover { color: #fff; }
.car-dots button { background: rgba(0,0,0,0.15); }
.catalog-foot { background: linear-gradient(90deg, rgba(188,1,0,0.08), rgba(0,0,0,0.02)); }

/* ----- Cases ----- */
.case-img { background: linear-gradient(135deg, #f4f4f4, #ffffff); }
.case-img::after {
  background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,0.06) 85%, var(--bg-1) 100%);
}

/* ----- Strip ----- */
.strip-grid {
  background-image:
    linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
}
.strip-stats {
  background: linear-gradient(180deg, rgba(255,255,255,0.85), rgba(245,245,245,0.7));
  box-shadow: 0 30px 80px -30px rgba(0,0,0,0.18), inset 0 1px 0 rgba(255,255,255,0.6);
}

/* ----- CTA final ----- */
.cta-grid-bg {
  background-image:
    linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
}

/* ----- Footer ----- */
.dev-by img { filter: brightness(0) opacity(0.45); }
.dev-by:hover img { filter: brightness(0) opacity(0.7); }
.foot-phone {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--text) !important;
}
.foot-phone svg { color: var(--red); flex-shrink: 0; }
.foot-phone:hover { color: var(--red) !important; }

/* =========================================================
   HERO V2 · sem vídeo, transformador SEM card, fundo branco tecnológico
   ========================================================= */
.hero-v2 {
  min-height: auto;
  padding: clamp(40px, 6vw, 80px) 0 clamp(50px, 7vw, 96px);
  justify-content: center;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}
/* Grade tecnológica (linhas finas) cobrindo o hero inteiro */
.hero-v2::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 50% 45%, #000 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 45%, #000 0%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}
/* Linha cruzada secundária mais fina, tipo blueprint */
.hero-v2::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.025) 1px, transparent 1px);
  background-size: 14px 14px;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse at 50% 50%, #000 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, #000 0%, transparent 70%);
}
.hero-v2 .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-video-v2 {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-video-overlay-v2 {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0.7) 60%, rgba(255,255,255,0.85) 100%);
  pointer-events: none;
}
.hero-v2 .container.hero-inner {
  max-width: var(--container);
  margin: 0 auto !important;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  padding-left: clamp(20px, 4vw, 40px);
  padding-right: clamp(20px, 4vw, 40px);
  position: relative;
  z-index: 2;
}
.hero-v2 .hero-copy { max-width: 640px; }
.hero-v2 .hero-mobile-trafo { display: none !important; }

/* Imagem do transformador SEM card de fundo */
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-visual-inner {
  position: relative;
  width: 100%;
  background: transparent;
  border: none;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  overflow: visible;
  box-shadow: none;
}
.hero-visual-inner::before { display: none; }
.hero-visual-inner img {
  position: relative;
  z-index: 2;
  width: 140%;
  max-width: none;
  max-height: 800px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,0.22));
  border-radius: 18px;
}
.hero-visual-inner { min-height: 560px; }
.hero-visual-tag {
  position: absolute;
  top: 12px;
  left: 0;
  z-index: 3;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--red);
  padding: 6px 12px;
  background: rgba(188,1,0,0.08);
  border: 1px solid rgba(188,1,0,0.25);
  border-radius: 999px;
}

@media (max-width: 900px) {
  .hero-v2 .container.hero-inner {
    grid-template-columns: 1fr;
    margin-top: 0 !important;
  }
  .hero-v2 .hero-visual { order: -1; }
  .hero-visual-inner { min-height: 280px; padding: 28px; }
  .hero-visual-inner img { max-height: 260px; }
}
@media (max-width: 768px) {
  .hero-v2 { padding: 84px 0 48px; }
  .hero-v2 .container.hero-inner { margin-top: 0 !important; }
}

/* =========================================================
   LIGHT-SECTIONS → invertem para PRETO no V2
   (Eram brancas no tema original; agora o site é branco,
   então essas seções viram pretas para criar contraste.)
   ========================================================= */
.light-section {
  background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%) !important;
  color: #F0F0F0 !important;
}
.light-section::before {
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px) !important;
}
.light-section .kicker { color: rgba(240,240,240,0.5) !important; }
.light-section .kicker.red { color: var(--red) !important; }
.light-section .display,
.light-section .display-md,
.light-section .display-lg { color: #F0F0F0 !important; }
.light-section .grad {
  background: linear-gradient(180deg, #F0F0F0 0%, var(--red) 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
}
.light-section .lead,
.light-section .lead-sm,
.light-section p { color: rgba(240,240,240,0.7) !important; }

/* Solutions cards na seção preta */
.light-section .sol-card {
  background: #111111 !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  box-shadow: 0 4px 24px -8px rgba(0,0,0,0.4) !important;
}
.light-section .sol-card:hover {
  background: #181818 !important;
  border-color: var(--red) !important;
  box-shadow: 0 30px 60px -20px rgba(188,1,0,0.25) !important;
}
.light-section .sol-card h3 { color: #F0F0F0 !important; }
.light-section .sol-card p { color: rgba(240,240,240,0.7) !important; }
.light-section .sol-card.feat {
  background: linear-gradient(180deg, var(--red) 0%, #8e0100 100%) !important;
  border-color: var(--red) !important;
}
.light-section .sol-card.feat h3 { color: #fff !important; }
.light-section .sol-card.feat p { color: rgba(255,255,255,0.85) !important; }

/* Timeline na seção preta */
.light-section .tl-step::before {
  background: var(--red) !important;
  box-shadow: 0 0 16px rgba(188,1,0,0.5), 0 0 0 4px #000 !important;
}
.light-section .tl-step h4 { color: #F0F0F0 !important; }
.light-section .tl-step p { color: rgba(240,240,240,0.7) !important; }

/* Big numbers na seção preta */
.light-section .bignums-grid {
  background: rgba(255,255,255,0.08) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  box-shadow: none !important;
}
.light-section .bn-card { background: #0d0d0d !important; }
.light-section .bn-card.bn-card-brand { background: linear-gradient(180deg, #BC0100 0%, #8e0100 100%) !important; }
.light-section .bn-card:hover { background: #141414 !important; }
.light-section .bn-card.bn-card-brand:hover { background: linear-gradient(180deg, #d40100 0%, #BC0100 100%) !important; }
.light-section .bn-num {
  background: linear-gradient(180deg, #F0F0F0 0%, var(--red) 110%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
}
.light-section .bn-card p { color: rgba(240,240,240,0.7) !important; }

/* =========================================================
   CATÁLOGO · cards VERMELHOS
   ========================================================= */
.car-card {
  background: linear-gradient(180deg, var(--red) 0%, #8e0100 100%) !important;
  border: 1px solid rgba(255,255,255,0.18) !important;
  color: #fff !important;
}
.car-card:hover {
  border-color: #fff !important;
  box-shadow: 0 30px 60px -20px rgba(188,1,0,0.5) !important;
}
.car-img {
  background: rgba(255,255,255,0.08) !important;
}
.car-img::before {
  background-image:
    linear-gradient(rgba(255,255,255,0.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.10) 1px, transparent 1px) !important;
}
.car-img::after { display: none !important; }
.car-img img { filter: drop-shadow(0 12px 24px rgba(0,0,0,0.35)) !important; }
.car-card .car-tag { color: rgba(255,255,255,0.85) !important; }
.car-card h3 { color: #fff !important; }
.car-card > .car-body > p { color: rgba(255,255,255,0.85) !important; }
.car-card ul {
  background: rgba(0,0,0,0.18) !important;
}
.car-card li {
  color: rgba(255,255,255,0.85) !important;
  border-bottom: 1px dashed rgba(255,255,255,0.2) !important;
}
.car-card li b { color: #fff !important; }
.car-card .btn-outline {
  border-color: rgba(255,255,255,0.55) !important;
  color: #fff !important;
  background: rgba(255,255,255,0.06) !important;
}
.car-card .btn-outline:hover {
  background: #fff !important;
  color: var(--red) !important;
  border-color: #fff !important;
}

/* =========================================================
   REMOVER “neon” vermelho atrás das imagens dos transformadores
   ========================================================= */
.vsh-main {
  background: linear-gradient(180deg, #ffffff 0%, #f0f0f0 100%) !important;
}
.visual-evs-img {
  background: linear-gradient(180deg, #ffffff 0%, var(--bg-1) 100%) !important;
}
/* drop-shadows escuras das imagens já estão neutras; mantemos */

/* =========================================================
   Demais GLOWS vermelhos remanescentes que vivem em fundos
   de seções → zerar / suavizar
   ========================================================= */
.cta-final { background: #ffffff !important; }
.cta-final .cta-glow { display: none !important; }
.cta-grid-bg {
  mask-image: radial-gradient(ellipse at 50% 50%, #000 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, #000 0%, transparent 70%);
}
.cta-form {
  background: linear-gradient(180deg, #ffffff, #f5f5f5) !important;
  box-shadow:
    0 30px 80px -20px rgba(0,0,0,0.16),
    inset 0 1px 0 rgba(255,255,255,0.6) !important;
}
.cta-form::before { display: none !important; }
.cta-form .form-foot, .cta-form .form-head h3 { color: var(--text) !important; }

.strip {
  background: #ffffff !important;
  border-color: var(--border) !important;
}
.strip-stats::before { display: none !important; }

.hero-side-form::before, .form-card::before { display: none !important; }

/* =========================================================
   V2 · MOBILE · raio (vs-bolt) escondido entre os cards
   ========================================================= */
@media (max-width: 768px) {
  .vs-divider { display: none !important; }
}
