:root {
  --bg: #120613;
  --bg-deep: #1b0a22;
  --bg-alt: #23102b;
  --plum: #4b0f49;
  --plum-deep: #2f0a33;
  --accent: #8b2f7d;
  --cream: #f5f2f6;
  --header: #4b0f49;
  --text: #f7f3f8;
  --muted: #c9bccd;
  --card: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.1);
  --shadow: 0 30px 70px rgba(7, 2, 10, 0.5);
  --radius: 22px;
  --transition: 220ms ease;
  --section-soft: rgba(75, 15, 73, 0.18);
  --section-deep: rgba(47, 10, 51, 0.28);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  background: radial-gradient(circle at 20% 20%, rgba(75, 15, 73, 0.35), transparent 46%),
    radial-gradient(circle at 80% 10%, rgba(139, 47, 125, 0.25), transparent 40%),
    linear-gradient(160deg, var(--bg) 0%, var(--bg-deep) 55%, #0c0611 100%);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

body::before {
  background: radial-gradient(circle at 70% 20%, rgba(75, 15, 73, 0.5), transparent 45%),
    radial-gradient(circle at 30% 70%, rgba(11, 4, 16, 0.7), transparent 50%);
  opacity: 0.7;
}

body::after {
  background-image: 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: 120px 120px;
  opacity: 0.15;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes logoSlideIn {
  from {
    opacity: 0;
    transform: translateX(-32px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.container.narrow {
  width: min(900px, 94vw);
}

.section {
  padding: 96px 0;
  background: linear-gradient(180deg, rgba(18, 6, 19, 0.15), var(--section-soft));
}

main > section.section:nth-of-type(even) {
  background: linear-gradient(180deg, rgba(18, 6, 19, 0.25), var(--section-deep));
}

.section-head {
  text-align: center;
  margin-bottom: 48px;
}

.section-head h2 {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 34px);
  letter-spacing: 0.3px;
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  width: 100%;
  background: transparent;
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(75, 15, 73, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  position: relative;
}

.site-header {
  background: var(--header);
}

.logo {
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
}

.logo-img {
  display: block;
  width: 300px;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

.site-header .logo {
  animation: logoSlideIn 0.7s ease-out both;
}

.footer-logo {
  width: 300px;
}

.main-nav {
  display: flex;
  gap: 18px;
}

.main-nav a {
  padding: 10px 12px;
  border-radius: 12px;
  color: #efe6f2;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  outline: none;
}

.header-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.header-actions .btn {
  white-space: nowrap;
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.06);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
}

.mobile-toggle svg {
  display: block;
  width: 22px;
  height: 22px;
  color: #f2e8f6;
}

.mobile-toggle:hover,
.mobile-toggle:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  outline: none;
}

.mobile-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  width: min(320px, 90vw);
  padding: 16px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(18, 6, 19, 0.96);
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 10px;
}

.mobile-menu a {
  padding: 10px 12px;
  border-radius: 12px;
  color: #efe6f2;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
}

.mobile-menu a:hover,
.mobile-menu a:focus-visible {
  background: rgba(255, 255, 255, 0.06);
  outline: none;
}

.mobile-actions {
  display: grid;
  gap: 10px;
  margin-top: 6px;
}

.mobile-menu.open {
  display: flex;
}

.btn {
  border: 1px solid var(--border);
  background: var(--card);
  color: #fff;
  padding: 12px 18px;
  border-radius: 12px;
  cursor: pointer;
  transition: transform var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition);
  font-weight: 600;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn.primary {
  background: linear-gradient(135deg, var(--plum), var(--plum-deep));
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 18px 34px rgba(75, 21, 79, 0.45);
}

.btn.secondary {
  background: linear-gradient(135deg, var(--accent), #b34aa2);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.btn.ghost {
  background: transparent;
}

.btn.link {
  border: none;
  background: transparent;
  padding: 0;
  color: #efe6f2;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.2);
  outline: none;
}

.btn:active {
  transform: translateY(0);
}

.hero {
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
  perspective: 900px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(180deg, rgba(10, 5, 15, 0.35), rgba(10, 5, 15, 0.75)),
    url("assets/fundo_.png");
  background-size: cover;
  background-position: center;
  transform: rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) scale(1.03);
  transform-origin: center;
  transition: transform 220ms ease;
  z-index: 0;
  pointer-events: none;
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 25% 45%, rgba(16, 16, 18, 0.82) 0%, rgba(16, 16, 18, 0.72) 45%, rgba(16, 16, 18, 0.35) 72%);
  mix-blend-mode: multiply;
  pointer-events: none;
}

.hero-bg::before,
.hero-bg::after {
  content: "";
  position: absolute;
  filter: blur(120px);
  border-radius: 50%;
  opacity: 0.6;
}

.hero-bg::before {
  width: 360px;
  height: 360px;
  background: rgba(75, 15, 73, 0.6);
  top: -60px;
  left: -120px;
}

.hero-bg::after {
  width: 280px;
  height: 280px;
  background: rgba(139, 47, 125, 0.45);
  bottom: -80px;
  right: -60px;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  align-items: center;
  z-index: 1;
}

.hero-copy {
  animation: riseIn 0.8s ease both;
  background: rgba(12, 10, 16, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 28px;
  backdrop-filter: blur(8px);
}

.hero-visual {
  animation: riseIn 0.9s ease 0.1s both;
}

.tablist {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 6px;
  gap: 6px;
  margin-bottom: 18px;
}

.tab {
  border: none;
  background: transparent;
  color: var(--muted);
  font-size: 14px;
  padding: 10px 16px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 600;
  font-family: inherit;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
}

.tab:hover,
.tab:focus-visible {
  background: linear-gradient(135deg, rgba(70, 34, 122, 0.55), rgba(58, 26, 96, 0.35));
  color: #f3eef7;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  outline: none;
}

.tab.active {
  background: linear-gradient(135deg, rgba(70, 34, 122, 0.7), rgba(58, 26, 96, 0.45));
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.tab-panels {
  margin-top: 4px;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.tab-panel[data-tab-panel="posto"] {
  transform: rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transform-origin: center;
  transform-style: preserve-3d;
  transition: transform 220ms ease;
  will-change: transform;
}

.hero h1 {
  margin: 0 0 12px;
  font-size: clamp(32px, 4.6vw, 40px);
}

.lead {
  color: var(--muted);
  margin-bottom: 16px;
}

.bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  color: var(--text);
}

.bullets li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  position: relative;
}

.bullets li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}

.bullets.compact li {
  padding: 6px 0;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-visual {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(139, 47, 125, 0.08));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 400ms ease, box-shadow 400ms ease;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 6, 28, 0.05), rgba(12, 4, 18, 0.45));
  pointer-events: none;
}

.hero-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  object-position: center 58%;
  filter: saturate(0.95) contrast(1.08);
  transform: scale(1.1);
  transform-origin: center;
}

.hero-visual:hover {
  transform: translateY(-4px) rotateX(2deg) rotateZ(-1deg);
  box-shadow: 0 30px 70px rgba(8, 3, 14, 0.6);
}

.hero-visual:hover .hero-image {
  transform: scale(1.14);
}

.status-stack {
  display: grid;
  gap: 10px;
}

.status-card {
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.status-card.glow {
  box-shadow: 0 18px 40px rgba(75, 21, 79, 0.45);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(139, 47, 125, 0.18);
  border: 1px solid rgba(139, 47, 125, 0.35);
}

.legend {
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
}

.card-grid {
  display: grid;
  gap: 18px;
}

.card-grid.three {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card-grid.four {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(75, 21, 79, 0.08));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  transition: border-color var(--transition), transform var(--transition);
  animation: riseIn 0.8s ease both;
}

.card:hover {
  border-color: rgba(139, 47, 125, 0.55);
  transform: translateY(-2px);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 20px;
}

.card p {
  color: var(--muted);
  margin: 0 0 8px;
}

.icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(139, 47, 125, 0.18);
  display: grid;
  place-items: center;
  color: #f0d9f2;
  margin-bottom: 12px;
}

.timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 18px;
}

.flow {
  position: relative;
}

.flow-board {
  background: rgba(245, 238, 246, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 26px;
  padding: 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
  position: relative;
  overflow: hidden;
}

.flow-board::before,
.flow-board::after {
  content: "";
  position: absolute;
  top: 16px;
  bottom: 16px;
  width: 1px;
  background: rgba(255, 255, 255, 0.2);
  opacity: 0.5;
}

.flow-board::before {
  left: 25%;
}

.flow-board::after {
  left: 50%;
}

.flow-board .flow-column:last-child::before {
  content: "";
  position: absolute;
  top: 16px;
  bottom: 16px;
  left: -11px;
  width: 1px;
  background: rgba(255, 255, 255, 0.2);
  opacity: 0.5;
}

.flow-column {
  display: grid;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.flow-badge {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-weight: 700;
  display: grid;
  place-items: center;
  letter-spacing: 1px;
}

.flow-column h3 {
  margin: 0;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.flow-step {
  background: rgba(62, 15, 67, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 13px;
  color: #f5eef6;
}

.flow-note {
  text-align: center;
  color: var(--muted);
  margin-top: 18px;
  font-size: 14px;
}

.timeline li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
}

.step-badge {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(139, 47, 125, 0.26);
  border: 1px solid rgba(139, 47, 125, 0.5);
  color: #fff;
  font-weight: 700;
}

.diagram {
  margin: 36px auto 12px;
  display: grid;
  grid-template-columns: repeat(5, auto);
  gap: 14px;
  align-items: center;
  justify-content: center;
}

.diagram-box {
  padding: 16px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  text-align: center;
  box-shadow: var(--shadow);
  min-width: 180px;
}

.diagram-box span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  margin-top: 6px;
}

.diagram-box.central {
  background: linear-gradient(135deg, rgba(75, 15, 73, 0.75), rgba(139, 47, 125, 0.4));
  border-color: rgba(139, 47, 125, 0.5);
}

.diagram-arrow {
  color: var(--muted);
  font-size: 24px;
}

.callout {
  margin-top: 24px;
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(139, 47, 125, 0.2);
  border: 1px solid rgba(139, 47, 125, 0.4);
  color: #fff;
  text-align: center;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  align-items: center;
}

.split.reverse .text {
  order: 2;
}

.split.reverse .visual-checklist {
  order: 1;
}

.text h2 {
  margin-top: 0;
}

.visual-stack,
.visual-checklist,
.visual-kanban {
  display: grid;
  gap: 10px;
}

.stack-card,
.check-card {
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
}

.visual-kanban {
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}

.kanban-col {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px;
}

.kanban-title {
  font-weight: 700;
  margin-bottom: 8px;
}

.kanban-card {
  padding: 10px;
  border-radius: 10px;
  background: rgba(75, 15, 73, 0.35);
  border: 1px solid rgba(139, 47, 125, 0.3);
  margin-bottom: 8px;
  color: #fff;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  background: rgba(12, 7, 16, 0.95);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 8px;
  box-shadow: var(--shadow);
  display: none;
  min-width: 230px;
  z-index: 10;
}

.dropdown-menu.show {
  display: grid;
  gap: 6px;
}

.dropdown-menu button {
  background: transparent;
  border: 1px solid transparent;
  color: #fff;
  padding: 10px 12px;
  border-radius: 10px;
  cursor: pointer;
  text-align: left;
  transition: background var(--transition), border-color var(--transition);
}

.dropdown-menu button:hover,
.dropdown-menu button:focus-visible {
  background: rgba(139, 47, 125, 0.18);
  border-color: rgba(139, 47, 125, 0.3);
  outline: none;
}

.accordion {
  display: grid;
  gap: 12px;
}

.accordion-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.accordion-trigger {
  width: 100%;
  background: transparent;
  border: none;
  color: #fff;
  text-align: left;
  padding: 14px 16px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-trigger::after {
  content: "+";
  font-weight: 700;
  color: var(--muted);
  transition: transform var(--transition);
}

.accordion-trigger[aria-expanded="true"]::after {
  transform: rotate(45deg);
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition);
  padding: 0 16px;
}

.accordion-panel p {
  margin: 10px 0 14px;
  color: var(--muted);
}

.form {
  background: var(--cream);
  border: 1px solid rgba(20, 7, 24, 0.15);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 28px 70px rgba(12, 4, 18, 0.45);
}

.form-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-bottom: 14px;
}

label {
  display: grid;
  gap: 6px;
  color: #2a0d2f;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  background: #fff;
  border: 1px solid rgba(32, 12, 38, 0.2);
  border-radius: 10px;
  padding: 12px;
  color: #2a0d2f;
  transition: border-color var(--transition), background var(--transition);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(75, 21, 79, 0.6);
  background: #fff;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.form-feedback {
  min-height: 24px;
  color: #4d2a53;
  font-weight: 600;
}

.form-feedback.success {
  color: #7bd88f;
}

.form-feedback.error {
  color: #f2a8a8;
}

.footer {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  background: #0a050f;
  text-align: center;
  font-size: 14px;
}

.footer-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer p {
  color: var(--muted);
  margin: 6px 0;
}

.footer-left {
  text-align: left;
}

.footer-right {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
}

.social-link {
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  font-size: 14px;
  transition: color var(--transition);
}

.social-link svg {
  width: 36px;
  height: 36px;
  display: block;
}

.social-link img {
  width: 36px;
  height: 36px;
  display: block;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(27, 168, 88, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 28px rgba(6, 4, 10, 0.45);
  gap: 6px;
}

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-link img {
  width: 20px;
  height: 20px;
  display: block;
}

.whatsapp-close {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.25);
  color: #fff;
  font-size: 12px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  padding: 0;
}

.whatsapp-float.is-hidden {
  display: none;
}

.social-link:hover,
.social-link:focus-visible {
  color: #fff;
  outline: none;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.footer-links a {
  color: var(--muted);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: #fff;
}

.governance-inlift {
  display: grid;
  gap: 12px;
}

.inlift-seal {
  display: block;
  margin-top: 0;
  text-align: center;
}

.inlift-powered {
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.inlift-logo {
  width: 140px;
  max-width: 100%;
  height: auto;
  opacity: 0.85;
}

.powered-by.inlift-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-inlift-logo {
  height: 20px;
  width: auto;
  opacity: 0.65;
}

.icon-circle svg {
  display: block;
}

@media (max-width: 900px) {
  .header-inner {
    flex-wrap: wrap;
  }
  .hero-visual {
    display: none;
  }
  .main-nav {
    display: none;
  }
  .header-actions {
    display: flex;
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .mobile-toggle {
    display: inline-flex;
  }
  .site-header {
    position: sticky;
  }
  .diagram {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .diagram-arrow {
    display: none;
  }
  .flow-board::before,
  .flow-board::after,
  .flow-board .flow-column:last-child::before {
    display: none;
  }
}

@media (max-width: 600px) {
  .tablist {
    flex-wrap: wrap;
    justify-content: center;
  }
  .tab {
    flex: 1 1 150px;
    text-align: center;
  }
  #seguranca .bullets li {
    position: relative;
    padding-left: 18px;
  }
  #seguranca .bullets li strong {
    display: block;
    margin-bottom: 4px;
  }
  #seguranca .bullets li::before {
    position: absolute;
    left: 0;
    top: 0.6em;
    margin: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

  .footer-grid {
    flex-direction: column;
    align-items: center;
  }

  .footer-left {
    text-align: center;
  }

  .footer-right {
    align-items: center;
    justify-content: center;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
  }
