:root {
  --bg: #f6f9fc;
  --bg-soft: #eaf1f8;
  --panel: rgba(255, 255, 255, 0.92);
  --panel-strong: #ffffff;
  --card: rgba(255, 255, 255, 0.92);
  --line: rgba(8, 21, 45, 0.1);
  --text: #10213f;
  --muted: #52627d;
  --brand: #bdd600;
  --brand-deep: #98ad00;
  --shadow: 0 1px 4px rgba(16, 33, 63, 0.05), 0 6px 18px rgba(16, 33, 63, 0.05);
  --radius: 10px;
  --radius-sm: 6px;
  --container: min(1160px, calc(100% - 2rem));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: #ffffff;
  overflow-x: hidden;
  width: 100%;
}

body.layout-home {
  min-height: 100vh;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  padding: 0.75rem 1rem;
  background: var(--brand);
  color: #07101f;
  border-radius: 999px;
  z-index: 100;
}

.skip-link:focus {
  top: 1rem;
}

.site-topbar {
  height: 8px;
  background: #ffffff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid var(--line);
}


.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 86px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: "Inter Tight", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 12px;
}

.brand-official {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  width: 100%;
}

.brand-official .brand-logo-official {
  width: 100%;
  max-width: none;
  height: auto;
  border-radius: 0;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.site-nav a:not(.button) {
  font-size: 0.85rem;
}

.site-nav a:not(.button) {
  color: var(--text);
  transition: color 0.25s ease;
}

.site-nav a:not(.button):hover,
.footer-socials a:hover {
  color: var(--brand);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  border-radius: 5px;
  padding: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #10213f;
  border-radius: 2px;
  flex-shrink: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 46px;
  padding: 0.75rem 1.3rem;
  border-radius: 5px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.button:hover {
  opacity: 0.88;
}

.button.primary {
  background: #b0c900;
  color: #0e1f00;
  box-shadow: none;
}

.button.primary:hover {
  background: #9db500;
  opacity: 1;
}

.button.ghost {
  border-color: rgba(16, 33, 63, 0.22);
  background: #ffffff;
  color: var(--text);
}

.button.ghost:hover {
  background: #f4f6f9;
  opacity: 1;
}

.nav-button {
  min-height: 44px;
}

.hero,
.section {
  padding: 4rem 0;
}

.hero-grid,
.hero-panel-grid,
.about-grid,
.process-grid,
.segment-grid,
.footer-grid,
.cta-panel,
.picker-grid,
.gallery-grid,
.equipment-grid,
.benefit-grid,
.advantage-grid {
  display: grid;
  gap: 1.5rem;
}

.hero-grid,
.about-grid,
.process-grid,
.segment-grid,
.footer-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero-copy h1,
.picker-hero h1 {
  margin: 0.5rem 0 1rem;
  font-family: "Inter Tight", sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.7rem);
  line-height: 0.96;
}

.lead,
.picker-hero p,
.section-copy p,
.section-heading p,
.cta-panel p,
.site-footer p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0;
  background: none;
  border-radius: 0;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--brand-deep);
  flex-shrink: 0;
}

.hero-actions,
.feature-inline,
.footer-socials,
.model-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  padding: 0;
  margin: 1.4rem 0 0;
  list-style: none;
}

.feature-inline li {
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  color: var(--muted);
}

.hero-visual,
.process-visual,
.impact-card,
.hero-panel-stats article,
.equipment-card,
.service-card,
.metric-card,
.model-card,
.cta-panel,
.trust-grid div {
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-visual,
.process-visual,
.equipment-card img,
.gallery-grid img {
  border-radius: var(--radius);
}

.hero-visual {
  position: relative;
  padding: 1.2rem;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(239, 245, 251, 0.96));
}

.hero-visual img {
  position: relative;
  z-index: 1;
}

.hero-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(189, 214, 0, 0.4);
}

.orbit-a {
  inset: 10% 4% auto auto;
  width: 220px;
  height: 220px;
}

.orbit-b {
  inset: auto auto 8% 2%;
  width: 140px;
  height: 140px;
}

.trust-band {
  padding: 0 0 2rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.trust-grid div,
.metric-card,
.service-card,
.impact-card,
.hero-panel-stats article,
.equipment-card,
.model-card {
  padding: 1.4rem;
  border-radius: 10px;
}

.trust-grid strong,
.metric-card strong,
.impact-card strong,
.hero-panel-stats strong {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 1.1rem;
  color: var(--brand);
}

.trust-grid span,
.metric-card span,
.impact-card p,
.hero-panel-stats span {
  color: var(--muted);
  line-height: 1.7;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 2rem;
}

.section-heading--wide {
  max-width: 860px;
}

.section-heading--wide h2 {
  font-size: clamp(1.7rem, 2.6vw, 2.5rem);
  line-height: 1.15;
}

.section h2,
.cta-panel h2 {
  margin: 0.5rem 0 0.8rem;
  font-family: "Inter Tight", sans-serif;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  font-weight: 700;
  line-height: 1.2;
}

.section-alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(234, 241, 248, 0.88));
}

.card-grid,
.advantage-grid,
.benefit-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* ── Quem Somos ─────────────────────────────────── */
.about-grid {
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 4rem;
}

.about-copy h2 {
  margin: 0.5rem 0 1rem;
  font-family: "Inter Tight", sans-serif;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  font-weight: 700;
  line-height: 1.2;
  color: #17305b;
}

.about-copy p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 0.8rem;
}

.about-right {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.about-facade {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center 60%;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(16, 33, 63, 0.12);
  display: block;
}

.about-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.about-metrics .metric-card strong {
  font-size: 1.8rem;
  font-family: "Inter Tight", sans-serif;
  color: var(--brand-deep);
}

@media (max-width: 860px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-facade {
    height: 220px;
  }
}

/* ── Diferenciais ───────────────────────────────── */
.section-dark {
  background: #17305b;
}

.section-dark .section-heading {
  margin-bottom: 3rem;
}

.eyebrow--light::before {
  background: var(--brand);
}

.eyebrow--light {
  color: rgba(255,255,255,0.55);
}

.heading-light {
  color: #ffffff !important;
}

.diferencial-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.diferencial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-top: 3px solid var(--brand);
  border-radius: 12px;
  padding: 2rem 1.6rem;
  transition: background 0.25s ease, transform 0.25s ease;
}

.diferencial-card:hover {
  background: rgba(255,255,255,0.09);
  transform: translateY(-4px);
}

.diferencial-icon {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: rgba(189,214,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  color: var(--brand);
}

.diferencial-card h3 {
  font-family: "Inter Tight", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.7rem;
}

.diferencial-card p {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  line-height: 1.75;
  margin: 0;
}

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

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

/* ── Segmentos ──────────────────────────────────── */
.segmentos-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.segmentos-head .section-copy {
  max-width: 520px;
}

.segmentos-head .section-copy h2 {
  margin: 0.5rem 0 0.8rem;
  font-family: "Inter Tight", sans-serif;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  font-weight: 700;
  line-height: 1.2;
  color: #17305b;
}

.segmentos-head .section-copy p {
  color: var(--muted);
  line-height: 1.8;
  margin: 0;
}

.segmentos-badges {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex-shrink: 0;
}

.segmentos-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.segmentos-badge--local {
  background: rgba(23,48,91,0.08);
  color: #17305b;
  border: 1px solid rgba(23,48,91,0.15);
}

.segmentos-badge--remote {
  background: rgba(176,201,0,0.12);
  color: #5a6b00;
  border: 1px solid rgba(176,201,0,0.3);
}

.segmentos-badge--export {
  background: rgba(0,136,176,0.10);
  color: #005a7a;
  border: 1px solid rgba(0,136,176,0.28);
}

.segmentos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.segmento-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.5rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.segmento-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(16,33,63,0.1);
  border-color: var(--brand-deep);
}

.segmento-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(23,48,91,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #17305b;
  transition: background 0.25s ease;
}

.segmento-card:hover .segmento-icon {
  background: rgba(176,201,0,0.15);
  color: #5a6b00;
}

.segmento-card span {
  font-family: "Inter Tight", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.01em;
}

@media (max-width: 860px) {
  .segmentos-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .segmentos-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

.service-card h3,
.equipment-card h3 {
  margin-top: 0;
  font-size: 1.15rem;
  text-align: center;
}

.availability-tags {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem;
  min-height: 26px;
  margin-top: auto;
  padding-top: 0.9rem;
  width: 100%;
}

.availability-tags span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.18rem 0.6rem;
  border-radius: 3px;
  background: transparent;
  border: 1px solid rgba(152, 173, 0, 0.35);
  color: var(--brand-deep);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: none;
  cursor: default;
}

.availability-tags span::before {
  content: '✓';
  font-size: 0.7rem;
}

.availability-space {
  min-height: 26px;
  margin-top: auto;
  padding-top: 0.9rem;
}

.service-card p,
.equipment-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
  text-align: center;
}

.metric-stack,
.card-grid,
.advantage-grid,
.benefit-grid {
  display: grid;
  gap: 1rem;
}

.metric-card strong {
  font-size: 2rem;
}

.process-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.4rem;
}

.process-list div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1rem 1.1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
}

.process-list strong {
  color: var(--brand);
}

.brand-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  align-items: center;
}

.brand-cloud span {
  padding: 0.4rem 1rem;
  border-radius: 0;
  border: none;
  border-right: 1px solid var(--line);
  background: none;
  color: var(--text);
  font-weight: 600;
  font-size: 0.92rem;
  line-height: 2;
}

.brand-cloud span:last-child {
  border-right: none;
}

.cta-support {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.cta-support-text h2 {
  font-family: "Inter Tight", sans-serif;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  color: #17305b;
  margin: 0.5rem 0 0.8rem;
}

.cta-support-text p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.cta-support-actions {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  align-items: center;
  justify-content: center;
}

.btn-support {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 1.1rem;
  border-radius: 8px;
  background: #17305b;
  color: #ffffff;
  text-decoration: none;
  transition: background 0.18s, transform 0.18s;
  border: none;
}

.btn-support:hover {
  background: #0f2345;
  transform: translateX(4px);
}

.btn-support--whatsapp {
  background: #1faa47;
}

.btn-support--whatsapp:hover {
  background: #198a3a;
}

.btn-support-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

.btn-support-icon svg {
  width: 20px;
  height: 20px;
}

.btn-support-label {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.btn-support-label strong {
  font-size: 0.92rem;
  font-weight: 700;
  display: block;
}

.btn-support-label small {
  font-size: 0.78rem;
  opacity: 0.75;
  display: block;
}

.support-brands {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.support-brands-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 1.4rem;
  text-align: center;
}

.support-brands-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.8rem;
  align-items: center;
}

.support-brands-grid img {
  width: 100%;
  height: 40px;
  object-fit: contain;
  object-position: center;
  filter: grayscale(0.2) opacity(0.8);
  transition: filter 0.22s ease, transform 0.22s ease;
  display: block;
}

.support-brands-grid img:hover {
  filter: grayscale(0) opacity(1);
  transform: scale(1.06);
}

@media (max-width: 980px) {
  .support-brands-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 760px) {
  .cta-support {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .support-brands-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.cta-panel {
  grid-template-columns: 1.1fr 1fr;
  padding: 2rem;
  border-radius: var(--radius);
  border-left: 4px solid #17305b;
  box-shadow: var(--shadow);
}

.lead-form {
  display: grid;
  gap: 0.9rem;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 5px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.98);
  color: var(--text);
}

.lead-form textarea {
  min-height: 140px;
  resize: vertical;
}

.brand-strip {
  padding: 1.6rem 0 0;
  background: #ffffff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.brand-strip-label {
  display: flex;
  justify-content: center;
  margin-bottom: 1.6rem;
}

.brand-strip-track-wrapper {
  overflow: hidden;
  width: 100%;
  padding-bottom: 1.6rem;
}

.brand-strip-track {
  display: flex;
  align-items: center;
  gap: 5rem;
  width: max-content;
  animation: brand-scroll 60s linear infinite;
  will-change: transform;
}

.brand-strip-track img {
  height: 57px;
  width: 208px;
  object-fit: contain;
  object-position: center;
  display: block;
  flex-shrink: 0;
  filter: none;
  opacity: 1;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.brand-strip-track img:hover {
  opacity: 0.8;
  transform: scale(1.05);
}

/* brand strip animado: scale visual */
.brand-strip-track img.brand-zoom {
  height: 68px !important;
  width: 250px !important;
}

/* grid suporte técnico e rodapé: altura maior */
.support-brands-grid img.brand-zoom {
  height: 48px !important;
}

@keyframes brand-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Notebook (<= 1100px) ──────────────────────────── */
@media (max-width: 1100px) {
  .site-nav {
    gap: 0.4rem;
  }
  .site-nav a:not(.button) {
    font-size: 0.8rem;
  }
  .layout-two .hero-panel-grid {
    width: calc(100% - 2rem);
  }
}

/* ── Tablet (<= 900px) ─────────────────────────────── */
@media (max-width: 900px) {
  .brand-strip-track img {
    height: 46px;
    width: 160px;
  }
  .brand-strip-track {
    gap: 3.5rem;
    animation-duration: 45s;
  }
  .support-brands-grid {
    grid-template-columns: repeat(5, 1fr);
  }
  .feat-card {
    grid-template-columns: 1fr;
  }
  .feat-carousel {
    height: 240px;
  }
  .hero-panel-grid {
    grid-template-columns: 1fr;
  }
  .cta-support {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ── Smartphone (<= 760px) ─────────────────────────── */
@media (max-width: 760px) {
  .site-header .container {
    padding: 0 1rem;
  }

  .brand-strip-track img {
    height: 32px;
    width: 90px;
  }
  .brand-strip-track {
    gap: 2rem;
    animation-duration: 28s;
  }
  .support-brands-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6rem;
  }
  .support-brands-grid img {
    height: 32px;
  }
  .support-brands-grid img.brand-zoom {
    height: 38px !important;
  }
  /* Label flutuante não sai da tela ao expandir */
  .support-float:hover {
    max-width: calc(100vw - 3rem);
  }
  /* Botão WhatsApp menor em mobile (o de suporte mantém a pílula da imagem correta) */
  .whatsapp-float {
    width: 50px;
    height: 50px;
  }
  /* Hero mais compacto */
  .layout-two .hero-panel-grid {
    padding: 2rem 1.25rem;
  }
  /* Equipamentos em coluna única */
  .equipment-grid-3 {
    grid-template-columns: 1fr;
  }
  /* Footer simplificado */
  .footer-grid {
    gap: 2rem;
  }
  /* Contatos empilhados — e-mail e links não saem mais da tela */
  .footer-contact-strip {
    flex-direction: column;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 0.7rem;
  }
  .footer-contact-strip a {
    white-space: normal;
    word-break: break-word;
    max-width: 100%;
  }
  /* Bloco de redes sociais alinhado à esquerda, igual ao restante */
  .footer-socials-block {
    align-items: flex-start;
    text-align: left;
  }
  .footer-socials-row {
    flex-wrap: wrap;
    gap: 0.8rem 1.4rem;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
    text-align: left;
  }
  .brand-strip-label {
    font-size: 0.65rem;
  }
}

/* ── Depoimentos (Google) ───────────────────────────── */
.depoimentos-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 2.5rem;
}
.depoimentos-head .eyebrow::before {
  margin-right: 0.5rem;
}
.depoimentos-widget {
  min-height: 120px;
}

/* ── Mapa / Como chegar ─────────────────────────────── */
.mapa-section {
  padding: 4rem 0;
  background: #ffffff;
  border-top: 1px solid var(--line);
}

.mapa-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3rem;
  align-items: center;
}

.mapa-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mapa-info h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--heading);
  margin: 0;
}

.mapa-info p {
  color: var(--text-muted);
  margin: 0;
}

.mapa-info address {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-style: normal;
  color: var(--text);
  line-height: 1.6;
  font-weight: 500;
}

.mapa-info address svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--brand);
}

.mapa-hours {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.mapa-hours strong {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}

.mapa-hours strong svg {
  flex-shrink: 0;
  color: var(--brand);
}

.mapa-hours ul {
  list-style: none;
  margin: 0;
  padding: 0 0 0 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.mapa-hours li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--muted);
}

.mapa-hours li span:first-child {
  font-weight: 600;
  color: var(--text);
}

.mapa-hours-closed {
  color: #b3261e;
  font-weight: 600;
}

.mapa-directions {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--brand);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.65rem 1.25rem;
  border-radius: 6px;
  text-decoration: none;
  align-self: flex-start;
  transition: opacity 0.2s;
}

.mapa-directions:hover {
  opacity: 0.88;
}

.mapa-embed {
  height: 380px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
}

.mapa-embed iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.mapa-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  cursor: pointer;
}

.mapa-embed {
  position: relative;
}

@media (max-width: 760px) {
  .mapa-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .mapa-embed {
    height: 260px;
  }
}

/* ── Footer ─────────────────────────────────────────── */
.site-footer {
  padding: 3.5rem 0 2rem;
  border-top: none;
  background: #12305b;
  color: rgba(255, 255, 255, 0.75);
}

/* ── Rodapé em colunas ──────────────────────────────── */
.footer-cols {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1.4fr;
  gap: 2.5rem;
}

.footer-brand-name {
  display: block;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
}

.footer-col--brand p {
  font-size: 0.92rem;
  line-height: 1.65;
  margin: 0 0 1.3rem;
  color: rgba(255, 255, 255, 0.72);
  max-width: 360px;
}

.footer-social-icons {
  display: flex;
  gap: 0.7rem;
}

.footer-social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  transition: background 0.18s ease, color 0.18s ease;
}

.footer-social-icons a:hover {
  background: var(--brand);
  color: #12305b;
}

.footer-social-icons svg {
  width: 17px;
  height: 17px;
}

.footer-col h3 {
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 1.2rem;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-col ul a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  transition: color 0.18s ease;
}

.footer-col ul a:hover {
  color: var(--brand);
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
}

.footer-contact-list a {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.18s ease;
}

.footer-contact-list a:hover {
  color: var(--brand);
}

.footer-contact-list svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--brand);
}

@media (max-width: 860px) {
  .footer-cols {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer-col--brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 520px) {
  .footer-cols {
    grid-template-columns: 1fr;
  }
}

.footer-socials {
  justify-content: flex-end;
  align-items: center;
  gap: 0.9rem;
}

.footer-socials-block {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  align-items: flex-end;
  text-align: right;
}

.footer-socials-block strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.1rem;
}

.footer-socials-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.2rem;
}

.footer-socials-row a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.84rem;
  color: var(--muted);
  transition: color 0.18s;
  white-space: nowrap;
}


.footer-socials-row a:hover {
  color: var(--text);
}

.support-float {
  position: fixed;
  left: 1.4rem;
  bottom: 1.4rem;
  z-index: 45;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  height: 58px;
  max-width: 58px;
  padding: 0 16px;
  border-radius: 29px;
  white-space: nowrap;
  background: #17305b;
  box-shadow: 0 0 0 0 rgba(189, 214, 0, 0.65);
  animation: support-pulse 2.6s ease-out infinite;
  will-change: box-shadow;
  transition: max-width 0.38s cubic-bezier(0.4, 0, 0.2, 1),
              background 0.18s ease;
  text-decoration: none;
}

.support-float:hover {
  max-width: 340px;
  background: #0f2345;
  animation-play-state: paused;
}

.support-float-icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  display: block;
}

.support-float-label {
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 400;
  white-space: nowrap;
  max-width: 0;
  overflow: hidden;
  opacity: 0;
  margin-left: 0;
  transition: max-width 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.22s ease 0.1s,
              margin-left 0.35s ease;
}

.support-float:hover .support-float-label {
  max-width: 260px;
  opacity: 1;
  margin-left: 0.65rem;
}

@keyframes support-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(189, 214, 0, 0.7); }
  70%  { box-shadow: 0 0 0 20px rgba(189, 214, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(189, 214, 0, 0); }
}

.whatsapp-float {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 45;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  animation: wa-pulse 2.2s ease-out infinite;
  transition: background 0.18s ease, transform 0.18s ease;
}

.whatsapp-float:hover {
  background: #1da851;
  transform: scale(1.06);
  animation-play-state: paused;
}

@keyframes wa-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55); }
  70%  { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-float svg {
  position: relative;
  z-index: 1;
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  display: block;
}

.model-picker {
  position: relative;
  width: var(--container);
  margin: 0 auto;
  padding: 4rem 0 5rem;
}

.ambient-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(16, 33, 63, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 33, 63, 0.05) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at center, black 48%, transparent 88%);
  pointer-events: none;
}

.picker-hero,
.model-card {
  position: relative;
}

.picker-hero {
  max-width: 760px;
  padding: 3rem 0;
}

.picker-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.model-tag {
  color: var(--brand);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.model-card h2 {
  font-size: 1.4rem;
}

.model-points {
  flex-direction: column;
  gap: 0.55rem;
  color: var(--muted);
}

.hero-panel-grid {
  grid-template-columns: 1.3fr 0.8fr;
  align-items: center;
}

.layout-two .site-header {
  background: #15345f;
  border-bottom-color: rgba(16, 33, 63, 0.14);
  overflow: hidden;
}

.layout-two .site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: none;
  z-index: 0;
}

.layout-two .site-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 28px 28px, 28px 28px;
  mask-image: linear-gradient(90deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.15) 45%, rgba(0,0,0,0.72) 100%);
  -webkit-mask-image: linear-gradient(90deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.15) 45%, rgba(0,0,0,0.72) 100%);
  z-index: 0;
}

.layout-two .nav-shell {
  min-height: 102px;
  display: grid;
  grid-template-columns: minmax(256px, 336px) auto;
  align-items: center;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0 2.5rem;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}

.layout-two .brand-official {
  padding: 0.9rem 1.25rem;
  border-radius: 6px;
  background: transparent;
  box-shadow: none;
  max-width: 336px;
}

.layout-two .site-nav a:not(.button) {
  color: #ffffff;
}

.layout-two .nav-button {
  background: #b0c900;
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 0 0 0 rgba(176, 201, 0, 0.55);
  animation: nav-pulse 2.4s ease-out infinite;
}

.layout-two .nav-button:hover {
  background: #9db500;
  opacity: 1;
  animation-play-state: paused;
}

@keyframes nav-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(176, 201, 0, 0.55); }
  70%  { box-shadow: 0 0 0 8px rgba(176, 201, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(176, 201, 0, 0); }
}

.layout-two .hero-panel {
  background: #ffffff;
  padding-top: 1.2rem;
  padding-bottom: 2.5rem;
}

.layout-two .hero-panel-grid {
  width: min(1380px, calc(100% - 2rem));
  margin-left: auto;
  margin-right: auto;
  padding: 3rem 2.5rem;
  border-radius: calc(var(--radius) + 6px);
  background: #12305b;
  box-shadow: 0 24px 60px rgba(18, 48, 91, 0.18);
  position: relative;
  overflow: hidden;
}

/* Decoração sutil no lado direito */
.layout-two .hero-panel-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(90deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.5) 100%);
  -webkit-mask-image: linear-gradient(90deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.5) 100%);
  pointer-events: none;
  z-index: 0;
}

/* Remove o painel branco */
.layout-two .hero-panel-grid::after {
  display: none;
}

.layout-two .hero-panel-copy h1,
.layout-two .hero-panel-copy .lead {
  color: #ffffff;
}

.layout-two .hero-panel-copy .eyebrow {
  color: rgba(215, 239, 43, 0.9);
  font-size: 0.88rem;
}

.layout-two .hero-panel-copy .eyebrow::before {
  background: rgba(215, 239, 43, 0.7);
}

.layout-two .hero-panel-copy,
.layout-two .hero-panel-stats {
  position: relative;
  z-index: 1;
}

.layout-two .hero-panel-stats article {
  background: rgba(255, 255, 255, 0.05);
  border: none;
  border-left: 2px solid var(--brand);
  border-bottom: 2px solid var(--brand);
  border-radius: 0 6px 6px 6px;
  padding: 0.9rem 1.1rem;
  box-shadow: none;
  position: relative;
  overflow: visible;
  backdrop-filter: blur(4px);
}

.layout-two .hero-panel-stats strong {
  color: #ffffff;
  font-size: 1rem;
}

.layout-two .hero-panel-stats span {
  color: #ffffff;
  font-size: 0.88rem;
}


.layout-two .section-alt {
  background: #f5f7fa;
}

.layout-two .section-heading h2,
.layout-two .section-copy h2,
.layout-two .cta-panel h2 {
  color: #17305b;
}

.layout-two .service-card,
.layout-two .cta-panel {
  background: #ffffff;
}

.layout-two .equipment-card {
  background: #ffffff;
  border-top: 3px solid #17305b;
}

.layout-two .equipment-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 24px rgba(16, 33, 63, 0.1);
}

.layout-two .brand-cloud span {
  color: #17305b;
  border-right-color: rgba(23, 48, 91, 0.15);
}

.layout-two .site-footer {
  background: #12305b;
}

.layout-two .nav-toggle {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

.layout-two .nav-toggle span {
  background: #ffffff;
}

.layout-two .advantage-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}


.layout-two .hero-panel-copy .button.ghost {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.layout-two .hero-panel-copy .button.ghost:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.45);
}

.card-icon {
  width: 40px;
  height: 40px;
  display: block;
  margin-bottom: 0.9rem;
  color: var(--brand-deep);
  flex-shrink: 0;
}

.service-card {
  transition: border-top-color 0.2s ease;
}

.layout-two .service-card {
  background: transparent;
  border: none;
  border-top: 2px solid var(--line);
  border-radius: 0;
  box-shadow: none;
  padding: 1.4rem 0 1.4rem 0;
}

.layout-two .service-card:hover {
  border-top-color: var(--brand-deep);
  transform: none;
}

.layout-two .service-card h3 {
  color: #17305b;
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.card-num {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #ffffff;
  background: #17305b;
  padding: 0.18rem 0.5rem;
  border-radius: 3px;
  margin-bottom: 0.75rem;
  font-family: "Inter Tight", sans-serif;
}

.footer-contact-strip {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  align-items: center;
  margin-top: 0.6rem;
}

.footer-contact-strip a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--muted);
  font-size: 0.82rem;
  white-space: nowrap;
  transition: color 0.22s ease;
  flex-shrink: 0;
}

.footer-contact-strip a:hover {
  color: var(--brand-deep);
}

.footer-contact-strip svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-bottom {
  margin-top: 2.8rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.82rem;
}

.equipment-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.equipment-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 2.5rem;
}

.equipment-grid-3 .equipment-card {
  border-top: 3px solid #17305b;
}

.equipment-grid-3 .equipment-card img {
  aspect-ratio: 4 / 3;
  object-fit: contain;
  object-position: center;
  background: #ffffff;
  cursor: zoom-in;
  transition: opacity 0.2s ease;
}

.equipment-grid-3 .equipment-card img:hover {
  opacity: 0.88;
}

.sommalabel-img {
  aspect-ratio: 4 / 3;
  background: #ffffff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  border-bottom: 1px solid var(--line);
  padding: 1.2rem;
}

.sommalabel-img img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  flex-shrink: 0;
  background: transparent;
  aspect-ratio: auto;
  border-radius: 0;
}

.sommalabel-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 0.15rem;
}

.sommalabel-wordmark span {
  font-family: "Inter Tight", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
}

.sommalabel-wordmark span:first-child {
  color: #17305b;
}

.sommalabel-wordmark span:last-child {
  color: var(--brand-deep);
}

/* ── Aplicador wide card ─────────────────────────────────────── */
.aplicador-wide {
  padding: 0;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.aplicador-wide-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  align-items: stretch;
  min-height: 384px;
}

.aplicador-wide .feat-carousel {
  border-radius: 0;
  height: 100%;
  min-height: 336px;
  background: #ffffff;
}

.aplicador-wide-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.aplicador-wide-info h3 {
  font-family: "Inter Tight", sans-serif;
  font-size: 1.05rem;
  color: #17305b;
  margin: 0 0 0.2rem;
  text-align: left;
}

.aplicador-wide-info > p {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
  text-align: left;
}

.aplicador-specs {
  list-style: none;
  padding: 0;
  margin: 0.3rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.22rem;
}

.aplicador-specs li {
  font-size: 0.8rem;
  color: var(--text);
  padding-left: 0.85rem;
  position: relative;
}

.aplicador-specs li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand-deep);
}

.aplicador-nota {
  font-size: 0.78rem;
  color: var(--muted);
  font-style: italic;
  line-height: 1.5;
  margin: 0.3rem 0 0;
}

.aplicador-wide .card-actions {
  margin-top: auto;
  justify-content: center;
}

@media (max-width: 900px) {
  .aplicador-wide-inner {
    grid-template-columns: 1fr;
  }
  .aplicador-wide .feat-carousel {
    height: 288px;
  }
}

/* ── Feature block (Aplicadores) ─ Opção C: ficha de produto ── */
.feat-block {
  background: #f5f7fb;
  border-radius: 10px;
  border: 1px solid var(--line);
  border-top: 3px solid #17305b;
  padding: 2rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow);
}

.feat-block .eyebrow {
  color: var(--muted);
}
.feat-block .eyebrow::before {
  background: var(--brand-deep);
}

.feat-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.feat-head h2 {
  color: #17305b;
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  margin: 0.4rem 0 0;
}

.feat-see-all {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
  transition: color 0.18s;
}
.feat-see-all:hover { color: #17305b; }

.feat-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

.feat-carousel {
  position: relative;
  height: 100%;
  min-height: 260px;
  border-radius: 8px;
  overflow: hidden;
  background: #0f2345;
}

.feat-carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.feat-carousel-track img {
  min-width: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  flex-shrink: 0;
  aspect-ratio: auto !important;
  border-radius: 0;
  filter: none;
}

.feat-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #17305b;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: background 0.18s ease, transform 0.18s ease;
  padding: 0;
}

.feat-arrow:hover {
  background: #ffffff;
  transform: translateY(-50%) scale(1.08);
}

.feat-arrow--prev { left: 0.7rem; }
.feat-arrow--next { right: 0.7rem; }

.feat-dots {
  position: absolute;
  bottom: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.45rem;
  align-items: center;
}

.feat-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transition: background 0.22s ease, transform 0.22s ease;
  display: block;
}

.feat-dots span.is-active {
  background: #ffffff;
  transform: scale(1.25);
}

.feat-info {
  background: #ffffff;
  border-radius: 8px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
}

.feat-specs-group {
  margin-bottom: 1.3rem;
}

.feat-specs-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #17305b;
  margin-bottom: 0.5rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--line);
}

.feat-specs {
  list-style: none;
  padding: 0;
  margin: 0 0 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
}

.feat-specs li {
  color: var(--text);
  font-size: 0.82rem;
  padding-left: 0.95rem;
  position: relative;
}

.feat-specs li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand-deep);
}

.feat-specs-note {
  font-size: 0.8rem;
  color: var(--muted);
  font-style: italic;
  line-height: 1.5;
  margin: 0.4rem 0 0;
  padding-left: 0;
}

.feat-btns {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 1.2rem;
  justify-content: center;
}

.feat-btn-primary {
  display: inline-flex;
  align-items: center;
  background: var(--brand);
  color: #0e1800;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.68rem 1.3rem;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  transition: background 0.18s;
  text-decoration: none;
}
.feat-btn-primary:hover { background: var(--brand-deep); }

.feat-btn-ghost {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--text);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.66rem 1.2rem;
  border-radius: 5px;
  border: 1px solid var(--line);
  transition: border-color 0.18s, background 0.18s;
  text-decoration: none;
}
.feat-btn-ghost:hover {
  border-color: #17305b;
  background: #f4f7fb;
}

.feat-btn-green {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #b0c900;
  color: #0e1f00;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.72rem 1.6rem;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  transition: background 0.18s;
  text-decoration: none;
  min-height: 46px;
}
.feat-btn-green:hover { background: #9db500; }

@media (max-width: 980px) {
  .feat-card { grid-template-columns: 1fr; }
  .feat-mosaic { height: 220px; }
}

/* ── fim feature block ──────────────────────────────────────── */

.equip-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.equip-section-head h3 {
  font-family: "Inter Tight", sans-serif;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  color: #17305b;
  margin: 0.3rem 0 0;
}

.equip-see-all {
  font-size: 0.85rem;
  font-weight: 600;
  color: #17305b;
  white-space: nowrap;
  transition: color 0.18s;
}

.equip-see-all:hover {
  color: var(--brand-deep);
}

.card-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.9rem;
  padding-top: 0.8rem;
  border-top: 1px solid var(--line);
}

.btn-card-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: #17305b;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.5rem 0.9rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background 0.18s;
  white-space: nowrap;
}

.btn-card-primary:hover { background: #0f2345; }

.btn-card-ghost {
  display: inline-flex;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.48rem 0.85rem;
  border-radius: 4px;
  border: 1px solid var(--line);
  color: var(--muted);
  background: transparent;
  transition: border-color 0.18s, color 0.18s;
  white-space: nowrap;
}

.btn-card-ghost:hover { border-color: #17305b; color: #17305b; }

.btn-card-video {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  margin-top: 0.6rem;
  padding: 0.5rem 0.9rem;
  border-radius: 4px;
  border: 1px solid rgba(23, 48, 91, 0.2);
  background: transparent;
  color: #17305b;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
  font: inherit;
}

.btn-card-video:hover {
  background: #17305b;
  color: #ffffff;
  border-color: #17305b;
}

/* Modal de vídeo */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 210;
  background: rgba(7, 16, 31, 0.92);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.video-modal.is-open {
  opacity: 1;
  pointer-events: all;
}

.video-modal-frame {
  position: relative;
  width: min(90vw, 820px);
  border-radius: 10px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.55);
  transform: scale(0.95);
  transition: transform 0.28s ease;
}

.video-modal.is-open .video-modal-frame {
  transform: scale(1);
}

.video-modal-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

.video-modal-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.video-modal-close {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  z-index: 1;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.18s, transform 0.18s;
}

.video-modal-close:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: rotate(90deg);
}

@media (max-width: 980px) {
  .equipment-grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .equipment-grid-3 {
    grid-template-columns: 1fr;
  }

  .availability-tags {
    justify-content: center;
  }
}


.hero-panel-stats {
  display: grid;
  gap: 1rem;
}

.equipment-card {
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
}

.equipment-card img {
  aspect-ratio: 4 / 3;
  object-fit: contain;
  object-position: center;
  background: #ffffff;
}

.equipment-card div {
  padding: 1.3rem;
}

.equipment-card .aplicador-wide-inner,
.equipment-card .feat-carousel,
.equipment-card .feat-carousel-track {
  padding: 0;
}

.equipment-grid-3 .equipment-card > div {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  background: #ffffff;
}

.equipment-grid-3 .equipment-card h3 {
  min-height: 2.8em;
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.equipment-card--reader h3,
.equipment-card--collector h3,
.equipment-card--collector-robust h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 3em;
  font-family: "Inter Tight", sans-serif;
  font-size: clamp(1.28rem, 1.45vw, 1.45rem);
  font-weight: 800;
  line-height: 1.18;
  color: #10213f;
}

.equipment-grid-3 .equipment-card p {
  min-height: 5.1em;
}

.equipment-card--reader img,
.equipment-card--collector img,
.equipment-card--collector-robust img {
  height: 300px;
  aspect-ratio: auto;
  padding: 1.2rem;
  object-fit: contain;
  object-position: center;
  position: relative;
  z-index: 0;
}

.equipment-card--reader img {
  transform: scale(1.08);
}

.equipment-card--collector img {
  transform: scale(1.16);
}

.equipment-card--collector-robust img {
  transform: scale(0.94);
}

.equipment-card--mosaic {
  padding: 0;
}

.equipment-card--mosaic > div {
  padding: 1.1rem 1.4rem 1.4rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.card-specs {
  margin-top: 0.9rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
}

.card-specs-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #17305b;
  margin-bottom: 0.5rem;
}

.card-specs-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.22rem;
}

.card-specs-list li {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  font-size: 0.8rem;
  color: var(--text);
  line-height: 1.5;
}

.card-specs-list li::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand-deep);
  flex-shrink: 0;
  margin-top: 0.35em;
}

.card-specs-note {
  margin: 0.55rem 0 0;
  font-size: 0.77rem;
  color: var(--muted);
  line-height: 1.5;
  font-style: italic;
}

.card-cta {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.6rem;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
  width: 100%;
}

.btn-store {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.15rem;
  border-radius: 5px;
  background: #17305b;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.88rem;
  transition: background 0.18s ease;
  box-shadow: none;
  border: none;
  cursor: pointer;
}

.btn-store:hover {
  background: #0f2345;
}

.btn-store svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.card-mosaic {
  position: relative;
  height: clamp(220px, 32vw, 320px);
  overflow: hidden;
  background: #ffffff;
  border-radius: 10px 10px 0 0;
}

.card-mosaic img {
  position: absolute;
  object-fit: cover;
  object-position: center center;
  aspect-ratio: auto !important;
  border-radius: 5px;
  display: block;
  background: #ffffff;
  transition: transform 0.45s ease, box-shadow 0.3s ease;
  will-change: transform;
  cursor: zoom-in;
}

/* Imagem grande à esquerda */
.card-mosaic img:nth-child(1) {
  left: 6px;
  top: 6px;
  bottom: 0;
  width: calc(62% - 9px);
  height: calc(100% - 6px);
  object-position: center 40%;
}

/* Imagens da direita com margem de 12px na borda direita */
.card-mosaic img:nth-child(2) {
  left: calc(62% + 3px);
  right: 12px;
  top: 6px;
  height: calc(50% - 9px);
  width: calc(38% - 15px);
  box-shadow: inset -3px 0 0 0 var(--brand-deep);
}

.card-mosaic img:nth-child(3) {
  left: calc(62% + 3px);
  right: 12px;
  bottom: 0;
  height: calc(50% - 3px);
  width: calc(38% - 15px);
  box-shadow: inset -3px 0 0 0 var(--brand-deep);
}

.card-mosaic img:hover {
  transform: scale(1.04);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  z-index: 1;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(7, 16, 31, 0.9);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: all;
}

.lightbox-frame {
  position: relative;
  background: #ffffff;
  border-radius: 8px;
  padding: 1rem 1rem 1.2rem;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.45);
  transform: scale(0.95);
  transition: transform 0.28s ease;
  max-width: min(86vw, 740px);
  width: min(86vw, 740px);
}

.lightbox.is-open .lightbox-frame {
  transform: scale(1);
}

.lightbox-img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox-close {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(16, 33, 63, 0.07);
  border: 1px solid rgba(16, 33, 63, 0.12);
  color: #10213f;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  padding: 0;
  z-index: 1;
}

.lightbox-close:hover {
  background: rgba(16, 33, 63, 0.13);
  transform: rotate(90deg);
}

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

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.18s ease, transform 0.18s ease;
  flex-shrink: 0;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.26);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-nav--prev { left: 1.5rem; }
.lightbox-nav--next { right: 1.5rem; }

@media (max-width: 600px) {
  .lightbox-nav--prev { left: 0.5rem; }
  .lightbox-nav--next { right: 0.5rem; }
}

@media (max-width: 980px) {
  .card-mosaic {
    height: clamp(160px, 40vw, 240px);
  }
}

@keyframes mosaic-enter {
  from {
    opacity: 0;
    transform: scale(1.05);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.reveal.is-visible .card-mosaic img:nth-child(1) {
  animation: mosaic-enter 0.65s ease forwards;
}

.reveal.is-visible .card-mosaic img:nth-child(2) {
  opacity: 0;
  animation: mosaic-enter 0.65s 0.14s ease forwards;
}

.reveal.is-visible .card-mosaic img:nth-child(3) {
  opacity: 0;
  animation: mosaic-enter 0.65s 0.28s ease forwards;
}

.btn-quote {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.15rem;
  border-radius: 5px;
  background: #b0c900;
  color: #0e1f00;
  font-weight: 700;
  font-size: 0.88rem;
  transition: background 0.18s ease;
  box-shadow: none;
  border: none;
  cursor: pointer;
}

.btn-quote:hover {
  background: #9db500;
}

.btn-quote svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-impact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: center;
}

.impact-card {
  border-radius: 30px;
  padding: 2rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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


@media (max-width: 980px) {
  .hero-grid,
  .hero-panel-grid,
  .about-grid,
  .process-grid,
  .segment-grid,
  .footer-grid,
  .cta-panel,
  .hero-impact-grid,
  .picker-grid,
  .trust-grid,
  .card-grid,
  .advantage-grid,
  .benefit-grid,
  .equipment-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .footer-socials {
    justify-content: flex-start;
  }

  .layout-two .hero-panel-grid {
    background: #12305b;
  }

  .layout-two .hero-panel-grid::after {
    display: none;
  }
}

@media (max-width: 760px) {
  .layout-two .site-header::before,
  .layout-two .site-header::after {
    width: 100%;
    left: 0;
    right: 0;
  }

  .layout-two .site-header::after {
    width: 100%;
    background-size: auto, 18px 18px, 18px 18px;
    opacity: 0.28;
  }

  .brand-logo-official {
    width: 100%;
  }

  .layout-two .nav-shell {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 0 1rem;
    min-height: unset;
  }

  .layout-two .brand-official {
    padding: 0.7rem 0;
    max-width: min(208px, 58vw);
    flex: 1;
  }

  .layout-two .site-header {
    overflow: visible;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: static;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.5rem 0 1rem;
    gap: 0.25rem;
    order: 3;
  }

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

  .site-nav a:not(.button) {
    padding: 0.75rem 0.75rem;
    border-radius: 6px;
    font-size: 0.95rem !important;
    color: #ffffff !important;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .site-nav a:not(.button):last-of-type {
    border-bottom: none;
  }

  .site-nav a:not(.button):hover {
    background: rgba(255,255,255,0.1);
  }

  .site-nav .nav-button {
    margin-top: 0.5rem;
    justify-content: center;
  }

  .hero,
  .section {
    padding: 4.3rem 0;
  }

  .whatsapp-float {
    width: 58px;
    height: 58px;
  }
}
