:root {
  --green: #00D084;
  --green-dark: #00A86A;
  --green-deep: #007D4F;
  --teal: #02616D;
  --ink: #0B1117;
  --ink-soft: #1A2128;
  --ink-mute: #4A5568;
  --line: rgba(11,17,23,0.08);
  --bg: #FAFAF7;
  --bg-soft: #F2F1ED;
  --white: #FFFFFF;
  --r: 6px;
  --maxw: 1280px;
  --pad: clamp(20px,4vw,48px);
  --t: .4s cubic-bezier(.22,1,.36,1);
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; transition: color var(--t); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

h1,h2,h3,h4 { font-family: 'Manrope', sans-serif; font-weight: 700; letter-spacing: -0.02em; line-height: 1.1; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }

/* Topbar */
.topbar {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  padding: 8px 0;
}
.topbar .container {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.topbar a { color: rgba(255,255,255,0.85); }
.topbar a:hover { color: var(--green); }
.topbar-info { display: flex; gap: 24px; flex-wrap: wrap; }
.topbar-info span::before { content: "·"; color: var(--green); margin-right: 8px; font-weight: 700; }

/* Header */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: padding var(--t), box-shadow var(--t);
}
.header .container {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 18px; padding-bottom: 18px; transition: padding var(--t);
}
.header.scrolled { box-shadow: 0 8px 32px rgba(0,0,0,0.06); }
.header.scrolled .container { padding-top: 12px; padding-bottom: 12px; }
.logo img { height: 56px; transition: height var(--t); }
.header.scrolled .logo img { height: 40px; }

.nav { display: flex; align-items: center; gap: 32px; }
.nav a {
  color: var(--ink-mute); font-size: 14px; font-weight: 500;
  position: relative; transition: color var(--t);
}
.nav a:hover, .nav a.active { color: var(--ink); }
.nav a.active { color: var(--green-deep); }
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: "▾"; font-size: 10px; margin-left: 4px; opacity: 0.6; }
.nav-dropdown:hover .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.submenu {
  position: absolute; top: 100%; left: -16px;
  background: white; border: 1px solid var(--line); border-radius: var(--r);
  padding: 12px 0; min-width: 280px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: var(--t); margin-top: 12px;
}
.submenu a { display: block; padding: 10px 20px; font-size: 14px; }
.submenu a:hover { background: var(--bg-soft); color: var(--green-deep); }

.cta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green); color: white;
  padding: 12px 22px; border-radius: var(--r);
  font-weight: 600; font-size: 14px;
  transition: var(--t); border: none;
}
.cta-btn:hover { background: var(--green-dark); color: white; transform: translateY(-1px); box-shadow: 0 8px 20px rgba(0,208,132,0.3); }
.cta-btn--ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.cta-btn--ghost:hover { background: var(--ink); color: white; border-color: var(--ink); box-shadow: none; }

.menu-toggle {
  display: none; background: none; border: none;
  width: 40px; height: 40px;
  flex-direction: column; gap: 5px;
  align-items: center; justify-content: center;
}
.menu-toggle span { width: 22px; height: 2px; background: var(--ink); transition: var(--t); }



/* Hero */
.hero {
  position: relative;
  background:
    radial-gradient(ellipse 900px 500px at 80% 20%, rgba(0,208,132,0.12), transparent 60%),
    radial-gradient(ellipse 700px 400px at 10% 80%, rgba(2,97,109,0.10), transparent 60%),
    linear-gradient(180deg, #eef2f4 0%, #dce4e8 100%);
  color: #0b0f10;
  padding: 100px 0 80px;
  overflow: hidden;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 600px 300px at 20% 30%, rgba(0,208,132,0.08), transparent 60%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; display: grid; grid-template-columns: 1.3fr 1fr; gap: 64px; align-items: center; }
.hero-eyebrow { display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--green); margin-bottom: 24px; }
.hero h1 {
  font-size: clamp(1.8rem, 3.2vw, 2.75rem); font-weight: 700;
  letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 18px;
}
.hero h1 em { font-style: normal; color: var(--green); }
.hero p {
  font-size: clamp(0.92rem, 1.1vw, 1.02rem); color: rgba(255,255,255,0.78);
  max-width: 56ch; margin-bottom: 28px; line-height: 1.6;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-actions .cta-btn { padding: 16px 28px; font-size: 15px; }
.hero-actions .cta-btn--ghost {
  background: rgba(255,255,255,0.06); color: white; border-color: rgba(255,255,255,0.2);
}
.hero-actions .cta-btn--ghost:hover { background: rgba(255,255,255,0.14); color: white; border-color: rgba(255,255,255,0.4); }
.hero-visual { display: flex; align-items: center; justify-content: center; position: relative; }
.hero-visual > img { width: 100%; max-width: 520px; filter: drop-shadow(0 24px 48px rgba(0,0,0,0.4)); }

/* Rotador de logos das marcas no hero (crossfade infinito, CSS puro,
   cada logo aparece numa posição diferente: topo-esq, centro, base-dir, etc.) */
.hero-logo-rotator {
  position: relative; width: 100%; max-width: 520px;
  aspect-ratio: 16 / 11; margin: 0 auto;
}
.hero-logo-rotator img {
  position: absolute;
  width: auto; height: auto; max-width: 80%; max-height: 54%;
  object-fit: contain; opacity: 0;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,0.12));
  animation: heroLogoCycle 16s infinite;
}
/* posições variadas por logo */
.hero-logo-rotator img:nth-child(1) { top: 4%;    left: 5%;              animation-delay: 0s;    } /* topo-esq */
.hero-logo-rotator img:nth-child(2) { inset: 0;   margin: auto;          animation-delay: 3.2s;  } /* centro */
.hero-logo-rotator img:nth-child(3) { bottom: 4%; right: 5%;             animation-delay: 6.4s;  } /* base-dir */
.hero-logo-rotator img:nth-child(4) { top: 5%;    right: 6%;             animation-delay: 9.6s;  } /* topo-dir */
.hero-logo-rotator img:nth-child(5) { bottom: 5%; left: 7%;              animation-delay: 12.8s; } /* base-esq */
@keyframes heroLogoCycle {
  0%   { opacity: 0; transform: scale(0.92); }
  3%   { opacity: 1; transform: scale(1); }
  20%  { opacity: 1; transform: scale(1); }
  24%  { opacity: 0; transform: scale(0.92); }
  100% { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-logo-rotator img { animation: none; position: absolute; inset: 0; margin: auto; }
  .hero-logo-rotator img:not(:first-child) { display: none; }
  .hero-logo-rotator img:first-child { opacity: 1; top: auto; left: auto; }
}
@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; gap: 32px; }
  .hero-visual { order: -1; }
  .hero-visual > img { max-width: 360px; margin: 0 auto; }
  .hero-logo-rotator { max-width: 360px; aspect-ratio: 16 / 9; }
}

/* Page hero (interna) */
.page-hero {
  background: linear-gradient(135deg, var(--ink) 0%, var(--teal) 100%);
  color: white;
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 600px 300px at 30% 30%, rgba(0,208,132,0.15), transparent 60%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-eyebrow {
  display: inline-block; font-size: 12px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--green); margin-bottom: 20px;
}
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 700;
  letter-spacing: -0.025em; line-height: 1.1;
  margin-bottom: 16px; max-width: 24ch;
}
.page-hero h1 em { font-style: normal; color: var(--green); }
.page-hero p { color: rgba(255,255,255,0.75); max-width: 60ch; font-size: 1.1rem; line-height: 1.6; }

/* Stats */
.stats {
  background: white; border-bottom: 1px solid var(--line); padding: 32px 0;
}
.stats .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; align-items: center; }
.stat { text-align: center; padding: 16px 24px; border-right: 1px solid var(--line); }
.stat:last-child { border-right: none; }
.stat-num {
  font-family: 'Manrope', sans-serif; font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800; color: var(--green-deep); line-height: 1; letter-spacing: -0.03em;
}
.stat-label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-mute); margin-top: 8px; font-weight: 600; }
@media (max-width: 768px) {
  .stats .container { grid-template-columns: 1fr 1fr; gap: 0; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); padding-bottom: 24px; }
  .stat:nth-child(2), .stat:nth-child(4) { border-right: none; }
  .stat:nth-child(3), .stat:nth-child(4) { padding-top: 24px; }
}

/* Sections */
section { padding: 100px 0; }
.section-eyebrow {
  display: block; font-size: 12px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--green-deep); margin-bottom: 16px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 700;
  letter-spacing: -0.025em; line-height: 1.1;
  margin-bottom: 16px; max-width: 28ch;
}
.section-title em { font-style: normal; color: var(--green-deep); }
.section-lede { font-size: 1.1rem; color: var(--ink-mute); line-height: 1.6; max-width: 60ch; }
.section-header { margin-bottom: 64px; max-width: 760px; }
.section-header.center { text-align: center; margin: 0 auto 64px; }
.section-header.center .section-title { max-width: 100%; }
.section-header.center .section-lede { margin: 0 auto; }

/* Catalogo section */
.cat-section { margin-bottom: 80px; }
.cat-section:last-child { margin-bottom: 40px; }
.cat-title {
  font-family: 'Manrope', sans-serif; font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700; letter-spacing: -0.02em;
  margin-bottom: 8px; color: var(--ink);
}
.cat-desc { color: var(--ink-mute); font-size: 1rem; margin-bottom: 32px; max-width: 60ch; }

/* Products */
.products {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1px;
  background: var(--line); border: 1px solid var(--line); border-radius: 12px; overflow: hidden;
}
.product-card {
  background: white; padding: 32px 28px;
  display: flex; flex-direction: column; gap: 14px;
  transition: background var(--t); position: relative;
}
.product-card:hover { background: var(--bg-soft); }
.product-card .badge {
  display: inline-block; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--green-deep); background: rgba(0,208,132,0.1);
  padding: 4px 10px; border-radius: 100px; width: fit-content;
}
.product-card img {
  width: 100%; height: 180px; object-fit: contain;
  background: linear-gradient(135deg, #f7f7f0 0%, #fafaf7 100%); border-radius: 8px;
}
.product-card h3 { font-size: 1.15rem; font-weight: 700; letter-spacing: -0.005em; }
.product-card p { font-size: 14px; color: var(--ink-mute); line-height: 1.5; flex: 1; }
.product-card a {
  font-size: 13px; font-weight: 600; color: var(--green-deep);
  display: inline-flex; align-items: center; gap: 6px; margin-top: auto;
}
.product-card a:hover { color: var(--green); }

/* Soluções */
.solutions {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px;
}
.solution {
  background: white; border: 1px solid var(--line); border-radius: 12px;
  padding: 36px 28px; transition: var(--t);
  display: flex; flex-direction: column; gap: 16px;
}
.solution:hover { border-color: var(--green); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,208,132,0.12); }
.solution-icon {
  width: 56px; height: 56px; border-radius: 12px;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  display: inline-flex; align-items: center; justify-content: center;
  color: white; font-size: 24px;
}
.solution h3 { font-size: 1.2rem; font-weight: 700; letter-spacing: -0.005em; }
.solution p { font-size: 14px; color: var(--ink-mute); line-height: 1.6; }
.solution a { margin-top: auto; font-size: 13px; font-weight: 600; color: var(--green-deep); display: inline-flex; align-items: center; gap: 6px; }

/* Brands */
.brands { background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.brands h3 {
  font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-mute);
  text-align: center; margin-bottom: 32px;
}
.brand-row {
  display: flex; flex-wrap: wrap; gap: 36px;
  justify-content: center; align-items: center;
}
.brand-row span {
  font-family: 'Manrope', sans-serif; font-weight: 700;
  font-size: clamp(1rem, 2vw, 1.4rem); color: var(--ink-mute);
  letter-spacing: -0.01em; opacity: 0.7;
  transition: var(--t); padding: 8px 16px;
}
.brand-row span:hover { opacity: 1; color: var(--green-deep); }
.brand-row img {
  height: 24px; width: auto; max-width: 100px; object-fit: contain;
  opacity: 0.85; transition: var(--t);
}
.brand-row img:hover { opacity: 1; }

/* Marquee de logos das marcas (rotação infinita) */
.brand-marquee {
  width: 100%; overflow: hidden; position: relative; padding: 8px 0;
  -webkit-mask-image: linear-gradient(to right, transparent 0, black 80px, black calc(100% - 80px), transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, black 80px, black calc(100% - 80px), transparent 100%);
}
.brand-track {
  display: flex; align-items: center; gap: 64px; width: max-content;
  animation: brand-scroll 28s linear infinite;
}
.brand-marquee:hover .brand-track { animation-play-state: paused; }
.brand-track img {
  height: 52px; width: auto; max-width: 180px; object-fit: contain;
  opacity: 1; flex-shrink: 0;
}
@keyframes brand-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 32px)); } /* metade + metade do gap */
}
@media (prefers-reduced-motion: reduce) {
  .brand-track { animation: none; flex-wrap: wrap; justify-content: center; }
}

/* Sobre */
.about-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center;
}
.about-grid img {
  width: 100%; border-radius: 12px; border: 1px solid var(--line);
  aspect-ratio: 5/4; object-fit: cover; background: var(--bg-soft);
}
.about-grid h2 { margin-bottom: 24px; }
.about-grid p { font-size: 1.05rem; line-height: 1.75; color: var(--ink-mute); margin-bottom: 16px; }
.about-grid p strong { color: var(--ink); }
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; gap: 32px; } }

/* Differentials */
.diffs {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; border-top: 1px solid var(--line); border-left: 1px solid var(--line);
}
.diff {
  background: white; padding: 36px 32px;
  border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.diff-num { font-family: 'Manrope', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 0.1em; color: var(--green-deep); margin-bottom: 12px; }
.diff h3 { font-size: 1.15rem; margin-bottom: 8px; }
.diff p { font-size: 0.95rem; color: var(--ink-mute); line-height: 1.6; }
@media (max-width: 768px) { .diffs { grid-template-columns: 1fr; } }

/* FAQ */
.faq-list { max-width: 900px; margin: 0 auto; }
.faq-item {
  background: white; border: 1px solid var(--line);
  border-radius: 8px; padding: 22px 28px;
  margin-bottom: 8px; transition: var(--t);
}
.faq-item[open] { background: var(--bg-soft); }
.faq-item summary {
  cursor: pointer; font-family: 'Manrope', sans-serif;
  font-weight: 600; font-size: 1.05rem; letter-spacing: -0.005em;
  color: var(--ink); list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-size: 1.5rem; font-weight: 300;
  color: var(--green-deep); transition: var(--t);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin-top: 14px; color: var(--ink-mute); line-height: 1.7; font-size: 0.96rem; }

/* CTA Final */
.cta-block { padding: 0 0 80px; }
.cta-final {
  background: linear-gradient(135deg, var(--ink) 0%, var(--teal) 100%);
  color: white; text-align: center; border-radius: 16px;
  padding: 80px 40px; margin: 0 var(--pad) 0;
  max-width: var(--maxw); margin-left: auto; margin-right: auto;
  position: relative; overflow: hidden;
}
.cta-final::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 600px 300px at 50% 0%, rgba(0,208,132,0.18), transparent 60%);
}
.cta-final > * { position: relative; z-index: 1; }
.cta-final h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; max-width: 26ch; margin-left: auto; margin-right: auto; }
.cta-final p { color: rgba(255,255,255,0.78); margin-bottom: 32px; max-width: 50ch; margin-left: auto; margin-right: auto; }
.cta-final-actions { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.cta-final-actions .cta-btn { padding: 16px 32px; font-size: 15px; }
.cta-final-actions .cta-btn--ghost {
  background: transparent; color: white; border-color: rgba(255,255,255,0.4);
}

/* Footer */
.footer { background: var(--ink); color: rgba(255,255,255,0.7); padding: 64px 0 24px; }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px;
}
.footer-col h4 {
  font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: white; margin-bottom: 20px;
}
.footer-col img { height: 48px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-col p, .footer-col a { font-size: 14px; line-height: 1.8; color: rgba(255,255,255,0.65); }
.footer-col a:hover { color: var(--green); }
.footer-col li { margin-bottom: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 12px; color: rgba(255,255,255,0.4);
}
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }

/* WhatsApp float */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 28px rgba(37,211,102,0.4); transition: var(--t);
}
.whatsapp-float:hover { transform: scale(1.1); color: white; }

/* Mobile */
@media (max-width: 768px) {
  section { padding: 60px 0; }
  .section-header { margin-bottom: 40px; }
  .hero { padding: 70px 0 60px; }
  .page-hero { padding: 60px 0 40px; }
}

/* Blog cards */
.blog-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px;
}
.blog-card {
  background: white; border: 1px solid var(--line); border-radius: 12px;
  overflow: hidden; transition: var(--t);
  display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); }
.blog-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; background: var(--bg-soft); }
.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.blog-card-tag { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--green-deep); }
.blog-card h3 { font-size: 1.1rem; font-weight: 700; letter-spacing: -0.005em; line-height: 1.3; }
.blog-card p { font-size: 14px; color: var(--ink-mute); line-height: 1.5; flex: 1; }
.blog-card-meta { font-size: 12px; color: var(--ink-mute); margin-top: auto; }

/* === Carrossel infinito de equipamentos === */
.carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 16px 0;
  -webkit-mask-image: linear-gradient(to right, transparent 0, black 80px, black calc(100% - 80px), transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, black 80px, black calc(100% - 80px), transparent 100%);
}
.carousel-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: scroll 60s linear infinite;
}
.carousel:hover .carousel-track {
  animation-play-state: paused;
}
.carousel-item {
  flex: 0 0 320px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
  box-shadow: 0 1px 2px rgba(0,0,0,0.03);
}
.carousel-item:hover {
  transform: translateY(-4px);
  border-color: var(--green);
  box-shadow: 0 16px 32px rgba(0,208,132,0.15);
}
.carousel-item .badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green-deep);
  background: rgba(0,208,132,0.1);
  padding: 4px 10px;
  border-radius: 100px;
  width: fit-content;
}
.carousel-item img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  background: linear-gradient(135deg, #f7f7f0 0%, #fafaf7 100%);
  border-radius: 8px;
}
.carousel-item h3 {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.005em;
}
.carousel-item p {
  font-size: 14px;
  color: var(--ink-mute);
  line-height: 1.5;
  flex: 1;
}
.carousel-item a {
  font-size: 13px;
  font-weight: 600;
  color: var(--green-deep);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}
.carousel-item a:hover { color: var(--green); }

@keyframes scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 12px)); } /* 50% pq duplicamos + metade do gap */
}

@media (max-width: 768px) {
  .carousel-item { flex: 0 0 280px; padding: 24px; }
  .carousel-track { animation-duration: 50s; }
}

@media (prefers-reduced-motion: reduce) {
  .carousel-track { animation: none; }
}

/* ============================================
   MOBILE — refinamentos finais (≤768px e ≤480px)
   ============================================ */

@media (max-width: 768px) {
  /* Carrossel — cards visíveis sem cortar */
  .carousel {
    padding: 16px 0;
    -webkit-mask-image: linear-gradient(to right, transparent 0, black 24px, black calc(100% - 24px), transparent 100%);
            mask-image: linear-gradient(to right, transparent 0, black 24px, black calc(100% - 24px), transparent 100%);
  }
  .carousel-track {
    gap: 16px;
    animation-duration: 45s;
  }
  .carousel-item {
    flex: 0 0 calc(85vw - 16px);
    max-width: 320px;
    padding: 22px;
    gap: 12px;
  }
  .carousel-item img { height: 140px; }
  .carousel-item h3 { font-size: 1.05rem; }
  .carousel-item p { font-size: 13px; }

  /* Hero stats grid mobile — 2 colunas */
  .stats .container { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); padding-bottom: 16px; }
  .stat:nth-child(2), .stat:nth-child(4) { border-right: none; }
  .stat:nth-child(3), .stat:nth-child(4) { padding-top: 16px; }

  /* Brand row mobile — gap menor */
  .brand-row { gap: 18px; }
  .brand-row span { font-size: 0.95rem; padding: 6px 10px; }

  /* Topbar mobile — empilha info */
  .topbar { font-size: 12px; padding: 6px 0; }
  .topbar .container { gap: 6px; justify-content: center; }
  .topbar-info { gap: 12px; }
  .topbar-info span::before { margin-right: 4px; }

  /* Hero mobile — botões empilhados */
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .cta-btn { justify-content: center; width: 100%; }

  /* CTA Final mobile */
  .cta-final { padding: 60px 24px; margin: 0 16px; border-radius: 12px; }
  .cta-final h2 { font-size: 1.6rem; }
  .cta-final p { font-size: 0.95rem; }
  .cta-final-actions { flex-direction: column; align-items: stretch; width: 100%; }
  .cta-final-actions .cta-btn { width: 100%; justify-content: center; }

  /* Page hero mobile */
  .page-hero { padding: 50px 0 40px; }
  .page-hero h1 { font-size: clamp(1.7rem, 7vw, 2.2rem); }
  .page-hero p { font-size: 0.98rem; }

  /* Diferenciais mobile — empilha 1 coluna */
  .diffs { grid-template-columns: 1fr; border-left: none; border-top: 1px solid var(--line); }
  .diff { border-right: none; border-bottom: 1px solid var(--line); padding: 28px 20px; }

  /* Catálogo mobile — products fica 1 coluna */
  .products { grid-template-columns: 1fr; }
  .product-card { padding: 24px 22px; }
  .product-card img { height: 160px; }

  /* About grid */
  .about-grid { gap: 32px; }

  /* Indústria 4.0 mobile — stats em 2 col */
  #industria-4 { padding: 60px 0 !important; }
  #industria-4 .about-grid { gap: 32px; }
  #industria-4 .about-grid > div:last-child { grid-template-columns: 1fr 1fr !important; }

  /* Galeria mobile */
  #galeria > div > div { grid-template-columns: 1fr 1fr !important; gap: 8px !important; }

  /* WhatsApp float menor em mobile */
  .whatsapp-float { width: 52px; height: 52px; bottom: 16px; right: 16px; }
  .whatsapp-float svg { width: 24px; height: 24px; }

  /* Footer mobile - 2 colunas pra economizar espaço */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-col:first-child { grid-column: 1 / -1; }
  .footer-col img { height: 36px; }
}

@media (max-width: 480px) {
  /* Cards do carrossel ainda menores */
  .carousel-item {
    flex: 0 0 calc(88vw - 16px);
    padding: 20px;
  }
  .carousel-item img { height: 130px; }

  /* Hero h1 menor */
  .hero { padding: 60px 0 50px; }
  .hero h1 { font-size: 1.9rem; line-height: 1.1; }

  /* Section padding mais apertado */
  section { padding: 50px 0; }
  .section-title { font-size: 1.55rem; }
  .section-header { margin-bottom: 32px; }

  /* Stats em 1 coluna em telas muito pequenas */
  .stats .container { grid-template-columns: 1fr; }
  .stat { border-right: none !important; border-bottom: 1px solid var(--line); padding: 16px 0; }
  .stat:last-child { border-bottom: none; }

  /* Indústria 4.0 stats em 1 col */
  #industria-4 .about-grid > div:last-child { grid-template-columns: 1fr !important; }

  /* Galeria 1 col */
  #galeria > div > div { grid-template-columns: 1fr !important; }

  /* Topbar — só whatsapp */
  .topbar-info { display: none; }
  .topbar .container { justify-content: center; }

  /* Footer 1 col */
  .footer-grid { grid-template-columns: 1fr; }
  .footer-col:first-child { grid-column: auto; }

  /* Header logo menor */
  .logo img { height: 44px; }
  .header.scrolled .logo img { height: 32px; }

  /* Brands */
  .brand-row span { font-size: 0.85rem; }
}

/* iOS — evita zoom no foco de inputs */
@media (max-width: 768px) {
  input, textarea, select { font-size: 16px !important; }
}

/* Touch — área mínima 44x44 para botões */
@media (hover: none) and (pointer: coarse) {
  .cta-btn, .nav a, .footer-col a, .product-card a, .carousel-item a, .solution a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
}

/* === Seletor de idioma === */
.topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 2px;
  border-radius: 6px;
  background: rgba(255,255,255,0.06);
}
.lang-switch button {
  appearance: none;
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.65);
  font: 600 11px/1 'Inter', system-ui, sans-serif;
  letter-spacing: 0.04em;
  padding: 5px 8px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 160ms ease;
}
.lang-switch button:hover {
  color: white;
  background: rgba(255,255,255,0.08);
}
.lang-switch button.is-active {
  color: var(--ink, #0b0f10);
  background: var(--green, #00d084);
}
@media (max-width: 768px) {
  .topbar-right {
    width: 100%;
    justify-content: space-between;
    gap: 8px;
  }
  .lang-switch button { padding: 4px 6px; font-size: 10px; }
}

/* WebPulso credit — logo branco */
.footer-credit {
  margin: 8px 0 0 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.04em;
}
.footer-credit a {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}
.footer-credit-logo {
  height: 18px;
  width: auto;
  opacity: 0.55;
  transition: opacity 200ms ease;
}
.footer-credit a:hover .footer-credit-logo { opacity: 0.95; }

/* Contato section */
.contact-section { padding: 60px 0 80px; background: #fafafa; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  align-items: start;
}
.contact-info h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--ink, #0b0f10);
}
.contact-info ul { list-style: none; padding: 0; margin: 0; }
.contact-info li { padding: 10px 0; border-bottom: 1px solid var(--line, #e5e7eb); font-size: 14px; }
.contact-info li:last-child { border-bottom: none; }
.contact-info strong { display: inline-block; min-width: 110px; color: var(--ink, #0b0f10); }
.contact-info a { color: var(--teal, #02616d); text-decoration: none; }
.contact-info a:hover { color: var(--green, #00d084); }

.contact-form {
  background: white;
  padding: 32px;
  border-radius: 12px;
  border: 1px solid var(--line, #e5e7eb);
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}
.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.contact-form label {
  display: block;
  margin-bottom: 16px;
}
.contact-form label > span {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(11,15,16,0.7);
  margin-bottom: 6px;
  text-transform: uppercase;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 16px;
  font-family: inherit;
  border: 1px solid var(--line, #e5e7eb);
  border-radius: 8px;
  background: white;
  color: var(--ink, #0b0f10);
  transition: border-color 200ms ease, box-shadow 200ms ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--green, #00d084);
  box-shadow: 0 0 0 3px rgba(0,208,132,0.12);
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form button[type="submit"] {
  margin-top: 8px;
  padding: 14px 28px;
  font-size: 15px;
  cursor: pointer;
  border: none;
}
.contact-form button[type="submit"]:disabled { opacity: 0.6; cursor: wait; }
.form-status {
  margin-top: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14px;
  display: none;
}
.form-status.is-success { display: block; background: rgba(0,208,132,0.12); color: #006d44; border: 1px solid rgba(0,208,132,0.3); }
.form-status.is-error   { display: block; background: rgba(239,68,68,0.10); color: #991b1b; border: 1px solid rgba(239,68,68,0.3); }
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-form .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; }
}

/* Final CTA com form embutido */
.cta-block {
  padding: 0 0 80px;
}
.cta-block > .container {
  background: linear-gradient(135deg, var(--ink, #0b0f10) 0%, var(--teal, #02616d) 100%);
  border-radius: 16px;
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
  color: white;
}
.cta-block > .container::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 700px 350px at 30% 0%, rgba(0,208,132,0.18), transparent 60%);
  pointer-events: none;
}
.cta-block > .container > * { position: relative; z-index: 1; }
.cta-block .cta-final-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: center;
}
.cta-final-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 12px;
  color: white;
}
.cta-final-text p {
  font-size: 1rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: 24px;
  line-height: 1.5;
}
.cta-final-channels {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cta-final-channel {
  display: inline-flex;
  flex-direction: column;
  padding: 12px 16px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  text-decoration: none;
  transition: all 200ms ease;
}
.cta-final-channel:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(0,208,132,0.4);
  transform: translateY(-1px);
}
.cta-final-channel-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 2px;
}
.cta-final-channel-value {
  font-size: 14px;
  font-weight: 600;
  color: white;
}
.contact-form--inline {
  background: rgba(255,255,255,0.05);
  padding: 24px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
}
.contact-form--inline .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.contact-form--inline label {
  display: block;
  margin-bottom: 12px;
}
.contact-form--inline label > span {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.7);
  margin-bottom: 4px;
  text-transform: uppercase;
}
.contact-form--inline input,
.contact-form--inline textarea {
  width: 100%;
  padding: 10px 12px;
  font-size: 14px;
  font-family: inherit;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 6px;
  background: rgba(255,255,255,0.06);
  color: white;
  transition: border-color 200ms ease, box-shadow 200ms ease, background 200ms ease;
}
.contact-form--inline input::placeholder,
.contact-form--inline textarea::placeholder { color: rgba(255,255,255,0.4); }
.contact-form--inline input:focus,
.contact-form--inline textarea:focus {
  outline: none;
  border-color: var(--green, #00d084);
  background: rgba(255,255,255,0.10);
  box-shadow: 0 0 0 2px rgba(0,208,132,0.18);
}
.contact-form--inline textarea { resize: vertical; min-height: 90px; }
.contact-form--inline button[type="submit"] {
  margin-top: 4px;
  padding: 13px 24px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  width: 100%;
  background: var(--green, #00d084);
  color: var(--ink, #0b0f10);
  border-radius: 8px;
  transition: background 200ms ease, transform 200ms ease;
}
.contact-form--inline button[type="submit"]:hover { background: #00f09a; transform: translateY(-1px); }
.contact-form--inline button[type="submit"]:disabled { opacity: 0.6; cursor: wait; transform: none; }
.contact-form--inline .form-status {
  margin: 10px 0 0;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 13px;
  display: none;
}
.contact-form--inline .form-status.is-success {
  display: block; background: rgba(0,208,132,0.15); color: #00d084;
  border: 1px solid rgba(0,208,132,0.35);
}
.contact-form--inline .form-status.is-error {
  display: block; background: rgba(239,68,68,0.12); color: #fca5a5;
  border: 1px solid rgba(239,68,68,0.3);
}
@media (max-width: 900px) {
  .cta-block .cta-final-grid { grid-template-columns: 1fr; gap: 32px; }
  .cta-block > .container { padding: 40px 24px; }
}
@media (max-width: 600px) {
  .contact-form--inline .form-row { grid-template-columns: 1fr; }
  .contact-form--inline { padding: 18px; }
}

/* Form embutido na CTA final */
.contact-form--inline {
  background: rgba(255,255,255,0.04);
  padding: 24px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
}
.contact-form--inline .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.contact-form--inline label {
  display: block;
  margin-bottom: 12px;
}
.contact-form--inline label > span {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 4px;
  text-transform: uppercase;
}
.contact-form--inline input,
.contact-form--inline textarea {
  width: 100%;
  padding: 10px 12px;
  font-size: 14px;
  font-family: inherit;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  background: rgba(255,255,255,0.04);
  color: white;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}
.contact-form--inline input:focus,
.contact-form--inline textarea:focus {
  outline: none;
  border-color: var(--green, #00d084);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 0 0 2px rgba(0,208,132,0.15);
}
.contact-form--inline textarea { resize: vertical; min-height: 90px; }
.contact-form--inline button[type="submit"] {
  margin-top: 4px;
  padding: 12px 24px;
  font-size: 14px;
  cursor: pointer;
  border: none;
  width: 100%;
}
.contact-form--inline button[type="submit"]:disabled { opacity: 0.6; cursor: wait; }
.contact-form--inline .form-status {
  margin: 10px 0 0;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 13px;
  display: none;
}
.contact-form--inline .form-status.is-success {
  display: block; background: rgba(0,208,132,0.15); color: #00d084;
  border: 1px solid rgba(0,208,132,0.3);
}
.contact-form--inline .form-status.is-error {
  display: block; background: rgba(239,68,68,0.12); color: #ef4444;
  border: 1px solid rgba(239,68,68,0.3);
}
@media (max-width: 900px) {
  .cta-block .cta-final-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 600px) {
  .contact-form--inline .form-row { grid-template-columns: 1fr; }
  .contact-form--inline { padding: 18px; }
}

/* Fix mobile overflow form */
@media (max-width: 768px) {
  .cta-block { padding: 0 16px 60px; }
  .cta-block > .container {
    padding: 32px 20px;
    margin: 0;
    width: 100%;
    max-width: 100%;
  }
  .cta-block .cta-final-grid { gap: 28px; }
  .contact-form--inline {
    padding: 16px;
    width: 100%;
    max-width: 100%;
  }
  .contact-form--inline input,
  .contact-form--inline textarea,
  .contact-form--inline button {
    box-sizing: border-box;
    max-width: 100%;
  }
  .cta-final-channel {
    max-width: 100%;
    overflow: hidden;
  }
  .cta-final-channel-value { word-break: break-word; }
}
@media (max-width: 480px) {
  .cta-block { padding: 0 12px 48px; }
  .cta-block > .container { padding: 24px 16px; border-radius: 12px; }
}

/* Backdrop */
.drawer-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(11,15,16,0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 9998;
  opacity: 0;
  transition: opacity 240ms ease;
}
.drawer-backdrop.open { display: block; opacity: 1; }

@media (max-width: 1024px) {
  .menu-toggle {
    display: flex !important;
    background: none;
    border: none;
    width: 44px;
    height: 44px;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    position: relative;
    padding: 0;
  }
  .menu-toggle span {
    width: 22px;
    height: 2px;
    background: #0b0f10;
    display: block;
    border-radius: 2px;
    transition: transform 240ms ease, opacity 240ms ease;
  }

  .nav {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(340px, 88vw);
    background: #ffffff;
    z-index: 9999;
    box-shadow: -16px 0 40px rgba(0,0,0,0.16);
    overflow-y: auto;
    overscroll-behavior: contain;
    box-sizing: border-box;
    flex-direction: column;
    align-items: stretch;
    padding: 0;
  }
  .nav.open { display: flex; animation: drawerSlide 280ms cubic-bezier(0.22, 1, 0.36, 1); }

  @keyframes drawerSlide {
    from { transform: translateX(100%); }
    to   { transform: translateX(0); }
  }

  /* Header do drawer (logo + X) */
  .drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(11,15,16,0.06);
  }
  .drawer-logo img {
    height: 36px;
    display: block;
  }
  .drawer-close {
    background: rgba(11,15,16,0.04);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #0b0f10;
    transition: background 200ms ease, color 200ms ease, transform 200ms ease;
  }
  .drawer-close:hover { background: rgba(11,15,16,0.08); transform: rotate(90deg); }
  .drawer-close:active { transform: rotate(90deg) scale(0.92); }

  /* Links principais */
  .nav.open > a,
  .nav.open > .nav-dropdown {
    padding: 0 24px;
  }
  .nav.open > a:not(.cta-btn) {
    display: flex;
    align-items: center;
    color: #0b0f10;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    padding: 16px 24px;
    border-bottom: 1px solid rgba(11,15,16,0.05);
    transition: background 180ms ease, color 180ms ease, padding 180ms ease;
  }
  .nav.open > a:not(.cta-btn):hover,
  .nav.open > a:not(.cta-btn):active,
  .nav.open > a:not(.cta-btn).active {
    background: rgba(0,208,132,0.06);
    color: #02616d;
    padding-left: 28px;
  }
  .nav.open > a.active::before {
    content: "";
    display: inline-block;
    width: 3px;
    height: 18px;
    background: #00d084;
    margin-right: 12px;
    border-radius: 2px;
    margin-left: -16px;
  }

  /* CTA dentro do drawer */
  .nav.open > a.cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 24px;
    padding: 14px 24px;
    background: #00d084;
    color: #ffffff !important;
    border-radius: 10px;
    border-bottom: none;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(0,208,132,0.25);
    transition: transform 200ms ease, box-shadow 200ms ease;
  }
  .nav.open > a.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,208,132,0.35);
  }

  /* Dropdown wrapper */
  .nav.open > .nav-dropdown {
    padding: 0;
    border-bottom: 1px solid rgba(11,15,16,0.05);
  }
  .nav.open .nav-dropdown > a {
    display: flex;
    align-items: center;
    color: rgba(11,15,16,0.5);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 22px 24px 8px;
    text-decoration: none;
    border-bottom: none;
  }
  .nav.open .nav-dropdown > a::after { display: none; }
  .nav.open .submenu {
    position: static;
    display: block;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    box-shadow: none;
    border: none;
    padding: 0 0 12px 0;
    margin: 0;
    min-width: 0;
  }
  .nav.open .submenu a {
    display: flex;
    align-items: center;
    padding: 12px 24px 12px 36px;
    font-size: 14px;
    color: #0b0f10;
    font-weight: 400;
    text-decoration: none;
    border-bottom: none;
    transition: background 180ms ease, color 180ms ease, padding 180ms ease;
  }
  .nav.open .submenu a:hover,
  .nav.open .submenu a:active {
    background: rgba(0,208,132,0.06);
    color: #02616d;
    padding-left: 40px;
  }

  /* Footer do drawer (info contato discreta) */
  .nav.open::after {
    content: "WhatsApp · (11) 91524-3894";
    display: block;
    padding: 20px 24px;
    margin-top: auto;
    font-size: 11px;
    color: rgba(11,15,16,0.4);
    text-align: center;
    border-top: 1px solid rgba(11,15,16,0.05);
    letter-spacing: 0.04em;
  }
}

@media (min-width: 1025px) {
  .menu-toggle { display: none !important; }
  .drawer-backdrop { display: none !important; }
  .drawer-header { display: none !important; }
}

/* === Mobile drawer — refined === */
.nav-toggle-cb { display: none !important; }

.drawer-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 9998;
  opacity: 0;
  transition: opacity 280ms ease;
}
.drawer-backdrop.open { display: block; opacity: 1; }

@media (max-width: 1024px) {
  .menu-toggle {
    display: flex !important;
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    position: relative;
    padding: 0;
  }
  .menu-toggle span {
    width: 20px;
    height: 1.5px;
    background: #0b0f10;
    display: block;
    border-radius: 2px;
  }

  .nav {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(360px, 92vw);
    background: #fafafa;
    z-index: 9999;
    box-shadow: -1px 0 0 rgba(0,0,0,0.04), -24px 0 60px rgba(0,0,0,0.12);
    overflow-y: auto;
    overscroll-behavior: contain;
    box-sizing: border-box;
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    font-family: 'Manrope', system-ui, sans-serif;
  }
  .nav.open {
    display: flex;
    animation: drawerSlide 360ms cubic-bezier(0.22, 1, 0.36, 1);
  }
  @keyframes drawerSlide {
    from { transform: translateX(100%); }
    to   { transform: translateX(0); }
  }

  /* Header drawer */
  .drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px 20px;
    background: #ffffff;
  }
  .drawer-logo img { height: 32px; display: block; }
  .drawer-close {
    background: transparent;
    border: none;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: rgba(11,15,16,0.55);
    transition: color 220ms ease, transform 220ms ease;
    padding: 0;
  }
  .drawer-close:hover { color: #0b0f10; }
  .drawer-close:active { transform: scale(0.92); }

  /* Reset filhos do nav (apaga estilos desktop) */
  .nav.open > * {
    border-bottom: none !important;
    border-top: none !important;
  }

  /* Container interno */
  .nav.open {
    background: #fafafa;
  }

  /* Links principais (Home, Catálogo, Sobre, Blog, FAQ) */
  .nav.open > a:not(.cta-btn) {
    display: flex;
    align-items: center;
    color: #1a1a1a;
    font-size: 17px;
    font-weight: 500;
    text-decoration: none;
    padding: 18px 28px;
    margin: 0;
    background: transparent;
    transition: background 200ms ease, color 200ms ease;
    letter-spacing: -0.01em;
    line-height: 1.3;
  }
  .nav.open > a:not(.cta-btn):hover,
  .nav.open > a:not(.cta-btn):active {
    background: #ffffff;
    color: #02616d;
  }
  .nav.open > a:not(.cta-btn).active {
    color: #02616d;
    background: #ffffff;
    font-weight: 600;
  }

  /* Dropdown "Soluções" — categoria com submenu */
  .nav.open > .nav-dropdown {
    background: transparent;
    margin: 0;
    padding: 0;
    border: none;
  }
  .nav.open .nav-dropdown > a {
    display: block;
    color: rgba(11,15,16,0.4);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 28px 28px 8px;
    text-decoration: none;
  }
  .nav.open .nav-dropdown > a::after { display: none; }
  .nav.open .submenu {
    position: static;
    display: block;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    box-shadow: none;
    border: none;
    padding: 0;
    margin: 0 0 8px;
    min-width: 0;
  }
  .nav.open .submenu a {
    display: flex;
    align-items: center;
    padding: 14px 28px;
    font-size: 15px;
    color: #1a1a1a;
    font-weight: 400;
    text-decoration: none;
    background: transparent;
    transition: background 200ms ease, color 200ms ease;
  }
  .nav.open .submenu a:hover,
  .nav.open .submenu a:active {
    background: #ffffff;
    color: #02616d;
  }

  /* CTA — Solicitar Orçamento */
  .nav.open > a.cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 24px 28px;
    padding: 16px 24px;
    background: #0b0f10;
    color: #ffffff !important;
    border-radius: 999px;
    border: none !important;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.02em;
    text-transform: none;
    box-shadow: 0 1px 2px rgba(0,0,0,0.06);
    transition: background 220ms ease, transform 220ms ease, box-shadow 220ms ease;
    text-decoration: none;
  }
  .nav.open > a.cta-btn:hover {
    background: #02616d;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(2,97,109,0.22);
  }

  /* Espaçador no final pra empurrar pro fim quando tiver espaço */
  .nav.open::after { display: none; }
}

@media (min-width: 1025px) {
  .menu-toggle { display: none !important; }
  .drawer-backdrop { display: none !important; }
  .drawer-header { display: none !important; }
}

/* === Legal page (privacidade) === */
.legal-section { padding: 60px 0 80px; background: #fafafa; }
.legal-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  align-items: start;
}
.legal-toc {
  position: sticky;
  top: 90px;
  background: white;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid var(--line, #e5e7eb);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.legal-toc h3 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(11,15,16,0.5);
  margin: 0 0 12px;
}
.legal-toc nav { display: flex; flex-direction: column; gap: 6px; }
.legal-toc nav a {
  font-size: 13px;
  color: var(--ink, #0b0f10);
  text-decoration: none;
  padding: 6px 8px;
  border-radius: 6px;
  transition: background 180ms ease, color 180ms ease;
}
.legal-toc nav a:hover { background: rgba(0,208,132,0.08); color: var(--teal, #02616d); }
.legal-content {
  background: white;
  padding: 40px 48px;
  border-radius: 12px;
  border: 1px solid var(--line, #e5e7eb);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  font-size: 15px;
  line-height: 1.7;
  color: #1a1a1a;
}
.legal-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink, #0b0f10);
  margin: 40px 0 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line, #e5e7eb);
  scroll-margin-top: 90px;
}
.legal-content h2:first-of-type { border-top: none; padding-top: 0; margin-top: 0; }
.legal-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink, #0b0f10);
  margin: 24px 0 12px;
}
.legal-content h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--teal, #02616d);
  margin: 0 0 10px;
}
.legal-content p { margin: 0 0 14px; }
.legal-content ul, .legal-content ol { margin: 0 0 16px; padding-left: 24px; }
.legal-content li { margin-bottom: 6px; }
.legal-content strong { color: var(--ink, #0b0f10); font-weight: 600; }
.legal-content a { color: var(--teal, #02616d); }
.legal-content a:hover { color: var(--green, #00d084); }

.legal-callout {
  background: rgba(0,208,132,0.06);
  border-left: 3px solid var(--green, #00d084);
  padding: 16px 20px;
  border-radius: 0 8px 8px 0;
  margin: 20px 0;
  font-size: 14px;
}
.legal-callout--warn {
  background: rgba(239,68,68,0.06);
  border-left-color: #ef4444;
}
.legal-callout strong { display: block; margin-bottom: 6px; }

.legal-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 16px 0 24px;
}
.legal-card {
  background: rgba(0,0,0,0.02);
  padding: 18px 20px;
  border-radius: 10px;
  border: 1px solid var(--line, #e5e7eb);
}
.legal-card ul { margin: 0; padding-left: 18px; font-size: 13px; }
.legal-card p { font-size: 13px; margin: 0; color: rgba(11,15,16,0.7); }

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
  font-size: 13px;
}
.legal-table th {
  background: rgba(0,0,0,0.03);
  padding: 10px 12px;
  text-align: left;
  font-weight: 600;
  border-bottom: 2px solid var(--line, #e5e7eb);
}
.legal-table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--line, #e5e7eb);
  vertical-align: top;
}

.legal-defs { margin: 16px 0; }
.legal-defs dt {
  font-weight: 700;
  color: var(--teal, #02616d);
  margin-top: 12px;
  font-size: 14px;
}
.legal-defs dd {
  margin: 4px 0 0 0;
  padding-left: 16px;
  font-size: 14px;
  color: rgba(11,15,16,0.75);
  border-left: 2px solid var(--line, #e5e7eb);
}

.legal-version {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--line, #e5e7eb);
  font-size: 13px;
  color: rgba(11,15,16,0.55);
  text-align: center;
}

@media (max-width: 900px) {
  .legal-grid { grid-template-columns: 1fr; gap: 24px; }
  .legal-toc { position: static; }
  .legal-content { padding: 24px 20px; }
  .legal-cards { grid-template-columns: 1fr; }
  .legal-table { font-size: 12px; }
  .legal-table th, .legal-table td { padding: 8px; }
}

/* === Mapa de cobertura GV === */
.gv-mapa-section {
  padding: 80px 0;
  background: #fafafa;
}
.gv-mapa-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.gv-mapa-header {
  text-align: center;
  margin-bottom: 40px;
}
.gv-mapa-header .section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green, #00d084);
  margin-bottom: 16px;
}
.gv-mapa-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  color: var(--ink, #0b0f10);
}
.gv-mapa-header h2 em {
  font-style: normal;
  color: var(--green, #00d084);
}
.gv-mapa-header p {
  max-width: 620px;
  margin: 0 auto;
  color: rgba(11,15,16,0.65);
  font-size: 1rem;
  line-height: 1.6;
}

#gv-map {
  height: 540px;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  border: 1px solid var(--line, #e5e7eb);
  background: #e8eef0;
  z-index: 1;
}

/* Pins customizados */
.gv-marker { background: transparent !important; border: none !important; }
.gv-pin {
  width: 22px; height: 22px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  border: 2px solid white;
}
.gv-pin--port {
  background: var(--green, #00d084);
}
.gv-pin--sede {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--ink, #0b0f10), var(--teal, #02616d));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(2,97,109,0.45), 0 0 0 4px rgba(0,208,132,0.25);
}
.gv-pin--sede svg {
  transform: rotate(45deg);
}

.leaflet-popup-content {
  font: 13px/1.5 'Manrope', system-ui, sans-serif !important;
  margin: 12px 14px !important;
}
.leaflet-popup-content strong { font-weight: 700; color: var(--ink, #0b0f10); }
.leaflet-popup-content-wrapper { border-radius: 8px !important; }

.gv-mapa-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.gv-map-stat {
  background: white;
  padding: 20px 16px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid var(--line, #e5e7eb);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.gv-map-stat strong {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: var(--green-deep, #02616d);
  letter-spacing: -0.02em;
}
.gv-map-stat span {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: rgba(11,15,16,0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}

@media (max-width: 768px) {
  .gv-mapa-section { padding: 56px 0; }
  #gv-map { height: 420px; }
  .gv-mapa-stats { grid-template-columns: 1fr; gap: 12px; }
  .gv-map-stat strong { font-size: 24px; }
}

/* Pin filial GV */
.gv-pin--filial {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, var(--teal, #02616d), var(--green, #00d084));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 12px rgba(2,97,109,0.4), 0 0 0 3px rgba(0,208,132,0.2);
  border: 2px solid white;
}
.gv-pin--filial svg { transform: rotate(45deg); }

/* Hero — cinza claro azulado: cores escuras */
.hero h1 { color: #0b0f10; }
.hero h1 em { color: var(--green-deep, #02616d); font-style: normal; }
.hero p {
  color: rgba(11,15,16,0.72) !important;
}
.hero-eyebrow {
  color: var(--green-deep, #02616d) !important;
  font-weight: 700;
}
.hero-actions .cta-btn--ghost {
  background: rgba(11,15,16,0.05) !important;
  color: #0b0f10 !important;
  border: 1px solid rgba(11,15,16,0.14) !important;
}
.hero-actions .cta-btn--ghost:hover {
  background: rgba(11,15,16,0.10) !important;
  border-color: rgba(0,208,132,0.5) !important;
}
.hero-actions .cta-btn:not(.cta-btn--ghost) {
  background: var(--ink, #0b0f10);
  color: #fff;
}
.hero-actions .cta-btn:not(.cta-btn--ghost):hover {
  background: var(--green-deep, #02616d);
  transform: translateY(-1px);
}

/* Hero particles canvas */
.hero { position: relative; isolation: isolate; }
.hero-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.hero > .container { position: relative; z-index: 2; }
.hero::before { z-index: 1; }
