@charset "utf-8";

:root {
  --industria-primary: #003366;
  --industria-primary-deep: #001a33;
  --industria-secondary: #e85d04;
  --industria-secondary-hover: #d04f00;
  --industria-bg: #eef1f4;
  --industria-surface: #ffffff;
  --industria-muted: #5a6b7d;
  --industria-line: rgba(0, 51, 102, 0.12);
  --font-display: "Space Grotesk", sans-serif;
  --font-body: "IBM Plex Sans", sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background-color: var(--industria-bg);
  color: var(--industria-primary);
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
.h1,
.h2 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  line-height: 1.15;
  font-weight: 700;
}

/* Bootstrap brand overrides (scoped, no semantic confusion) */
.btn-ip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border: 2px solid transparent;
  border-radius: 4px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: background-color 0.25s var(--ease-out), color 0.25s var(--ease-out),
    border-color 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}

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

.btn-ip-primary {
  background: var(--industria-secondary);
  color: #fff;
}

.btn-ip-primary:hover {
  background: var(--industria-secondary-hover);
  color: #fff;
}

.btn-ip-light {
  background: #fff;
  color: var(--industria-primary);
}

.btn-ip-light:hover {
  background: #f2f5f8;
  color: var(--industria-primary);
}

.btn-ip-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

.btn-ip-outline:hover {
  background: #fff;
  border-color: #fff;
  color: var(--industria-primary);
}

.btn-ip-ghost {
  background: transparent;
  border-color: var(--industria-primary);
  color: var(--industria-primary);
}

.btn-ip-ghost:hover {
  background: var(--industria-primary);
  color: #fff;
}

/* Legacy Bootstrap button hooks used by planos-dinamicos.js */
.btn-primary,
.btn-outline-primary {
  background-color: var(--industria-secondary);
  border-color: var(--industria-secondary);
  color: #fff;
  border-radius: 4px;
  font-family: var(--font-display);
  font-weight: 600;
}

.btn-primary:hover,
.btn-outline-primary:hover {
  background-color: var(--industria-secondary-hover);
  border-color: var(--industria-secondary-hover);
  color: #fff;
}

.btn-outline-primary {
  background-color: transparent;
  color: var(--industria-secondary);
}

.btn-outline-primary:hover {
  color: #fff;
}

.text-primary {
  color: var(--industria-secondary) !important;
}

.bg-primary {
  background-color: var(--industria-secondary) !important;
}

/* Header */
.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  background: transparent;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* Divisão suave entre nav e hero */
.site-header::after {
  content: "";
  position: absolute;
  left: 5%;
  right: 5%;
  bottom: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.12) 15%,
    rgba(255, 255, 255, 0.35) 50%,
    rgba(255, 255, 255, 0.12) 85%,
    transparent 100%
  );
  pointer-events: none;
  transition: opacity 0.3s ease, background 0.3s ease;
}

.site-header::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 2.75rem;
  background: linear-gradient(
    180deg,
    rgba(0, 26, 51, 0.28) 0%,
    rgba(0, 26, 51, 0.08) 45%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.3s ease;
}

.site-header.is-solid {
  position: fixed;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: none;
  backdrop-filter: blur(8px);
}

.site-header.is-solid::after {
  left: 0;
  right: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 51, 102, 0.08) 20%,
    rgba(0, 51, 102, 0.14) 50%,
    rgba(0, 51, 102, 0.08) 80%,
    transparent 100%
  );
}

.site-header.is-solid::before {
  opacity: 0;
}

.site-header.site-header-page {
  position: sticky;
  top: 0;
  inset: auto;
}

.site-header.site-header-page::before {
  opacity: 0;
}

.site-header.site-header-page::after {
  left: 0;
  right: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 51, 102, 0.08) 20%,
    rgba(0, 51, 102, 0.14) 50%,
    rgba(0, 51, 102, 0.08) 80%,
    transparent 100%
  );
}

/* Espaço do nav sobre o hero interno (banner azul).
   py-5 do Bootstrap usa !important — precisamos vencer isso. */
.site-header ~ section.hero:not(.hero-home),
.site-header ~ .hero:not(.hero-home) {
  padding-top: 9.5rem !important;
  padding-bottom: 5rem !important;
}

.site-header ~ .hero-home {
  padding-top: 7.5rem;
}

.site-header .navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.site-header .navbar-brand .logo-light {
  display: block;
  height: 36px;
  width: auto;
}

.site-header .navbar-brand .logo-dark {
  display: none;
  height: 36px;
  width: auto;
}

.site-header.is-solid .navbar-brand .logo-light {
  display: none;
}

.site-header.is-solid .navbar-brand .logo-dark {
  display: block;
}

.site-header .nav-link {
  color: rgba(255, 255, 255, 0.88) !important;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.45rem 0.85rem !important;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.site-header.is-solid .nav-link {
  color: var(--industria-primary) !important;
}

.site-header .nav-link:hover,
.site-header .nav-link[aria-current="page"] {
  color: #fff !important;
  border-bottom-color: var(--industria-secondary);
}

.site-header.is-solid .nav-link:hover,
.site-header.is-solid .nav-link[aria-current="page"] {
  color: var(--industria-secondary) !important;
}

.site-header .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.35);
}

.site-header .navbar-toggler-icon {
  filter: invert(1);
}

.site-header.is-solid .navbar-toggler {
  border-color: rgba(0, 51, 102, 0.25);
}

.site-header.is-solid .navbar-toggler-icon {
  filter: none;
}

@media (max-width: 991.98px) {
  .site-header .navbar-collapse {
    background: rgba(0, 26, 51, 0.96);
    margin-top: 0.75rem;
    padding: 1rem;
    border-radius: 6px;
  }

  .site-header.is-solid .navbar-collapse {
    background: #fff;
    border: 1px solid var(--industria-line);
  }

  .site-header .btn-ip {
    width: 100%;
    margin-top: 0.75rem;
  }
}

/* Hero interno (páginas secundárias) */
.hero {
  background: var(--industria-primary);
  color: #fff;
  padding: 5rem 0;
  text-align: center;
}

.hero .btn {
  background-color: #fff;
  color: var(--industria-primary);
  border: none;
  font-weight: 700;
  border-radius: 4px;
  font-family: var(--font-display);
}

.hero .btn:hover {
  background-color: #f2f5f8;
  color: var(--industria-secondary);
}

/* Hero home — full-bleed composition */
.hero-home {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding: 7.5rem 0 4.5rem;
  color: #fff;
  overflow: hidden;
  background: var(--industria-primary-deep);
  text-align: left;
}

.hero-home .hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-home .hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  transform: scale(1.04);
  animation: hero-ken 18s var(--ease-out) forwards;
}

.hero-home .hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(0, 26, 51, 0.92) 0%, rgba(0, 26, 51, 0.72) 42%, rgba(0, 26, 51, 0.35) 100%),
    linear-gradient(0deg, rgba(0, 26, 51, 0.55) 0%, transparent 45%);
}

.hero-home .hero-content {
  position: relative;
  z-index: 1;
  max-width: 38rem;
  animation: rise-in 0.9s var(--ease-out) both;
}

.hero-home .hero-brand {
  display: block;
  margin-bottom: 1.75rem;
}

.hero-home .hero-brand img {
  height: 52px;
  width: auto;
}

.hero-home h1 {
  font-size: clamp(2.35rem, 5.2vw, 3.75rem);
  margin: 0 0 1rem;
  color: #fff;
}

.hero-home .lead {
  margin: 0 0 1rem;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 32rem;
}

.hero-home .hero-proof {
  margin: 0 0 1.75rem;
  max-width: 34rem;
  font-size: 0.95rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.78);
  border-left: 2px solid var(--industria-secondary);
  padding-left: 0.85rem;
}

.hero-home .hero-proof strong {
  color: #fff;
  font-weight: 600;
}

.hero-home .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-page {
  min-height: 78vh;
  min-height: 78dvh;
  padding-top: 7rem;
  padding-bottom: 3.5rem;
}

@keyframes hero-ken {
  from {
    transform: scale(1.04);
  }
  to {
    transform: scale(1);
  }
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(1.25rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-title {
  font-size: clamp(1.75rem, 3.2vw, 2.35rem);
  margin: 0 0 0.75rem;
}

.section-lead {
  color: var(--industria-muted);
  font-size: 1.1rem;
  max-width: 38rem;
  margin: 0;
}

.section-head {
  margin-bottom: 2.75rem;
}

.section-head.centered {
  text-align: center;
}

.section-head.centered .section-lead {
  margin-left: auto;
  margin-right: auto;
}

/* Trust strip — one job: credibility */
.trust {
  background: var(--industria-surface);
  border-bottom: 1px solid var(--industria-line);
  padding: 2.75rem 0;
}

.trust-label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--industria-secondary);
  margin: 0 0 1rem;
}

.segments {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  margin-bottom: 2rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--industria-line);
}

.segments a {
  color: var(--industria-primary);
  font-weight: 500;
  font-size: 0.95rem;
  border-bottom: 1px solid transparent;
  padding-bottom: 0.1rem;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.segments a:hover {
  color: var(--industria-secondary);
  border-bottom-color: var(--industria-secondary);
}

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

.trust-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--industria-primary);
  margin-bottom: 0.25rem;
}

.trust-item span {
  color: var(--industria-muted);
  font-size: 0.95rem;
}

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

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

/* Product story */
.story {
  background: var(--industria-surface);
}

.story-copy p {
  color: var(--industria-muted);
  margin-bottom: 1.25rem;
}

.story-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
}

.story-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.65rem;
  color: var(--industria-primary);
  font-weight: 500;
}

.story-list i {
  color: var(--industria-secondary);
  margin-top: 0.15rem;
}

.story-visual {
  position: relative;
}

.story-visual .ui-frame {
  margin: 0;
  padding: 0.65rem 0.65rem 0;
  background: linear-gradient(160deg, #1a2b3c, #0d1824);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px 6px 2px 2px;
  box-shadow: 0 18px 40px rgba(0, 26, 51, 0.16);
}

.story-visual .ui-frame::before {
  content: "";
  display: block;
  height: 10px;
  margin-bottom: 0.65rem;
  background:
    radial-gradient(circle at 8px 5px, #ff5f57 3px, transparent 4px),
    radial-gradient(circle at 24px 5px, #febc2e 3px, transparent 4px),
    radial-gradient(circle at 40px 5px, #28c840 3px, transparent 4px);
  opacity: 0.85;
}

.story-visual .ui-frame img {
  width: 100%;
  border-radius: 2px 2px 0 0;
}

/* Pillars — not icon cafeteria */
.pillars {
  background:
    linear-gradient(180deg, #e8edf2 0%, var(--industria-bg) 100%);
}

.pillar {
  display: grid;
  gap: 0.75rem;
  padding: 1.75rem 0;
  border-top: 1px solid var(--industria-line);
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

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

.pillar-num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--industria-secondary);
}

.pillar h3 {
  font-size: 1.35rem;
  margin: 0;
}

.pillar p {
  margin: 0;
  color: var(--industria-muted);
}

/* Página de integrações */
.integ {
  background: var(--industria-surface);
}

.integ-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--industria-line);
}

.integ-item {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 1rem 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--industria-line);
  scroll-margin-top: 5.5rem;
}

.integ-num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--industria-secondary);
  padding-top: 0.15rem;
}

.integ-body h3 {
  font-size: 1.2rem;
  margin: 0 0 0.4rem;
}

.integ-body p {
  margin: 0;
  color: var(--industria-muted);
  max-width: 40rem;
}

@media (max-width: 575.98px) {
  .integ-item {
    grid-template-columns: 2.75rem 1fr;
    gap: 0.75rem;
  }
}

/* Processo completo de produção — interativo */
.process {
  background: var(--industria-surface);
  border-top: 1px solid var(--industria-line);
}

.process-shell {
  max-width: 980px;
  margin: 0 auto;
  padding: 1.5rem 1.5rem 1.75rem;
  background: #f7fafc;
  border: 1px solid var(--industria-line);
  border-radius: 6px;
}

.process-progress {
  height: 3px;
  background: rgba(0, 51, 102, 0.1);
  border-radius: 2px;
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.process-progress-bar {
  height: 100%;
  width: 11.11%;
  background: var(--industria-secondary);
  border-radius: 2px;
  transition: width 0.45s var(--ease-out);
}

.process-track {
  display: flex;
  gap: 0.35rem;
  overflow-x: auto;
  padding-bottom: 0.85rem;
  margin-bottom: 1.25rem;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.process-node {
  flex: 1 0 auto;
  min-width: 5.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 0.4rem;
  border: 1px solid transparent;
  border-radius: 4px;
  background: transparent;
  color: var(--industria-muted);
  cursor: pointer;
  scroll-snap-align: center;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.process-node:hover {
  color: var(--industria-primary);
  background: rgba(255, 255, 255, 0.8);
}

.process-node.is-active {
  color: var(--industria-primary);
  background: #fff;
  border-color: var(--industria-line);
}

.process-node.is-done .process-node-num {
  background: var(--industria-primary);
  color: #fff;
  border-color: var(--industria-primary);
}

.process-node-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 51, 102, 0.22);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.process-node.is-active .process-node-num {
  background: var(--industria-secondary);
  border-color: var(--industria-secondary);
  color: #fff;
}

.process-node-label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.process-stage {
  position: relative;
  min-height: 12.5rem;
}

.process-panel {
  display: none;
  padding: 1.75rem 1.5rem;
  background: #fff;
  border: 1px solid var(--industria-line);
  border-radius: 4px;
  animation: process-in 0.4s var(--ease-out);
}

.process-panel.is-active {
  display: block;
}

.process-panel-meta {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--industria-secondary);
}

.process-panel h3 {
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  margin: 0 0 0.65rem;
}

.process-panel > p {
  margin: 0 0 1.1rem;
  color: var(--industria-muted);
  max-width: 40rem;
}

.process-panel ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.45rem;
}

.process-panel li {
  position: relative;
  padding-left: 1rem;
  color: var(--industria-primary);
  font-weight: 500;
  font-size: 0.95rem;
}

.process-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.4rem;
  height: 0.4rem;
  background: var(--industria-secondary);
}

.process-controls {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.15rem;
}

.process-ctrl {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1rem;
  border: 1px solid var(--industria-line);
  border-radius: 4px;
  background: #fff;
  color: var(--industria-primary);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.process-ctrl:hover:not(:disabled) {
  border-color: var(--industria-primary);
  background: #fff;
}

.process-ctrl:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.process-hint {
  margin: 0;
  text-align: center;
  font-size: 0.85rem;
  color: var(--industria-muted);
}

.process-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

@keyframes process-in {
  from {
    opacity: 0;
    transform: translateY(0.6rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 767.98px) {
  .process-shell {
    padding: 1.15rem;
  }

  .process-controls {
    grid-template-columns: 1fr 1fr;
  }

  .process-hint {
    grid-column: 1 / -1;
    order: -1;
  }

  .process-ctrl {
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .process-panel,
  .process-progress-bar {
    animation: none !important;
    transition: none !important;
  }
}

/* CTA band */
.cta-band {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, var(--industria-primary-deep), var(--industria-primary) 55%, #0a4a7a);
  color: #fff;
  text-align: center;
  padding: 4.5rem 0;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: auto -10% -40%;
  height: 70%;
  background: radial-gradient(ellipse at center, rgba(232, 93, 4, 0.28), transparent 65%);
  pointer-events: none;
}

.cta-band h2 {
  position: relative;
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 3vw, 2.4rem);
}

.cta-band p {
  position: relative;
  margin: 0 auto 1.5rem;
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.88);
}

.cta-band .hero-actions {
  position: relative;
  justify-content: center;
}

.cta-band .btn-ip {
  position: relative;
}

/* Plans */
.plans {
  background: var(--industria-surface);
}

.plan-skeleton {
  text-align: center;
  color: var(--industria-muted);
  margin: 0;
  padding: 2rem 0;
}

.plan-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 1.75rem 1.5rem;
  background: #fff;
  border: 1px solid var(--industria-line);
  border-radius: 4px;
}

.plan-card.is-featured {
  border-color: var(--industria-primary);
  background: linear-gradient(180deg, #f7fafc 0%, #fff 40%);
}

.plan-card-flag {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--industria-secondary);
}

.plan-card h3 {
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
}

.plan-card-desc {
  color: var(--industria-muted);
  font-size: 0.95rem;
  margin: 0 0 1rem;
  min-height: 2.8em;
}

.plan-card-price {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 1.25rem;
}

.plan-card-actions {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.plan-card-actions .btn-ip {
  width: 100%;
}

.plan-card-base {
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
}

.plan-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: auto;
}

.plan-card-list li {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--industria-muted);
  margin-bottom: 0.45rem;
}

.plan-card-list small {
  color: #7a8a9a;
}

.plan-check {
  flex: 0 0 auto;
  width: 0.55rem;
  height: 0.55rem;
  margin-top: 0.4rem;
  background: var(--industria-secondary);
  border-radius: 1px;
}

/* Demo form */
.demo {
  background: var(--industria-surface);
  border-top: 1px solid var(--industria-line);
}

.demo-form label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--industria-primary);
}

.demo-form input,
.demo-form select {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--industria-line);
  border-radius: 4px;
  background: #fff;
  color: var(--industria-primary);
  font-family: var(--font-body);
  font-size: 1rem;
}

.demo-form input:focus,
.demo-form select:focus {
  outline: 2px solid rgba(232, 93, 4, 0.35);
  border-color: var(--industria-secondary);
}

.demo-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.demo-form-note {
  margin: 0.5rem 0 0;
  font-size: 0.9rem;
  color: var(--industria-muted);
}

.demo-form-note a {
  color: var(--industria-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* FAQ */
.faq {
  background: var(--industria-bg);
}

.faq .accordion-item {
  background: #fff;
  border: 1px solid var(--industria-line) !important;
  border-radius: 6px !important;
  margin-bottom: 0.75rem;
  overflow: hidden;
  box-shadow: none !important;
}

.faq .accordion-button {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--industria-primary);
  background: #fff;
  box-shadow: none;
}

.faq .accordion-button:not(.collapsed) {
  color: var(--industria-secondary);
  background: #fff;
}

.faq .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.faq .accordion-body {
  color: var(--industria-muted);
}

/* Footer */
.site-footer {
  background:
    linear-gradient(180deg, #002447 0%, var(--industria-primary-deep) 55%);
  color: rgba(255, 255, 255, 0.78);
  padding: 0;
  border-top: 3px solid var(--industria-secondary);
}

.site-footer .container {
  padding-top: 3.5rem;
  padding-bottom: 1.75rem;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.75rem 2.5rem;
  padding-bottom: 2.5rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  display: inline-block;
  margin-bottom: 1rem;
}

.footer-logo img {
  height: 36px;
  width: auto;
}

.footer-brand {
  max-width: 28rem;
}

.footer-brand p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
}

.footer-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
}

.footer-cta span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: #fff;
  max-width: 16rem;
  line-height: 1.3;
}

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

.footer-col h5 {
  font-family: var(--font-display);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 1.1rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 0.55rem;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: #fff;
}

.footer-col-contact address {
  font-style: normal;
  margin: 0;
}

.footer-col-contact p {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
}

.footer-col-contact a {
  color: rgba(255, 255, 255, 0.82);
}

.footer-col-contact a:hover {
  color: var(--industria-secondary);
}

.footer-social {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.footer-social a:hover {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  margin-top: 2.75rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-meta a {
  color: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.footer-bottom-meta a:hover {
  color: #fff;
  border-bottom-color: #fff;
}

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

@media (max-width: 575.98px) {
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-cta {
    width: 100%;
  }

  .footer-cta .btn-ip {
    width: 100%;
  }

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

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

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  width: 56px;
  height: 56px;
  bottom: 28px;
  right: 28px;
  background-color: #25d366;
  color: #fff !important;
  border-radius: 50%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.whatsapp-float:hover {
  background-color: #128c7e;
  transform: translateY(-2px);
  color: #fff !important;
}

@media (prefers-reduced-motion: reduce) {
  .hero-home .hero-media img,
  .hero-home .hero-content,
  .pillar {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* --- Compatibilidade com páginas internas (Bootstrap clássico) --- */
header.bg-white {
  position: relative;
  background: #fff !important;
  box-shadow: 0 1px 0 var(--industria-line);
}

header.bg-white .navbar-brand img {
  height: 40px;
  width: auto;
  filter: none;
}

header.bg-white .nav-link {
  color: #333 !important;
  border-bottom: 2px solid transparent;
}

header.bg-white .nav-link:hover,
header.bg-white .nav-link.active,
header.bg-white .nav-link[aria-current="page"] {
  color: var(--industria-secondary) !important;
  border-bottom-color: var(--industria-secondary);
}

header.bg-white .navbar-toggler {
  border-color: rgba(0, 51, 102, 0.25);
}

header.bg-white .navbar-toggler-icon {
  filter: none;
}

.feature-icon {
  color: var(--industria-secondary);
  display: inline-block;
}

footer.bg-dark {
  background: var(--industria-primary-deep) !important;
}

.accordion-button {
  color: var(--industria-primary);
}

.accordion-button:not(.collapsed) {
  background-color: #fff;
  color: var(--industria-secondary);
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--industria-secondary);
}

