/* =====================================================
   WM PAINÉIS ELÉTRICOS — SITE HTML FINAL
   Para editar: procure pelos comentários "EDITAR" nos arquivos HTML.
   ===================================================== */

:root {
  --dark: #0b1220;
  --dark-2: #111827;
  --dark-3: #151f32;
  --text: #1f2937;
  --muted: #64748b;
  --line: #e2e8f0;
  --light: #ffffff;
  --soft: #f4f7fb;
  --orange: #f36b21;
  --orange-2: #ff9f1c;
  --red: #b91c1c;
  --shadow: 0 24px 70px rgba(15, 23, 42, .16);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--light);
  line-height: 1.65;
}

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

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(11, 18, 32, .95);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #fff;
}

.brand img {
  width: 68px;
  height: 54px;
  object-fit: contain;
}

.brand span {
  display: flex;
  flex-direction: column;
  line-height: 1.08;
}

.brand strong {
  font-size: 1rem;
}

.brand small {
  color: #cbd5e1;
  font-size: .78rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav a {
  color: #e5e7eb;
  font-weight: 800;
  font-size: .93rem;
  padding: 10px 14px;
  border-radius: 999px;
  transition: .2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--dark);
  background: #fff;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, .1);
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  display: block;
  margin: 5px auto;
  background: #fff;
}

/* TIPOGRAFIA */

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(2.55rem, 6vw, 5.1rem);
  line-height: .96;
  letter-spacing: -.065em;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.04;
  letter-spacing: -.045em;
  color: var(--dark);
  margin-bottom: 20px;
}

h3 {
  font-size: 1.18rem;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 10px;
}

p {
  color: var(--muted);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--orange-2);
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: .74rem;
  font-weight: 950;
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.eyebrow.dark {
  color: var(--orange);
}

/* BOTÕES */

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 28px;
}

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 950;
  cursor: pointer;
  transition: .2s ease;
}

.btn-primary {
  color: var(--dark);
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  box-shadow: 0 18px 36px rgba(243, 107, 33, .28);
}

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

.btn-secondary {
  color: #fff;
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .18);
}

/* HERO HOME */

.hero {
  min-height: 820px;
  position: relative;
  display: grid;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right center;
  padding-left: 40%;
  background: #05070d;
}

.hero-overlay {
  background:
    radial-gradient(circle at 73% 45%, rgba(243, 107, 33, .11), transparent 30%),
    linear-gradient(90deg, rgba(11, 18, 32, .98) 0%, rgba(11, 18, 32, .92) 39%, rgba(11, 18, 32, .38) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-copy {
  width: min(720px, 100%);
}

.hero-copy p,
.page-hero p,
.cta-section p {
  color: #cbd5e1;
  font-size: 1.13rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-badges span {
  display: inline-flex;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  color: #e5e7eb;
  font-size: .85rem;
  font-weight: 800;
}

/* SEÇÕES GERAIS */

.section {
  padding: 92px 0;
}

.section-light {
  background: #fff;
}

.section-muted {
  background: var(--soft);
}

.section-dark {
  background:
    radial-gradient(circle at 25% 20%, rgba(243, 107, 33, .13), transparent 28%),
    linear-gradient(135deg, var(--dark), var(--dark-2));
  color: #fff;
}

.section-dark h2,
.cta-section h2,
.page-hero h1 {
  color: #fff;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 42px;
}

.section-heading.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-heading.center .eyebrow {
  justify-content: center;
}

.section-heading p {
  font-size: 1.06rem;
}

.split-grid,
.page-hero-grid,
.contact-grid,
.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.section-copy p {
  font-size: 1.07rem;
  margin-bottom: 18px;
}

.highlight-box {
  padding: 20px 22px;
  margin-top: 24px;
  border: 1px solid #fed7aa;
  border-radius: 20px;
  background: #fff7ed;
  color: #9a3412;
  font-weight: 850;
}

.product-stage {
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 50%, rgba(243, 107, 33, .12), transparent 38%),
    linear-gradient(135deg, #0f172a, #111827);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.product-stage img {
  width: 100%;
  height: 100%;
  max-height: 500px;
  object-fit: contain;
  padding: 24px;
}

.dark-stage {
  background:
    radial-gradient(circle at 50% 50%, rgba(243, 107, 33, .14), transparent 36%),
    linear-gradient(135deg, #0b1220, #1f2937);
}

/* CARDS PRINCIPAIS */

.panel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.panel-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 40px rgba(15, 23, 42, .08);
}

.panel-card img {
  width: 100%;
  height: 230px;
  object-fit: contain;
  padding: 18px;
  background: radial-gradient(circle at 50% 50%, #f1f5f9, #ffffff);
}

.panel-card div {
  padding: 22px;
}

.panel-card span,
.product-item span {
  width: fit-content;
  display: inline-flex;
  padding: 6px 10px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: #ffedd5;
  color: #9a3412;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .71rem;
  font-weight: 950;
}

.panel-card p {
  margin-bottom: 0;
}

/* LOGOS / CARROSSEL */

.logo-section {
  overflow: hidden;
}

.logo-section.dark p {
  color: #cbd5e1;
}

.logo-carousel {
  width: 100%;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid #dbe4ef;
  background: #ffffff;
  box-shadow: 0 14px 42px rgba(15, 23, 42, .08);
}

.logo-carousel.dark {
  border-color: #dbe4ef;
  background: #ffffff;
  box-shadow: 0 16px 44px rgba(2, 6, 23, .14);
}

.logo-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 34px;
  padding: 28px 30px;
  animation: slide-left 34s linear infinite;
}

.logo-track.reverse {
  animation: slide-right 36s linear infinite;
}

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

.logo-card {
  min-width: 220px;
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  padding: 10px 8px;
  background: transparent;
  border: none;
  border-radius: 0;
}

.logo-card img {
  max-width: 100%;
  max-height: 92px;
  object-fit: contain;
  opacity: .94;
  filter: grayscale(1);
  transition: transform .2s ease, opacity .2s ease, filter .2s ease;
}

.logo-card:hover img {
  opacity: 1;
  filter: grayscale(0);
  transform: scale(1.04);
}

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

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

/* DIFERENCIAIS */

.check-list {
  display: grid;
  gap: 15px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text);
  font-weight: 800;
}

.check-list li::before {
  content: "✓";
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  flex: 0 0 25px;
  border-radius: 999px;
  background: #dcfce7;
  color: #166534;
  font-weight: 950;
}

/* PROCESSO */

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

.process-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 12px 38px rgba(15, 23, 42, .06);
}

.process-card strong {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--orange);
  font-size: 1.45rem;
  font-weight: 950;
}

.process-card p {
  margin-bottom: 0;
}

/* CTA */

.cta-section {
  background:
    radial-gradient(circle at 80% 20%, rgba(243, 107, 33, .16), transparent 30%),
    linear-gradient(135deg, var(--dark), #172033);
  color: #fff;
}

.cta-grid {
  grid-template-columns: 1fr auto;
}

/* PÁGINAS INTERNAS */

.page-hero {
  padding: 90px 0;
  background:
    radial-gradient(circle at 80% 35%, rgba(243, 107, 33, .13), transparent 31%),
    linear-gradient(135deg, var(--dark), #172033);
  color: #fff;
}

.page-hero .product-stage {
  min-height: 360px;
}

.service-list {
  display: grid;
  gap: 22px;
}

.service-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 28px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 12px 40px rgba(15, 23, 42, .07);
}

.service-item.special {
  background:
    linear-gradient(135deg, rgba(243, 107, 33, .10), transparent),
    #fff;
  border-color: #fed7aa;
}

.service-item span {
  color: var(--orange);
  font-size: 1.6rem;
  font-weight: 950;
}

.service-item p {
  font-size: 1.04rem;
  margin-bottom: 0;
}

.product-list {
  display: grid;
  gap: 28px;
}

.product-item {
  display: grid;
  grid-template-columns: 410px 1fr;
  gap: 38px;
  align-items: center;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: #fff;
  box-shadow: 0 14px 46px rgba(15, 23, 42, .08);
}

.product-item img {
  width: 100%;
  height: 310px;
  object-fit: contain;
  padding: 12px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 50%, rgba(243, 107, 33, .08), transparent 45%),
    #f8fafc;
}

/* CONTATO */

.contact-grid {
  align-items: start;
}

.contact-card,
.contact-form {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 16px 54px rgba(15, 23, 42, .08);
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin: 26px 0;
}

.contact-methods a,
.contact-methods div {
  display: grid;
  gap: 2px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #f8fafc;
}

.contact-methods strong {
  color: var(--dark);
}

.contact-methods span {
  color: var(--muted);
  font-weight: 750;
}

.small-note {
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: .88rem;
  color: #64748b;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--dark);
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid #cbd5e1;
  border-radius: 14px;
  background: #fff;
  color: var(--text);
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(243, 107, 33, .18);
  border-color: var(--orange);
}

/* FOOTER */

.site-footer {
  padding: 48px 0 28px;
  background: var(--dark);
  color: #cbd5e1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .7fr .9fr;
  gap: 42px;
}

.footer-brand img {
  width: 120px;
  height: auto;
  object-fit: contain;
}

.footer-about p {
  max-width: 540px;
  margin: 18px 0 0;
  color: #94a3b8;
}

.footer-col {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-col strong {
  margin-bottom: 8px;
  color: #fff;
}

.footer-col a,
.footer-col span {
  color: #cbd5e1;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  color: #94a3b8;
  font-size: .88rem;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 70;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  background: #22c55e;
  color: #052e16;
  font-weight: 950;
  box-shadow: 0 16px 34px rgba(34, 197, 94, .28);
}

/* RESPONSIVO */

@media (max-width: 1080px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 84px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border-radius: 20px;
    background: var(--dark-2);
    box-shadow: var(--shadow);
  }

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

  .main-nav a {
    border-radius: 12px;
  }

  .hero-bg img {
    padding-left: 26%;
    opacity: .74;
  }

  .split-grid,
  .page-hero-grid,
  .contact-grid,
  .cta-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .panel-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-item {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .brand small {
    display: none;
  }

  .brand img {
    width: 60px;
  }

  h1 {
    font-size: 2.46rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero {
    min-height: 760px;
  }

  .hero-bg img {
    object-position: center bottom;
    padding: 190px 14px 28px;
    opacity: .52;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(11, 18, 32, .98), rgba(11, 18, 32, .80));
  }

  .button-row,
  .hero-badges {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .section,
  .page-hero {
    padding: 64px 0;
  }

  .panel-grid,
  .process-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-item {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .product-stage {
    min-height: 320px;
  }

  .product-stage img,
  .product-item img {
    max-height: 320px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .floating-whatsapp {
    left: 14px;
    right: 14px;
  }
}


/* =====================================================
   AJUSTES ESTÉTICOS — MENU, BOTÕES, LOGOS E CONTATO
   ===================================================== */

/* Menu com tom levemente mais claro e contraste melhor */
.site-header {
  background:
    linear-gradient(180deg, rgba(24, 35, 54, .98), rgba(17, 28, 46, .96));
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  box-shadow: 0 10px 34px rgba(0, 0, 0, .22);
}

.brand img {
  width: 72px;
  height: 56px;
}

.brand strong {
  color: #ffffff;
}

.brand small {
  color: #e2e8f0;
}

.main-nav a {
  color: #f8fafc;
  border: 1px solid transparent;
  text-shadow: 0 1px 0 rgba(0, 0, 0, .18);
}

.main-nav a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .18);
  transform: translateY(-1px);
}

.main-nav a.active {
  color: #111827;
  background: linear-gradient(135deg, #ffffff, #e2e8f0);
  box-shadow: 0 10px 24px rgba(255, 255, 255, .10);
}

/* Efeito discreto nos botões */
.btn {
  position: relative;
  overflow: hidden;
  transition:
    transform .22s ease,
    box-shadow .22s ease,
    background-color .22s ease,
    border-color .22s ease;
}

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

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-120%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .22), transparent);
  transition: transform .55s ease;
}

.btn:hover::after {
  transform: translateX(120%);
}

.btn-primary:hover {
  box-shadow: 0 20px 42px rgba(243, 107, 33, .36);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, .16);
  border-color: rgba(255, 255, 255, .28);
}

/* Rodapé com a segunda versão da logo */
.footer-brand img {
  width: 160px;
  max-height: 86px;
  object-fit: contain;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, .22));
}

.footer-about {
  display: grid;
  gap: 6px;
}

/* Botão flutuante de WhatsApp com mais contraste */
.floating-whatsapp {
  width: 62px;
  min-width: 62px;
  height: 62px;
  min-height: 62px;
  padding: 0;
  border-radius: 999px;
  background:
    radial-gradient(circle at 35% 30%, #6ee7b7, #16a34a 48%, #047857 100%);
  border: 3px solid #ffffff;
  box-shadow:
    0 18px 38px rgba(22, 163, 74, .38),
    0 0 0 8px rgba(34, 197, 94, .13);
  transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow:
    0 24px 44px rgba(22, 163, 74, .46),
    0 0 0 10px rgba(34, 197, 94, .16);
}

.floating-whatsapp img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, .24));
}

/* Contato sem foto inicial */
.contact-hero-clean {
  padding: 104px 0 92px;
}

.contact-hero-content {
  max-width: 980px;
}

.contact-hero-content h1 {
  max-width: 900px;
}

.contact-hero-content p {
  max-width: 760px;
}

/* Ícones nos contatos */
.contact-methods a,
.contact-methods div {
  grid-template-columns: 44px 1fr;
  align-items: center;
}

.contact-methods span {
  display: grid;
  gap: 2px;
}

.contact-methods em {
  color: var(--muted);
  font-style: normal;
  font-weight: 750;
  overflow-wrap: anywhere;
}

.contact-icon,
.contact-icon-text {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(15, 23, 42, .08);
}

.contact-icon {
  padding: 7px;
  object-fit: contain;
}

.contact-icon-text {
  color: var(--orange);
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .06em;
}

/* Menu mobile mais claro e legível */
@media (max-width: 1080px) {
  .main-nav {
    background: linear-gradient(180deg, #1e293b, #111827);
    border: 1px solid rgba(255, 255, 255, .14);
  }

  .brand img {
    width: 66px;
    height: 52px;
  }
}

@media (max-width: 680px) {
  .brand img {
    width: 58px;
    height: 48px;
  }

  .footer-brand img {
    width: 140px;
  }

  .floating-whatsapp {
    left: auto;
    right: 16px;
    width: 58px;
    min-width: 58px;
    height: 58px;
    min-height: 58px;
  }
}


/* Ajuste do carrossel de clientes após inclusão de novas logos */
.logo-section.dark .logo-track.reverse {
  animation-duration: 40s;
}


@media (max-width: 768px) {
  .logo-track {
    gap: 24px;
    padding: 22px 18px;
  }

  .logo-card {
    min-width: 160px;
    min-height: 82px;
  }

  .logo-card img {
    max-height: 64px;
  }
}


/* SEO LOCAL - ÁREA DE ATENDIMENTO */
.service-area-section {
  border-top: 1px solid var(--line);
}

.service-area-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-area-grid div {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #f8fafc;
  box-shadow: 0 12px 34px rgba(15, 23, 42, .06);
}

.service-area-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--dark);
  font-size: 1.2rem;
}

.service-area-grid span {
  color: var(--muted);
  font-weight: 650;
}

@media (max-width: 768px) {
  .service-area-grid {
    grid-template-columns: 1fr;
  }
}



/* =====================================================
   ANIMAÇÕES SUAVES, CONTADORES E LIGHTBOX
   ===================================================== */

/* Animação suave ao rolar a página */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity .72s ease,
    transform .72s ease;
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Reduz animações para quem prefere menos movimento */
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .btn,
  .counter-card,
  .wm-lightbox img {
    transition: none !important;
    animation: none !important;
    transform: none !important;
  }
}

/* Seção de contadores */
.section-counters {
  background:
    radial-gradient(circle at 20% 20%, rgba(243, 107, 33, .10), transparent 30%),
    linear-gradient(180deg, #ffffff, #f8fafc);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.counter-card {
  min-height: 170px;
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 26px;
  border: 1px solid #dbe4ef;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(248, 250, 252, .98));
  box-shadow: 0 16px 44px rgba(15, 23, 42, .08);
  transition:
    transform .22s ease,
    box-shadow .22s ease,
    border-color .22s ease;
}

.counter-card:hover {
  transform: translateY(-4px);
  border-color: #fed7aa;
  box-shadow: 0 22px 56px rgba(15, 23, 42, .12);
}

.counter-card strong {
  display: flex;
  align-items: baseline;
  gap: 4px;
  color: var(--dark);
  font-size: clamp(2.3rem, 4vw, 4rem);
  line-height: .95;
  letter-spacing: -.05em;
}

.counter-card strong em {
  color: var(--orange);
  font-style: normal;
  font-size: .62em;
}

.counter-card span:last-child {
  color: var(--muted);
  font-weight: 800;
  line-height: 1.35;
}

/* Lightbox */
[data-lightbox] {
  cursor: zoom-in;
}

.wm-lightbox {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(2, 6, 23, .88);
  backdrop-filter: blur(10px);
}

.wm-lightbox.is-open {
  display: flex;
}

.wm-lightbox-inner {
  width: min(1100px, 96vw);
  display: grid;
  gap: 14px;
  justify-items: center;
}

.wm-lightbox img {
  max-width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .42);
  animation: lightboxIn .22s ease;
}

.wm-lightbox-caption {
  max-width: 900px;
  color: #e5e7eb;
  text-align: center;
  font-size: .95rem;
  font-weight: 700;
}

.wm-lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .20);
  border-radius: 999px;
  background: rgba(255, 255, 255, .10);
  color: #ffffff;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}

.wm-lightbox-close:hover {
  transform: scale(1.06);
  background: rgba(255, 255, 255, .18);
}

@keyframes lightboxIn {
  from {
    opacity: 0;
    transform: scale(.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Otimização visual de imagens interativas */
.panel-card img,
.product-item img,
.product-stage img {
  transition: transform .28s ease, filter .28s ease;
}

.panel-card:hover img,
.product-item:hover img {
  transform: scale(1.025);
}

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

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

  .counter-card {
    min-height: 140px;
  }

  .wm-lightbox {
    padding: 16px;
  }

  .wm-lightbox-close {
    top: 12px;
    right: 12px;
  }
}



/* =====================================================
   REFINAMENTO INDUSTRIAL DOS CONTADORES
   ===================================================== */

.industrial-counters {
  background:
    radial-gradient(circle at 12% 18%, rgba(243, 107, 33, .18), transparent 34%),
    radial-gradient(circle at 88% 22%, rgba(255, 159, 28, .10), transparent 30%),
    linear-gradient(135deg, #0b1220 0%, #111827 48%, #151f32 100%);
  border-top: 1px solid rgba(255, 255, 255, .08);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.industrial-counters .section-heading h2 {
  color: #ffffff;
}

.industrial-counters .section-heading p {
  color: #cbd5e1;
}

.industrial-counters .eyebrow.dark {
  color: var(--orange-2);
}

.industrial-counters .counter-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .035));
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 22px 60px rgba(0, 0, 0, .22);
}

.industrial-counters .counter-card:hover {
  border-color: rgba(243, 107, 33, .48);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, .30),
    0 0 0 1px rgba(243, 107, 33, .18) inset;
}

.industrial-counters .counter-card strong {
  color: var(--orange-2);
  text-shadow: 0 10px 26px rgba(243, 107, 33, .18);
}

.industrial-counters .counter-card strong em {
  color: var(--orange-2);
}

.industrial-counters .counter-card span:last-child {
  color: #f8fafc;
}

.industrial-counters .counter-pin {
  width: .58em;
  height: .58em;
  display: inline-grid;
  place-items: center;
  margin-left: 6px;
  border-radius: 999px;
  background: rgba(243, 107, 33, .16);
  color: var(--orange-2);
  font-size: .34em;
  line-height: 1;
  transform: translateY(-.16em);
}



/* =====================================================
   RODAPÉ COM DADOS LEGAIS, INSTAGRAM E MAPA
   ===================================================== */

.footer-grid-updated {
  grid-template-columns: 1.3fr .7fr 1fr;
}

.footer-legal {
  display: grid;
  gap: 6px;
  margin-top: 18px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 18px;
  background: rgba(255, 255, 255, .045);
}

.footer-legal strong {
  color: #ffffff;
  font-size: .94rem;
  line-height: 1.35;
}

.footer-legal span {
  color: #cbd5e1;
  font-weight: 750;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.footer-social a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  font-weight: 900;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.footer-social a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, .13);
  border-color: rgba(243, 107, 33, .45);
}

.footer-social img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.footer-map-wrap {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 28px;
  align-items: stretch;
  margin-top: 42px;
  padding-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-map-info {
  display: grid;
  align-content: center;
  padding: 28px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 18% 20%, rgba(243, 107, 33, .14), transparent 32%),
    rgba(255, 255, 255, .045);
  border: 1px solid rgba(255, 255, 255, .10);
}

.footer-map-info h2 {
  color: #ffffff;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  margin-bottom: 12px;
}

.footer-map-info p {
  color: #cbd5e1;
  font-weight: 850;
  margin-bottom: 0;
}

.footer-map {
  min-height: 320px;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .24);
  background: rgba(255, 255, 255, .04);
}

.footer-map iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  display: block;
  border: 0;
  filter: grayscale(.15) contrast(1.02);
}

.footer-bottom {
  align-items: center;
}

.footer-bottom span:last-child {
  text-align: right;
}

@media (max-width: 1080px) {
  .footer-grid-updated,
  .footer-map-wrap {
    grid-template-columns: 1fr;
  }

  .footer-map-info {
    padding: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom span:last-child {
    text-align: left;
  }
}

@media (max-width: 680px) {
  .footer-map {
    min-height: 260px;
    border-radius: 20px;
  }

  .footer-map iframe {
    min-height: 260px;
  }
}



/* Observação discreta do formulário de contato */
.form-note {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: .88rem;
  font-weight: 650;
  line-height: 1.45;
}



/* =====================================================
   REFORÇO DO CARROSSEL PARA TELAS GRANDES / 4K
   ===================================================== */

.logo-carousel {
  position: relative;
  isolation: isolate;
}

.logo-carousel::before,
.logo-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 90px;
  pointer-events: none;
}

.logo-carousel::before {
  left: 0;
  background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0));
}

.logo-carousel::after {
  right: 0;
  background: linear-gradient(270deg, #ffffff, rgba(255, 255, 255, 0));
}

.logo-track {
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

.logo-track.is-extended {
  animation-duration: 42s;
}

.logo-track.reverse.is-extended {
  animation-duration: 46s;
}

@media (min-width: 1800px) {
  .logo-card {
    min-width: 250px;
  }

  .logo-track {
    gap: 42px;
  }
}


/* =====================================================
   PÁGINA DE PRIVACIDADE
   ===================================================== */
.legal-content { display: grid; gap: 18px; }
.legal-card { padding: 28px; border: 1px solid var(--line); border-radius: 24px; background: #ffffff; box-shadow: 0 14px 40px rgba(15, 23, 42, .06); }
.legal-card h2 { font-size: clamp(1.35rem, 2vw, 1.8rem); margin-bottom: 14px; }
.legal-card p:last-child { margin-bottom: 0; }
.legal-list { margin: 0; padding-left: 22px; color: var(--muted); }
.legal-list li + li { margin-top: 8px; }



/* =====================================================
   PRIVACIDADE COMPACTA
   ===================================================== */

.privacy-page .privacy-hero {
  padding: 74px 0 58px;
}

.privacy-page .privacy-hero h1 {
  font-size: clamp(2.15rem, 4vw, 3.8rem);
}

.privacy-page .privacy-hero p {
  max-width: 820px;
  font-size: .98rem;
}

.privacy-page .legal-content {
  max-width: 920px;
}

.privacy-page .legal-card {
  padding: 20px 22px;
  border-radius: 18px;
}

.privacy-page .legal-card h2 {
  font-size: clamp(1.08rem, 1.6vw, 1.35rem);
  margin-bottom: 8px;
  letter-spacing: -.02em;
}

.privacy-page .legal-card p,
.privacy-page .legal-list {
  font-size: .92rem;
  line-height: 1.58;
}

.privacy-page .legal-list li + li {
  margin-top: 4px;
}



/* Ajuste final: seção de contadores com 3 cards */
.industrial-counters .counter-grid {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1080px) {
  .industrial-counters .counter-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 820px) {
  .industrial-counters .counter-grid {
    grid-template-columns: 1fr;
  }
}
