/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue-dark:   #0a1f44;
  --blue:        #0056b3;
  --blue-mid:    #0070e0;
  --blue-light:  #e8f0fe;
  --blue-pale:   #f5f7ff;
  --wpp:         #25D366;
  --wpp-dark:    #128C7E;
  --white:       #ffffff;
  --gray-50:     #f8f9fa;
  --gray-100:    #f1f3f5;
  --gray-200:    #e9ecef;
  --gray-400:    #ced4da;
  --gray-600:    #6c757d;
  --gray-800:    #343a40;
  --text:        #1a1f2e;
  --text-soft:   #5a6378;
  --radius:      10px;
  --radius-lg:   16px;
  --shadow:      0 2px 12px rgba(0,0,0,.08);
  --shadow-md:   0 4px 24px rgba(0,0,0,.12);
  --transition:  .2s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

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

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: none;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--blue-mid);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(0,112,224,.3);
}
.btn--primary:hover { background: var(--blue); box-shadow: 0 6px 18px rgba(0,112,224,.4); }

.btn--outline {
  background: transparent;
  color: var(--blue-mid);
  border: 2px solid var(--blue-mid);
}
.btn--outline:hover { background: var(--blue-light); }

.btn--wpp {
  background: var(--wpp);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(37,211,102,.3);
}
.btn--wpp:hover { background: var(--wpp-dark); box-shadow: 0 6px 18px rgba(37,211,102,.4); }

.btn--full { width: 100%; justify-content: center; }
.btn--lg { padding: 16px 28px; font-size: 1.05rem; }
.btn--sm { padding: 9px 16px; font-size: .875rem; }

.icon-wpp { width: 18px; height: 18px; flex-shrink: 0; }

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 1px 8px rgba(0,0,0,.06);
  transition: box-shadow var(--transition);
}
.header--scrolled { box-shadow: 0 2px 16px rgba(0,0,0,.12); }

.header__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 68px;
}

.logo-placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  background: var(--blue-light);
  color: var(--blue);
  font-weight: 700;
  font-size: .85rem;
  border-radius: 6px;
  border: 2px dashed var(--blue);
  letter-spacing: .5px;
}
.logo-placeholder--light {
  background: rgba(255,255,255,.12);
  color: var(--white);
  border-color: rgba(255,255,255,.4);
}

.header__nav {
  display: flex;
  gap: 4px;
  margin-left: auto;
}
.header__nav a {
  padding: 8px 14px;
  border-radius: 6px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-soft);
  transition: color var(--transition), background var(--transition);
}
.header__nav a:hover { color: var(--blue-mid); background: var(--blue-light); }

.header__cta { flex-shrink: 0; }

.header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.header__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(160deg, var(--blue-dark) 0%, #102a55 55%, #143a78 100%);
  position: relative;
  overflow: hidden;
  padding: 72px 0 96px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 56px));
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 85%);
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, transparent 85%);
}
.hero::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(0,112,224,.45) 0%, transparent 65%);
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.75);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--blue-mid);
  border-radius: 2px;
}
.hero__text h1 {
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.18;
  letter-spacing: -.5px;
  margin-bottom: 20px;
}
.hero__text p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.78);
  margin-bottom: 34px;
  max-width: 520px;
}
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }

.btn--ghost {
  background: rgba(255,255,255,.06);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.28);
}
.btn--ghost:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.5); }

.hero__stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero__stat { display: flex; flex-direction: column; gap: 2px; }
.hero__stat strong {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
}
.hero__stat span {
  font-size: .82rem;
  color: rgba(255,255,255,.62);
}

.hero__frame {
  position: relative;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 14px;
  box-shadow: 0 24px 60px rgba(0,0,0,.4);
}
.hero__imgs {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  display: block;
  line-height: 0;
}
.hero__img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  display: block;
}
.hero__img--2 {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__img--1 {
  animation: hero-crossfade 10s linear infinite;
}
.hero__img--2 {
  animation: hero-crossfade 10s linear infinite;
  animation-delay: -5s;
}
@keyframes hero-crossfade {
  0%, 38%   { opacity: 1; }
  48%, 90%  { opacity: 0; }
  100%      { opacity: 1; }
}
.hero__imgs::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: rgba(255,255,255,.15);
  z-index: 4;
}
.hero__imgs::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: rgba(255,255,255,.75);
  z-index: 5;
  animation: hero-progress 5s linear infinite;
}
@keyframes hero-progress {
  0%   { width: 0%; }
  100% { width: 100%; }
}
.hero__seal {
  position: absolute;
  bottom: -22px;
  left: -22px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  padding: 14px 18px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.hero__seal-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 9px;
  background: var(--blue-light);
  color: var(--blue-mid);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__seal-icon svg { width: 20px; height: 20px; }
.hero__seal-text strong { display: block; font-size: .88rem; font-weight: 700; color: var(--text); }
.hero__seal-text span { font-size: .76rem; color: var(--text-soft); }

/* ===== ANIMAÇÃO DE ENTRADA — HERO ===== */
.hero__text > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease;
}
.hero__image {
  opacity: 0;
  transform: translateX(22px);
  transition: opacity .7s ease, transform .7s ease;
  margin-top: -32px;
}
.hero--loaded .hero__text > *          { opacity: 1; transform: none; }
.hero--loaded .hero__text > *:nth-child(1) { transition-delay: .05s; }
.hero--loaded .hero__text > *:nth-child(2) { transition-delay: .2s;  }
.hero--loaded .hero__text > *:nth-child(3) { transition-delay: .35s; }
.hero--loaded .hero__text > *:nth-child(4) { transition-delay: .5s;  }
.hero--loaded .hero__text > *:nth-child(5) { transition-delay: .65s; }
.hero--loaded .hero__image { opacity: 1; transform: none; transition-delay: .3s; }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ===== SECTION HELPERS ===== */
.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
}
.section-header p { color: var(--text-soft); max-width: 540px; margin: 0 auto; }

.section-tag {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue-mid);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-tag--light {
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.9);
}

.cards-grid { display: grid; gap: 24px; }
.cards-grid--4 { grid-template-columns: repeat(4, 1fr); }
.cards-grid--3 { grid-template-columns: repeat(3, 1fr); }

/* ===== MARCAS — MARQUEE ===== */
.marcas {
  background: var(--white);
  padding: 23px 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  overflow: hidden;
  position: relative;
}

.marcas__label {
  text-align: center;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 18px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .5s ease, transform .5s ease;
}
.marcas.visible .marcas__label {
  opacity: 1;
  transform: none;
}

.marcas__viewport {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.marcas__track {
  display: flex;
  align-items: center;
  gap: 48px;
  width: max-content;
  animation: marcas-marquee 32s linear infinite;
  opacity: 0;
  transition: opacity .6s ease .35s;
}
.marcas.visible .marcas__track { opacity: 1; }

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

.marcas__item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 55px;
}

.marcas__item img {
  max-height: 46px;
  max-width: 120px;
  width: auto;
  object-fit: contain;
  filter: grayscale(0) opacity(1);
  transition: filter .3s ease, transform .3s ease;
}
.marcas__item:hover img {
  filter: grayscale(0) opacity(1);
  transform: scale(1.1) translateY(-3px);
}

.marcas__fallback {
  display: inline-block;
  padding: 8px 18px;
  background: var(--blue-pale);
  border: 1px dashed var(--gray-300);
  border-radius: 8px;
  font-size: .8rem;
  font-weight: 700;
  color: var(--gray-500);
  white-space: nowrap;
  filter: grayscale(1) opacity(.6);
  transition: filter .3s ease, transform .3s ease;
}
.marcas__item:hover .marcas__fallback {
  filter: grayscale(0) opacity(1);
  transform: scale(1.5) translateY(-4px);
}

@media (prefers-reduced-motion: reduce) {
  .marcas__track { animation: none; opacity: 1; }
  .marcas__label { opacity: 1; transform: none; }
  .marcas__viewport {
    overflow-x: auto;
    mask-image: none;
    -webkit-mask-image: none;
    scrollbar-width: thin;
  }
}

/* ===== DIFERENCIAIS — BENTO ===== */
.diferenciais { background: var(--blue-pale); padding: 80px 0; }

.card { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow); }

.header__logo-img {
  width: 100px;
  height: auto;
}
.footer__logo-img {
  width: 120px;
  height: auto;
}

/* Bento grid layout */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 320px 220px;
  gap: 16px;
}

/* Card base */
.bento-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(10,31,68,.10);
  transition: transform .35s cubic-bezier(.4,0,.2,1), box-shadow .35s cubic-bezier(.4,0,.2,1);
}
.bento-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,112,224,.18);
}

/* Image area — gradient fallback when no image supplied */
.bento-card__img {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #527db8 0%, #24303fbd 30%);
  overflow: hidden;
}
.bento-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .55;
  transition: transform .55s cubic-bezier(.4,0,.2,1), opacity .35s ease;
}
.bento-card:hover .bento-card__img img { transform: scale(1.06); opacity: .95; }

/* Dark gradient overlay for text readability */
.bento-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,31,68,.92) 0%, rgba(10,31,68,.45) 25%, transparent 100%);
  pointer-events: none;
}

/* Glassmorphism icon badge */
.bento-card__badge {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background .3s, transform .3s cubic-bezier(.4,0,.2,1);
}
.bento-card__badge svg { width: 22px; height: 22px; }
.bento-card:hover .bento-card__badge {
  background: rgba(0,112,224,.6);
  transform: rotate(8deg) scale(1.1);
}

/* Text body pinned to bottom */
.bento-card__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 28px 24px;
}
.bento-card__metric {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -.03em;
}
.bento-card__title {
  font-size: .95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.bento-card__desc {
  font-size: .82rem;
  color: rgba(255,255,255,.72);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Bento position variants */
.bento-card--tall    { grid-column: 1; grid-row: 1 / 3; }
.bento-card--wide    { grid-column: 2 / 4; grid-row: 1; }
.bento-card--compact { grid-row: 2; }
.bento-card--compact .bento-card__metric { font-size: 1.6rem; }

/* ===== POR QUE SEMINOVOS ===== */
.seminovos { background: var(--white); padding: 80px 0; }
.seminovos__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 0;
}
.seminovos__card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.seminovos__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.seminovos__icon {
  width: 48px;
  height: 48px;
  background: var(--blue-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.seminovos__icon svg { width: 22px; height: 22px; stroke: var(--blue-mid); }
.seminovos__metric {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--blue-mid);
  line-height: 1.1;
}
.seminovos__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}
.seminovos__desc {
  font-size: .875rem;
  color: var(--text-soft);
  line-height: 1.65;
}
@media (max-width: 1024px) { .seminovos__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .seminovos__grid { grid-template-columns: 1fr; } }

/* ===== CATÁLOGO / SHOWCASE ===== */
.catalogo {
  padding: 80px 0 70px;
  background: #060f1e;
  position: relative;
  overflow: hidden;
}
.catalogo::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}
.section-header--light h2 { color: var(--white); }
.section-header--light p { color: rgba(255,255,255,.6); }
.section-tag--glow {
  background: rgba(0,112,224,.18);
  color: #60a5fa;
  border: 1px solid rgba(0,112,224,.35);
}

/* ===== BUSCA DE PRODUTOS (home + catálogo) ===== */
.product-search {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}
.product-search__icon {
  position: absolute;
  left: 16px;
  width: 18px;
  height: 18px;
  pointer-events: none;
  color: var(--text-soft);
}
.product-search__input {
  width: 100%;
  font-family: inherit;
  font-size: .95rem;
  color: var(--text);
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: 999px;
  padding: 13px 46px 13px 44px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
  -webkit-appearance: none;
  appearance: none;
}
.product-search__input::placeholder { color: var(--text-soft); }
.product-search__input:focus {
  border-color: var(--blue-mid);
  box-shadow: 0 0 0 4px rgba(0,112,224,.12);
}
.product-search__input::-webkit-search-cancel-button { display: none; }
.product-search__clear {
  position: absolute;
  right: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: var(--text-soft);
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.product-search__clear svg { width: 16px; height: 16px; }
.product-search__clear:hover { background: var(--gray-100, #f1f3f5); color: var(--text); }

/* Variante para fundos escuros (home — seção .catalogo / hero do catálogo) */
.product-search--dark .product-search__input {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.16);
  color: var(--white);
  backdrop-filter: blur(6px);
}
.product-search--dark .product-search__input::placeholder { color: rgba(255,255,255,.5); }
.product-search--dark .product-search__icon { color: rgba(255,255,255,.55); }
.product-search--dark .product-search__input:focus {
  border-color: #60a5fa;
  background: rgba(255,255,255,.1);
  box-shadow: 0 0 0 4px rgba(96,165,250,.18);
}
.product-search--dark .product-search__clear { color: rgba(255,255,255,.6); }
.product-search--dark .product-search__clear:hover { background: rgba(255,255,255,.12); color: var(--white); }

/* ===== DROPDOWN DE SUGESTÕES (autocomplete) ===== */
/* position:fixed + anexado ao <body> via JS para não ser recortado por
   ancestrais com overflow:hidden / clip-path (ex.: o hero do catálogo).
   top/left/width são definidos em JS a partir da posição do input. */
.search-sug {
  position: fixed;
  z-index: 1000;
  list-style: none;
  margin: 0;
  padding: 6px;
  max-height: 340px;
  overflow-y: auto;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(10,31,68,.16);
  animation: sugIn .16s ease;
}
@keyframes sugIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.search-sug__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: background .12s ease;
}
.search-sug__item.is-active,
.search-sug__item:hover { background: var(--blue-light); }
.search-sug__img {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  object-fit: contain;
  border-radius: 8px;
  background: #060f1e;
  padding: 5px;
}
.search-sug__img--ph { background: var(--gray-100, #f1f3f5); }
.search-sug__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.search-sug__name {
  font-size: .9rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.search-sug__tag {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: var(--blue-mid);
}

/* Home: busca centralizada acima do showcase */
#showcase-search {
  text-align: left;
}
.catalogo .product-search {
  max-width: 460px;
  margin: 0 auto 36px;
}
.product-search__empty {
  text-align: center;
  color: rgba(255,255,255,.6);
  font-size: .95rem;
  margin: -16px 0 32px;
}

/* Showcase layout */
.showcase {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
}
.showcase__stage {
  display: grid;
  flex: 1;
  min-height: 460px;
}
.showcase__slide {
  grid-column: 1;
  grid-row: 1;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 60px;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transform: translateX(36px);
  transition: opacity .5s cubic-bezier(.4,0,.2,1), transform .5s cubic-bezier(.4,0,.2,1);
}
.showcase__slide.active {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}
.showcase__slide.exit-left  { opacity: 0; transform: translateX(-36px); transition: opacity .35s cubic-bezier(.4,0,.2,1), transform .35s cubic-bezier(.4,0,.2,1); }
.showcase__slide.exit-right { opacity: 0; transform: translateX(36px);  transition: opacity .35s cubic-bezier(.4,0,.2,1), transform .35s cubic-bezier(.4,0,.2,1); }
.showcase__slide.enter-right { transform: translateX(36px);  opacity: 0; }
.showcase__slide.enter-left  { transform: translateX(-36px); opacity: 0; }

/* ===== ANIMAÇÕES DE ENTRADA — CATÁLOGO ===== */
@keyframes catalogContentIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}
.showcase__slide.is-entering .showcase__info > * {
  animation: catalogContentIn .5s cubic-bezier(.4,0,.2,1) both;
}
.showcase__slide.is-entering .showcase__info > *:nth-child(1) { animation-delay: .08s; }
.showcase__slide.is-entering .showcase__info > *:nth-child(2) { animation-delay: .16s; }
.showcase__slide.is-entering .showcase__info > *:nth-child(3) { animation-delay: .23s; }
.showcase__slide.is-entering .showcase__info > *:nth-child(4) { animation-delay: .31s; }
.showcase__slide.is-entering .showcase__info > *:nth-child(5) { animation-delay: .38s; }
.showcase__slide.is-entering .showcase__info > *:nth-child(6) { animation-delay: .45s; }

@keyframes catalogImgReveal {
  from { opacity: 0; transform: scale(.88) translateY(14px); }
  to   { opacity: 1; transform: none; }
}
.showcase__slide.is-entering .showcase__img-wrap {
  animation: catalogImgReveal .55s cubic-bezier(.34,1.56,.64,1) both;
  animation-delay: .05s;
}

@keyframes sonarRing {
  from { transform: scale(.92); opacity: .8; }
  to   { transform: scale(1.6); opacity: 0; }
}
.showcase__slide.is-entering .showcase__img-wrap::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,112,224,.55);
  pointer-events: none;
  animation: sonarRing .9s cubic-bezier(.4,0,.2,1) both;
  animation-delay: .08s;
}

/* Visual column */
.showcase__visual {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 0 20px;
  overflow: visible;
}
.showcase__glow {
  position: absolute;
  inset: -10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,112,224,.35) 0%, transparent 65%);
  animation: glowPulse 4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes glowPulse {
  0%, 100% { opacity: .45; transform: scale(1); }
  50%       { opacity: .95; transform: scale(1.14); }
}
.showcase__img-wrap {
  position: relative;
  z-index: 1;
  width: 340px;
  height: 340px;
  max-width: 100%;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.07);
  background: rgba(255,255,255,.025);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}
.showcase__img-wrap img {
  width: 160%;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 10;
  filter: drop-shadow(0 20px 48px rgba(0,0,0,.75));
  animation: floatPrd 6s ease-in-out infinite;
}
@keyframes floatPrd {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
.showcase__svg {
  width: 72%;
  height: auto;
  animation: floatPrd 6s ease-in-out infinite;
}
.showcase__badge {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(6,15,30,.88);
  border: 1px solid rgba(255,255,255,.1);
  padding: 7px 18px;
  border-radius: 20px;
  font-size: .72rem;
  font-weight: 700;
  color: rgba(255,255,255,.65);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  white-space: nowrap;
  backdrop-filter: blur(8px);
}
.showcase__led {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue-mid);
  animation: ledBlink 2.5s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes ledBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: .45; }
}

/* Info column */
.showcase__info {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.showcase__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blue-mid);
  margin-bottom: 12px;
}
.showcase__eyebrow::before {
  content: '';
  width: 22px;
  height: 2px;
  background: var(--blue-mid);
  border-radius: 2px;
  flex-shrink: 0;
}
.showcase__name {
  font-size: clamp(1.8rem, 2.8vw, 2.5rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.5px;
  background: linear-gradient(160deg, #ffffff 40%, rgba(255,255,255,.55));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 14px;
}
.showcase__desc {
  font-size: .93rem;
  color: rgba(255,255,255,.62);
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 480px;
}

/* Metrics panel */
.showcase__metrics {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 20px 22px 18px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.showcase__metric-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 8px;
}
.showcase__metric-top span:last-child {
  font-weight: 700;
  color: var(--white);
  font-size: .8rem;
  letter-spacing: .3px;
}
.showcase__bar {
  height: 4px;
  background: rgba(255,255,255,.08);
  border-radius: 4px;
  overflow: hidden;
}
.showcase__bar-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--blue-mid), #60a5fa);
  border-radius: 4px;
  transition: width 1s cubic-bezier(.4,0,.2,1);
}

/* Chips */
.showcase__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
}
.showcase__chips span {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.72);
  padding: 5px 13px;
  border-radius: 20px;
  font-size: .78rem;
  font-weight: 500;
}

/* Nav buttons */
.showcase__nav {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(0,112,224,.18);
  border: 2px solid rgba(0,112,224,.5);
  color: rgba(255,255,255,.9);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
  align-self: center;
  box-shadow: 0 0 18px rgba(0,112,224,.25);
}
.showcase__nav:hover {
  background: var(--blue-mid);
  border-color: var(--blue-mid);
  color: var(--white);
  transform: scale(1.12);
  box-shadow: 0 0 28px rgba(0,112,224,.55);
}
.showcase__nav svg { width: 24px; height: 24px; }

/* Footer */
.showcase__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 44px;
  flex-wrap: wrap;
}
.showcase__pagination {
  display: flex;
  align-items: center;
  gap: 16px;
}
.showcase__dots { display: flex; gap: 8px; }
.showcase__dot-btn {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), width .3s ease;
  padding: 0;
}
.showcase__dot-btn.active {
  background: var(--blue-mid);
  transform: scale(1.25);
  width: 22px;
  border-radius: 4px;
}
.showcase__counter {
  font-size: .82rem;
  color: rgba(255,255,255,.35);
  font-weight: 600;
  letter-spacing: .5px;
}
.showcase__counter span { color: rgba(255,255,255,.65); }
.showcase__sep { color: rgba(255,255,255,.2) !important; }

.btn--outline-light {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0,112,224,.18);
  color: rgba(255,255,255,.9);
  border: 2px solid rgba(0,112,224,.5);
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: .92rem;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  box-shadow: 0 0 18px rgba(0,112,224,.25);
}
.btn--outline-light svg { width: 16px; height: 16px; }
.btn--outline-light:hover {
  background: var(--blue-mid);
  border-color: var(--blue-mid);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 0 28px rgba(0,112,224,.55);
}

.card--produto {
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), opacity .55s ease;
  display: flex;
  flex-direction: column;
}
.card--produto:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.card__img-wrap { overflow: hidden; }
.card__img-placeholder svg { width: 100%; height: auto; display: block; }
.card__img-placeholder img { width: 100%; height: 160px; object-fit: contain; background: var(--blue-pale); }

.card__body { padding: 20px; display: flex; flex-direction: column; flex: 1; gap: 12px; }
.card__tag {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue-mid);
  padding: 3px 10px;
  border-radius: 20px;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  width: fit-content;
}
.card__body h3 { font-size: 1rem; font-weight: 700; color: var(--text); }
.card__specs { display: flex; flex-direction: column; gap: 4px; margin-top: 2px; flex: 1; }
.card__specs li {
  font-size: .85rem;
  color: var(--text-soft);
  padding-left: 14px;
  position: relative;
}
.card__specs li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--blue-mid);
  font-weight: 700;
}

/* ===== RESULTADOS ===== */
.resultados {
  background: linear-gradient(160deg, var(--blue-dark) 0%, #0d2650 60%, #0a1f44 100%);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.resultados::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, #000 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, #000 40%, transparent 100%);
  pointer-events: none;
}
.resultados .section-header { position: relative; z-index: 1; }
.resultados .section-header h2 { color: var(--white); }
.resultados .section-header p { color: rgba(255,255,255,.65); }
.resultados .section-tag { background: rgba(255,255,255,.1); color: rgba(255,255,255,.85); border: 1px solid rgba(255,255,255,.18); }

/* Grid */
.resultados__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
  position: relative;
  z-index: 1;
}

/* Card base */
.resultados__item {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 36px 28px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  text-align: center;
  cursor: default;
  position: relative;
  overflow: hidden;
  transition:
    transform .35s cubic-bezier(.34,1.56,.64,1),
    box-shadow .35s ease,
    background .35s ease,
    border-color .35s ease;
  will-change: transform;
}
.resultados__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(96,165,250,.12) 0%, transparent 65%);
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}
.resultados__item:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 24px 56px rgba(0,0,0,.4), 0 0 0 1px rgba(96,165,250,.3);
  background: rgba(255,255,255,.1);
  border-color: rgba(96,165,250,.4);
}
.resultados__item:hover::after { opacity: 1; }

/* Graphic zone */
.res-graphic {
  width: 120px;
  height: 120px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  flex-shrink: 0;
}

/* Content zone */
.res-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.res-content strong {
  font-size: clamp(1.9rem, 2.8vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: -.5px;
}
.res-label {
  font-size: .84rem;
  color: rgba(255,255,255,.65);
  line-height: 1.45;
  max-width: 180px;
}
.res-detail {
  font-size: .8rem;
  color: rgba(255,255,255,.0);
  line-height: 1.5;
  max-width: 200px;
  max-height: 0;
  overflow: hidden;
  margin-top: 0;
  transition: max-height .35s ease, color .25s ease .1s, margin-top .35s ease;
}
.resultados__item:hover .res-detail {
  max-height: 80px;
  color: rgba(255,255,255,.5);
  margin-top: 8px;
}

/* ── GRAPHIC 1: ANEL DE PROGRESSO ── */
.res-graphic--ring { }
.res-ring-svg {
  width: 110px;
  height: 110px;
  transform: rotate(-90deg);
}
.res-ring-bg {
  fill: none;
  stroke: rgba(255,255,255,.1);
  stroke-width: 7;
}
.res-ring-fill {
  fill: none;
  stroke: url(#ringGrad);
  stroke-width: 7;
  stroke-linecap: round;
  stroke-dasharray: 251.2;
  stroke-dashoffset: 251.2;
  transition: stroke-dashoffset 1.4s cubic-bezier(.4,0,.2,1);
}
.res-ring-center {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.res-ring-center svg {
  width: 30px;
  height: 30px;
  stroke: #60a5fa;
  opacity: .85;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), opacity .35s ease;
}
.resultados__item:hover .res-ring-center svg {
  transform: scale(1.25);
  opacity: 1;
}

/* ── GRAPHIC 2: BARRAS COMPARATIVAS ── */
.res-graphic--bars {
  align-items: flex-end;
  justify-content: center;
  gap: 0;
}
.res-bar-group {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  height: 90px;
}
.res-bar-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  height: 100%;
  justify-content: flex-end;
}
.res-bar {
  width: 34px;
  border-radius: 6px 6px 0 0;
  position: relative;
  transition: height 1.2s cubic-bezier(.4,0,.2,1), filter .35s ease;
  height: 0;
}
.res-bar--new  { background: rgba(255,255,255,.2); }
.res-bar--semi { background: linear-gradient(180deg, #60a5fa 0%, #0070e0 100%); }
.res-bar-label {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: .6rem;
  color: rgba(255,255,255,.45);
  white-space: nowrap;
}
.resultados__item:hover .res-bar { filter: brightness(1.2); }
.res-bar-badge {
  position: absolute;
  top: 8px;
  right: 6px;
  background: #60a5fa;
  color: #0a1f44;
  font-size: .7rem;
  font-weight: 800;
  padding: 3px 7px;
  border-radius: 20px;
  opacity: 0;
  transform: scale(.7) translateY(-4px);
  transition: opacity .3s ease .8s, transform .3s ease .8s;
}

/* ── GRAPHIC 3: ESCUDO COM PULSO ── */
.res-graphic--shield { }
.res-shield-pulse {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(96,165,250,.35);
  animation: shieldPulse 2.4s ease-out infinite;
  pointer-events: none;
}
.res-shield-pulse--1 { width: 60px;  height: 60px;  animation-delay: 0s; }
.res-shield-pulse--2 { width: 84px;  height: 84px;  animation-delay: .6s; }
.res-shield-pulse--3 { width: 108px; height: 108px; animation-delay: 1.2s; }
@keyframes shieldPulse {
  0%   { transform: scale(.7); opacity: .6; }
  100% { transform: scale(1.1); opacity: 0; }
}
.res-shield-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(96,165,250,.2), rgba(0,112,224,.3));
  border: 1.5px solid rgba(96,165,250,.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), box-shadow .35s ease;
}
.res-shield-icon svg {
  width: 26px;
  height: 26px;
  stroke: #60a5fa;
}
.resultados__item:hover .res-shield-icon {
  transform: scale(1.2);
  box-shadow: 0 0 24px rgba(96,165,250,.4);
}

/* ── GRAPHIC 4: CURVA DE ROI ── */
.res-graphic--chart { overflow: visible; }
.res-chart-svg {
  width: 120px;
  height: 70px;
  overflow: visible;
}
.res-chart-area {
  fill: url(#chartGrad);
  opacity: 0;
  transition: opacity .8s ease .4s;
}
.res-chart-line {
  stroke: #60a5fa;
  stroke-width: 2.5;
  stroke-linecap: round;
  fill: none;
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  transition: stroke-dashoffset 1.4s cubic-bezier(.4,0,.2,1);
}
.res-chart-dot {
  fill: #60a5fa;
  filter: drop-shadow(0 0 6px #60a5fa);
  opacity: 0;
  transition: opacity .3s ease 1.3s;
  animation: dotPulse 1.8s ease-in-out infinite 1.5s;
}
@keyframes dotPulse {
  0%, 100% { r: 4; filter: drop-shadow(0 0 6px #60a5fa); }
  50%       { r: 6; filter: drop-shadow(0 0 12px #60a5fa); }
}
.res-chart-arrow {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 28px;
  height: 28px;
  background: rgba(96,165,250,.15);
  border: 1px solid rgba(96,165,250,.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), background .35s ease;
}
.res-chart-arrow svg { width: 14px; height: 14px; stroke: #60a5fa; }
.resultados__item:hover .res-chart-arrow {
  transform: scale(1.3) rotate(-10deg);
  background: rgba(96,165,250,.3);
}

/* SVG gradient defs (hidden, referenced by ID) */
.res-svg-defs { position: absolute; width: 0; height: 0; overflow: hidden; }

/* Responsive */
@media (max-width: 1100px) { .resultados__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .resultados__grid { grid-template-columns: 1fr; gap: 14px; } }
@media (max-width: 600px)  { .resultados__item:hover { transform: translateY(-6px) scale(1.01); } }

/* ===== CONTATO / FORMULÁRIO ===== */
.contato {
  background: linear-gradient(135deg, var(--blue-dark) 0%, #1a3a70 100%);
  padding: 80px 0;
}
.contato__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contato__text .section-tag { margin-bottom: 16px; }
.contato__text h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
}
.contato__text > p { color: rgba(255,255,255,.75); margin-bottom: 28px; }
.contato__beneficios { display: flex; flex-direction: column; gap: 10px; }
.contato__beneficios li {
  display: flex;
  gap: 10px;
  align-items: center;
  color: rgba(255,255,255,.85);
  font-size: .95rem;
}
.contato__beneficios svg { width: 18px; height: 18px; color: var(--wpp); flex-shrink: 0; }

.lead-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: 0 8px 40px rgba(0,0,0,.2);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: .875rem; font-weight: 600; color: var(--text); }
.form-group input,
.form-group select {
  padding: 12px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  font-size: .95rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus {
  border-color: var(--blue-mid);
  box-shadow: 0 0 0 3px rgba(0,112,224,.12);
}
.form-group input.error,
.form-group select.error { border-color: #e53e3e; }

.form-error { font-size: .8rem; color: #e53e3e; min-height: 16px; }
.form-lgpd { font-size: .78rem; color: var(--text-soft); text-align: center; margin-top: -8px; }

/* ===== FAQ ===== */
.faq { padding: 80px 0; background: var(--white); }

.faq__list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }

.faq__item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  background: var(--white);
  border: none;
  cursor: pointer;
  font-size: .95rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  transition: background var(--transition);
}
.faq__question:hover { background: var(--gray-50); }
.faq__question[aria-expanded="true"] { background: var(--blue-pale); color: var(--blue-mid); }

.faq__icon { width: 18px; height: 18px; flex-shrink: 0; transition: transform var(--transition); color: var(--text-soft); }
.faq__question[aria-expanded="true"] .faq__icon { transform: rotate(180deg); color: var(--blue-mid); }

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 20px;
}
.faq__answer.open {
  /* max-height definido dinamicamente pelo JS via scrollHeight */
  padding: 0 20px 16px;
}
.faq__answer p { font-size: .9rem; color: var(--text-soft); line-height: 1.7; }

/* ===== FOOTER ===== */
.footer { background: var(--blue-dark); padding: 60px 0 0; }
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer__brand { display: flex; flex-direction: column; gap: 16px; }
.footer__brand p { color: rgba(255,255,255,.6); font-size: .9rem; max-width: 300px; }

.footer__links,
.footer__contato { display: flex; flex-direction: column; gap: 10px; }
.footer__links h4,
.footer__contato h4 {
  font-size: .9rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 4px;
}
.footer__links a,
.footer__contato p {
  font-size: .875rem;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--white); }

.footer__wpp { margin-top: 8px; }

.footer__bottom {
  padding: 18px 0;
}
.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: .8rem;
  color: rgba(255,255,255,.35);
}

/* ===== BOTÃO FLUTUANTE ===== */
.wpp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--wpp);
  color: var(--white);
  padding: 14px 20px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  font-weight: 700;
  font-size: .9rem;
  transition: transform var(--transition), box-shadow var(--transition), opacity .3s ease;
  animation: pulse 2s infinite;
}
.wpp-float svg { width: 22px; height: 22px; }
.wpp-float:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 24px rgba(37,211,102,.6);
  animation: none;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.5); }
  50% { box-shadow: 0 4px 28px rgba(37,211,102,.7); }
}

/* ===== RESPONSIVO ===== */
@media (max-width: 1024px) {
  .cards-grid--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__image { display: none; }
  .hero {
    background:
      linear-gradient(to top, #0a1f44 30%, rgba(10,31,68,1) 65%, transparent 100%),
      url('assets/img-hero.png') top center / auto 45% no-repeat,
      linear-gradient(160deg, #0a1f44 0%, #102a55 55%, #143a78 100%);
  }
  .contato__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }

  .bento-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 280px 220px 220px;
  }
  .bento-card--tall  { grid-column: 1; grid-row: 1 / 3; }
  .bento-card--wide  { grid-column: 2; grid-row: 1; }
  .bento-card--compact:nth-child(3) { grid-column: 2; grid-row: 2; }
  .bento-card--compact:nth-child(4) { grid-column: 1 / 3; grid-row: 3; }

  .showcase { flex-direction: column; gap: 0; }
  .showcase__nav { display: none; }
  .showcase__stage { min-height: unset; width: 100%; }
  .showcase__slide { grid-template-columns: 1fr; gap: 32px; }
  .showcase__img-wrap { width: 260px; height: 260px; }
  .showcase__visual { padding: 20px 0 32px; }
  .showcase__footer { gap: 20px; }
}

@media (max-width: 768px) {
  .header__nav, .header__cta { display: none; }
  .header__hamburger { display: flex; }

  .header__nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: 12px 24px 20px;
    box-shadow: var(--shadow-md);
    z-index: 99;
    gap: 2px;
  }
  .header__nav.open + .header__cta {
    display: flex;
    position: absolute;
    top: calc(68px + 10px);
    right: 24px;
  }

  .cards-grid--3 { grid-template-columns: 1fr; }
  .cards-grid--4 { grid-template-columns: 1fr; }

  .bento-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }
  .bento-card--tall,
  .bento-card--wide,
  .bento-card--compact { grid-column: 1; grid-row: auto; min-height: 240px; }

  .hero { padding: 56px 0 72px; clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 32px)); }
  .hero__text h1 { font-size: 1.8rem; }
  .hero__stats { gap: 24px; }
  .hero__stat strong { font-size: 1.3rem; }

  .wpp-float .wpp-float__label { display: none; }
  .wpp-float { padding: 14px; border-radius: 50%; }

  .footer__inner { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .lead-form { padding: 24px; }
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { justify-content: center; }
}

/* ===== ACESSIBILIDADE — REDUZIR MOVIMENTO ===== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal,
  .hero__text > *,
  .hero__image {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
