:root {
  --navy: #0e1b2b;
  --navy-2: #14283d;
  --navy-3: #1a3851;
  --teal: #00afa7;
  --teal-dark: #008d86;
  --teal-light: #dff8f6;
  --blue: #4d8dff;
  --off: #f5f9fb;
  --white: #ffffff;
  --text: #142438;
  --muted: #65788a;
  --line: #dce6ec;
  --shadow: 0 28px 70px rgba(14, 27, 43, .16);
  --shadow-soft: 0 14px 36px rgba(14, 27, 43, .09);
  --radius: 24px;
  --radius-small: 16px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

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

h1,
h2,
h3 {
  font-family: Inter, Manrope, ui-sans-serif, system-ui, sans-serif;
  /* [TESTE DE FONTE] Se quiser testar títulos ainda mais grossos (Black 900), mude a ordem acima para "Inter, Manrope, ..." */
  line-height: 1.06;
  letter-spacing: -.045em;
}

h1,
h2 {
  font-weight: 950;
  /* [TESTE DE ESPESSURA] Você pode alterar de 800 para outros valores como 700, 900 ou 950 para testar a espessura dos títulos */
}

h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  margin-bottom: 1.25rem;
}

h3 {
  font-size: 1.28rem;
  margin-bottom: .8rem;
}

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

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

.section {
  padding: 96px 0;
}

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

.centered {
  text-align: center;
  margin-inline: auto;
}

.full-width {
  width: 100%;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  transform: translateY(-140%);
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--navy);
  color: white;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .88);
  border-bottom: 1px solid rgba(220, 230, 236, .72);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 76px;
  display: grid;
  grid-template-columns: 86px 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand {
  width: 64px;
}

.brand img {
  width: 100%;
  height: 48px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.main-nav a {
  color: #3d5063;
  font-size: .9rem;
  font-weight: 750;
  transition: color .2s ease;
}

.main-nav a:hover {
  color: var(--teal-dark);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: var(--navy);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 22px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-size: .92rem;
  font-weight: 850;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

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

.button:focus-visible,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(0, 175, 167, .28);
  outline-offset: 3px;
}

.button-primary {
  background: var(--teal);
  color: white;
  box-shadow: 0 14px 28px rgba(0, 175, 167, .25);
}

.button-primary:hover {
  background: var(--teal-dark);
}

.button-secondary {
  background: white;
  color: var(--navy);
  border-color: var(--line);
}

.button-secondary:hover {
  box-shadow: var(--shadow-soft);
}

.button-light {
  background: white;
  color: var(--navy);
}

.button-outline-light {
  color: white;
  border-color: rgba(255, 255, 255, .35);
}

.button-outline-light:hover {
  background: rgba(255, 255, 255, .1);
}

.button-login {
  background: var(--navy);
  color: white;
  min-height: 42px;
  padding-inline: 20px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--teal-dark);
  font-size: .73rem;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.eyebrow-on-dark {
  color: #63e5de;
}

.section-heading {
  max-width: 840px;
  margin-bottom: 52px;
}

.section-heading p {
  max-width: 720px;
  font-size: 1.05rem;
}

.section-heading.centered p {
  margin-inline: auto;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  display: grid;
  align-items: center;
  padding: 96px 0 86px;
  background:
    radial-gradient(circle at 89% 10%, rgba(0, 175, 167, .17), transparent 28%),
    linear-gradient(180deg, #f9fcfd 0%, #f2faf9 70%, #fff 100%);
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  opacity: .28;
  background-image:
    linear-gradient(rgba(14, 27, 43, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 27, 43, .06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .45), transparent 74%);
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  pointer-events: none;
}

.hero-blob-one {
  width: 340px;
  height: 340px;
  top: -210px;
  right: 12%;
  background: rgba(0, 175, 167, .13);
}

.hero-blob-two {
  width: 260px;
  height: 260px;
  bottom: -160px;
  left: 8%;
  background: rgba(77, 141, 255, .08);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(480px, .98fr);
  gap: 20px 68px;
  align-items: center;
}

.hero-eyebrow {
  grid-column: 1;
  grid-row: 1;
  margin-bottom: -10px;
}

.hero-copy {
  grid-column: 1;
  grid-row: 2;
  min-width: 0;
}

.hero-product {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.hero-copy h1 {
  margin-bottom: 28px;
}

.hero-keyword {
  display: block;
  max-width: 680px;
  margin-bottom: 20px;
  color: var(--navy);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: -.015em;
}

.hero-fixed {
  display: block;
  color: #697b8b;
  font-size: clamp(2rem, 3.1vw, 3.15rem);
  font-weight: 500;
  letter-spacing: -.025em;
}

.hero-rotating-wrap {
  display: block;
  min-height: 1.16em;
  color: var(--teal);
  font-size: clamp(2.45rem, 4.8vw, 4.85rem);
  font-weight: 950;
  overflow: hidden;
}

.hero-rotating {
  display: inline-block;
}

.hero-rotating.is-leaving {
  animation: rotateOut .42s ease forwards;
}

.hero-rotating.is-entering {
  animation: rotateIn .48s ease forwards;
}

@keyframes rotateOut {
  to {
    transform: translateY(-90%);
    opacity: 0;
    filter: blur(4px);
  }
}

@keyframes rotateIn {
  from {
    transform: translateY(90%);
    opacity: 0;
    filter: blur(4px);
  }

  to {
    transform: translateY(0);
    opacity: 1;
    filter: blur(0);
  }
}

.hero-text {
  max-width: 680px;
  margin-bottom: 30px;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-proof span {
  color: #506477;
  font-size: .8rem;
  font-weight: 800;
}

.hero-proof span::before {
  content: "✓";
  margin-right: 7px;
  color: var(--teal);
}

.hero-product {
  position: relative;
  min-width: 0;
}

.product-window {
  overflow: hidden;
  border: 1px solid rgba(165, 187, 199, .7);
  border-radius: 24px;
  background: white;
  box-shadow: var(--shadow);
  transform: perspective(1500px) rotateY(-2deg) rotateX(1deg);
}

.product-topbar {
  height: 48px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  font-size: .75rem;
}

.window-dots {
  display: flex;
  gap: 5px;
}

.window-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d6e0e6;
}

.window-dots span:nth-child(1) {
  background: #f28b82;
}

.window-dots span:nth-child(2) {
  background: #fbbc04;
}

.window-dots span:nth-child(3) {
  background: #34a853;
}

.status-online {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--teal-dark);
  font-weight: 900;
}

.status-online i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2ecc71;
  box-shadow: 0 0 0 4px rgba(46, 204, 113, .12);
}

.product-body {
  min-height: 450px;
  display: grid;
  grid-template-columns: 56px 190px minmax(0, 1fr);
}

.product-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding: 14px 8px;
  border-right: 1px solid var(--line);
  background: #f6fafb;
}

.side-brand {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--navy);
  color: white;
  font-weight: 950;
  font-size: .7rem;
}

.side-icon {
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 9px;
  background: #e7eef2;
}

.side-icon.active {
  background: var(--teal-light);
  box-shadow: inset 0 0 0 1px rgba(0, 175, 167, .25);
}

.product-conversations {
  border-right: 1px solid var(--line);
  background: white;
}

.conversation-title {
  padding: 17px 14px 12px;
  color: var(--navy);
  font-size: .8rem;
  font-weight: 900;
}

.conversation-title span {
  float: right;
  color: var(--teal-dark);
  font-size: .65rem;
}

.conversation-row {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr) auto;
  gap: 9px;
  align-items: center;
  padding: 11px 12px;
  border-top: 1px solid #edf2f4;
}

.conversation-row.active {
  background: #edfbfa;
}

.avatar {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: white;
  font-size: .62rem;
  font-weight: 900;
}

.avatar.aqua {
  background: var(--teal);
}

.avatar.blue {
  background: #477cff;
}

.avatar.coral {
  background: #ef6c72;
}

.avatar.gray {
  background: #8fa2b1;
}

.conversation-row strong,
.conversation-row small {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.conversation-row strong {
  font-size: .71rem;
}

.conversation-row small {
  color: #788b9a;
  font-size: .58rem;
}

.conversation-row em {
  color: #92a1ad;
  font-style: normal;
  font-size: .52rem;
}

.product-chat {
  min-width: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
}

.chat-header strong,
.chat-header small {
  display: block;
}

.chat-header strong {
  font-size: .72rem;
}

.chat-header small {
  color: #80909d;
  font-size: .56rem;
}

.chat-header button {
  border: 0;
  border-radius: 8px;
  padding: 7px 9px;
  background: var(--navy);
  color: white;
  font-size: .54rem;
  font-weight: 900;
}

.chat-messages {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px 14px;
  background: linear-gradient(180deg, #fbfdfd, #f6fafb);
}

.message {
  max-width: 86%;
  padding: 10px 12px;
  border-radius: 13px;
  font-size: .64rem;
  line-height: 1.45;
}

.message.incoming {
  align-self: flex-start;
  background: white;
  border: 1px solid var(--line);
}

.message.outgoing {
  align-self: flex-end;
  background: var(--teal);
  color: white;
  border-bottom-right-radius: 4px;
}

.ai-thinking {
  align-self: center;
  color: #668091;
  font-size: .54rem;
  font-weight: 800;
}

.ai-thinking i {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 5px;
  border-radius: 50%;
  background: var(--teal);
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  50% {
    opacity: .35;
    transform: scale(.82);
  }
}

.lead-card {
  align-self: flex-end;
  width: 92%;
  padding: 10px 12px;
  border-radius: 12px;
  background: #e6f5ff;
  border: 1px solid #cce8f8;
}

.lead-card span,
.lead-card strong {
  display: block;
}

.lead-card span {
  color: #32769c;
  font-size: .5rem;
  font-weight: 950;
  text-transform: uppercase;
}

.lead-card strong {
  margin-top: 3px;
  font-size: .57rem;
}

.chat-compose {
  margin: 10px 12px 12px;
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: #9aa8b2;
  font-size: .58rem;
}

.chat-compose span {
  float: right;
  color: var(--teal);
}

.floating-channel {
  position: absolute;
  z-index: 3;
  padding: 8px 11px;
  border-radius: 10px;
  color: white;
  font-size: .64rem;
  font-weight: 900;
  box-shadow: 0 12px 25px rgba(14, 27, 43, .16);
}

.fc-whatsapp {
  top: -18px;
  left: -28px;
  background: #22c768;
}

.fc-instagram {
  bottom: 62px;
  left: -32px;
  background: linear-gradient(135deg, #ef4f73, #8753d8);
}

.fc-telegram {
  top: 80px;
  right: -25px;
  background: #2aabee;
}

.trust-strip {
  border-block: 1px solid var(--line);
  background: white;
}

.trust-strip-inner {
  min-height: 112px;
  display: grid;
  grid-template-columns: 1fr 2fr auto;
  gap: 28px;
  align-items: center;
}

.trust-copy span,
.trust-copy strong {
  display: block;
}

.mini-label {
  color: var(--teal-dark);
  font-size: .65rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.trust-copy strong {
  margin-top: 4px;
  font-size: .94rem;
}

.trust-channels {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.trust-channels span {
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #5b6e7f;
  font-size: .72rem;
  font-weight: 800;
}

.meta-integration-card {
  min-width: 150px;
  padding: 12px 18px;
  border-radius: 14px;
  background: #f5f8ff;
  border: 1px solid #dfe7ff;
  text-align: right;
}

.meta-integration-card span,
.meta-integration-card strong {
  display: block;
}

.meta-integration-card span {
  color: #63758c;
  font-size: .58rem;
}

.meta-integration-card strong {
  color: #0866ff;
  font-size: 1.35rem;
  letter-spacing: -.04em;
}

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

.pain-card {
  position: relative;
  min-height: 280px;
  padding: 34px;
  border-radius: var(--radius);
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.card-number {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 34px;
  border-radius: 13px;
  background: var(--teal-light);
  color: var(--teal-dark);
  font-weight: 950;
}

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

.dark-section {
  color: white;
  background: var(--navy);
}

.dark-section h2,
.dark-section h3 {
  color: white;
}

.dark-section p {
  color: #bdcad4;
}

.split-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 80px;
}

.section-copy p {
  font-size: 1.02rem;
}

.check-list {
  list-style: none;
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0 34px;
}

.check-list li {
  color: #536a7b;
}

.check-list li::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--teal);
  color: white;
  font-size: .75rem;
  font-weight: 900;
}

.check-list.on-dark li {
  color: #d3dde4;
}

.check-list.on-dark li::before {
  background: rgba(0, 175, 167, .16);
  color: #62e7df;
}

.channel-selector {
  padding: 32px;
  border-radius: 28px;
  background: white;
  color: var(--text);
  box-shadow: 0 30px 75px rgba(0, 0, 0, .28);
}

.selector-step {
  color: #96a7b6;
  font-size: .65rem;
  font-weight: 950;
  letter-spacing: .1em;
}

.channel-selector h3 {
  margin: 8px 0 8px;
  font-size: 2rem;
}

.channel-selector>p {
  margin-bottom: 22px;
}

.channel-toggle-list {
  display: grid;
  gap: 8px;
}

.channel-toggle {
  display: grid;
  grid-template-columns: 34px 1fr 38px;
  gap: 10px;
  align-items: center;
  width: 100%;
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: white;
  text-align: left;
  cursor: pointer;
}

.channel-toggle strong {
  font-size: .79rem;
}

.channel-toggle i {
  position: relative;
  width: 32px;
  height: 18px;
  border-radius: 999px;
  background: #cbd6dc;
  transition: background .2s ease;
}

.channel-toggle i::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: white;
  transition: transform .2s ease;
}

.channel-toggle.active i {
  background: #21bd65;
}

.channel-toggle.active i::after {
  transform: translateX(14px);
}

.channel-symbol {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: white;
  font-size: .66rem;
  font-weight: 950;
}

.channel-symbol.whatsapp {
  background: #20c766;
}

.channel-symbol.instagram {
  background: linear-gradient(135deg, #ee596d, #8955dc);
}

.channel-symbol.messenger {
  background: #087df3;
}

.channel-symbol.telegram {
  background: #28a8e9;
}

.channel-symbol.email {
  background: #e75050;
}

.channel-symbol.webchat {
  background: #7859e7;
}

.channel-symbol.sms {
  background: #21a8dc;
}

.channel-symbol svg {
  width: 14px;
  height: 14px;
  display: block;
}

.ai-orbit {
  position: relative;
  min-height: 460px;
  display: grid;
  place-items: center;
}

.orbit-core {
  position: relative;
  z-index: 3;
  width: 128px;
  height: 128px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #3be2d8, var(--teal-dark) 58%, var(--navy));
  color: white;
  font-size: 2rem;
  font-weight: 950;
  box-shadow: 0 24px 60px rgba(0, 175, 167, .28);
}

.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(0, 175, 167, .35);
}

.ring-one {
  width: 270px;
  height: 270px;
}

.ring-two {
  width: 390px;
  height: 390px;
}

.orbit-note {
  position: absolute;
  z-index: 4;
  padding: 9px 12px;
  border-radius: 11px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  color: #5b6f7f;
  font-size: .68rem;
  font-weight: 850;
}

.note-a {
  top: 66px;
  left: 15px;
}

.note-b {
  top: 110px;
  right: 0;
}

.note-c {
  bottom: 90px;
  left: 35px;
}

.note-d {
  bottom: 48px;
  right: 30px;
}

.mini-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 32px;
}

.mini-feature-grid article {
  padding-left: 16px;
  border-left: 3px solid var(--teal);
}

.mini-feature-grid h3 {
  margin-bottom: 6px;
  font-size: 1rem;
}

.mini-feature-grid p {
  margin-bottom: 0;
  font-size: .87rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step-card {
  position: relative;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow-soft);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.step-card:hover {
  transform: translateY(-5px);
  border-color: var(--teal);
  box-shadow: 0 12px 30px rgba(0, 175, 167, 0.15);
}

.step-card>span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 24px;
  border-radius: 10px;
  background: var(--navy);
  color: white;
  font-size: .95rem;
  font-weight: 800;
  letter-spacing: -.01em;
}

.step-card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 53px;
  right: -25px;
  width: 25px;
  height: 2px;
  background: var(--teal);
}

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

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

.feature-card {
  min-height: 245px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow-soft);
}

.feature-card-large {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--navy), var(--navy-3));
}

.feature-card-large h3,
.feature-card-large p {
  color: white;
}

.feature-card-large p {
  color: #c5d2da;
}

.feature-tag {
  display: inline-block;
  margin-bottom: 26px;
  color: #67e5df;
  font-size: .69rem;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.feature-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--teal-light);
  color: var(--teal-dark);
  font-size: .67rem;
  font-weight: 950;
}

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

.qualification-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
}

.qualification-flow span {
  padding: 8px 10px;
  border-radius: 9px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .14);
  color: white;
  font-size: .67rem;
  font-weight: 850;
}

.qualification-flow i {
  width: 18px;
  height: 2px;
  background: var(--teal);
}

.control-section {
  padding-top: 20px;
}

.control-panel {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 56px;
  padding: 56px;
  border-radius: 32px;
  background: linear-gradient(135deg, var(--navy), #173951);
  box-shadow: var(--shadow);
}

.control-panel h2 {
  color: white;
}

.control-panel p {
  color: #bdcad4;
  max-width: 650px;
}

.control-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.control-chips span {
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .16);
  color: white;
  font-size: .72rem;
  font-weight: 850;
}

.usage-widget {
  padding: 25px;
  border-radius: 20px;
  background: white;
}

.usage-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.usage-title span {
  color: var(--teal-dark);
  font-weight: 950;
}

.usage-progress {
  height: 10px;
  margin: 14px 0 22px;
  overflow: hidden;
  border-radius: 999px;
  background: #e7eef1;
}

.usage-progress i {
  display: block;
  width: 72%;
  height: 100%;
  background: linear-gradient(90deg, var(--teal), #5adcd5);
}

.usage-widget dl {
  margin: 0;
}

.usage-widget dl>div {
  display: flex;
  justify-content: space-between;
  padding: 11px 0;
  border-bottom: 1px solid #edf1f3;
  font-size: .77rem;
}

.usage-widget dt {
  color: #687b8b;
}

.usage-widget dd {
  margin: 0;
  color: var(--navy);
  font-weight: 900;
}

.usage-widget button {
  width: 100%;
  margin-top: 18px;
  padding: 10px;
  border: 0;
  border-radius: 10px;
  background: var(--navy);
  color: white;
  font-size: .76rem;
  font-weight: 900;
}

.industry-section {
  background: #0B1522;
  color: white;
}

.industry-heading {
  max-width: 840px;
  margin-bottom: 50px;
}

.industry-heading h2 {
  color: white;
}

.industry-heading p {
  color: #bfc5cb;
}

.industry-tabs {
  display: grid;
  grid-template-columns: .52fr .95fr 1fr;
  gap: 46px;
  align-items: stretch;
}

.industry-nav {
  display: grid;
  align-content: center;
}

.industry-tab {
  position: relative;
  padding: 22px 18px 22px 44px;
  border: 0;
  border-bottom: 1px solid #353535;
  background: transparent;
  color: #d8d8d8;
  text-align: left;
  cursor: pointer;
  font-size: 1rem;
}

.industry-tab::before {
  content: "›";
  position: absolute;
  left: 12px;
  top: 50%;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  border: 1px solid #6d6d6d;
  border-radius: 50%;
}

.industry-tab.active {
  color: white;
  font-weight: 900;
}

.industry-tab.active::before {
  background: var(--teal);
  border-color: var(--teal);
}

.industry-visual {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  display: grid;
  place-items: center;
  border-radius: 36px;
  background: radial-gradient(circle at 40% 30%, #3c6570, #12222b 55%, #0d1418);
}

.industry-avatar {
  width: 180px;
  height: 180px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #f0c6a8, #c2835c);
  color: #5e3b24;
  font-size: 3rem;
  font-weight: 950;
  box-shadow: 0 28px 65px rgba(0, 0, 0, .35);
}

.industry-topic {
  position: absolute;
  top: 56%;
  left: 14%;
  padding: 9px 12px;
  border-radius: 9px;
  background: white;
  color: #222;
  font-size: .73rem;
  font-weight: 850;
}

.industry-bubble {
  position: absolute;
  bottom: 12%;
  right: 8%;
  width: 66%;
  padding: 14px 16px;
  border-radius: 14px 14px 4px 14px;
  background: var(--teal);
  color: white;
  font-size: .76rem;
  line-height: 1.4;
}

.industry-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.industry-label {
  display: inline-block;
  align-self: flex-start;
  margin-bottom: 20px;
  padding: 8px 12px;
  border: 1px solid #3e3e3e;
  border-radius: 9px;
  color: #9de4df;
  font-size: .7rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.industry-content h3 {
  color: white;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.industry-content p,
.industry-content li {
  color: #c8c8c8;
}

.industry-content ul {
  margin: 12px 0 30px;
  padding-left: 19px;
}

.integrations-section {
  background: #FFFFFF;
  padding: 80px 0;
  overflow: hidden;
}

.integrations-copy {
  margin: 54px auto;
  text-align: center;
}

.integrations-copy p {
  max-width: 680px;
  margin-inline: auto;
}

/* Marquee Carousel Styles */
.marquee-wrap {
  overflow: hidden;
  width: 100%;
  padding: 16px 0;
  position: relative;
  display: flex;
  user-select: none;
}

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

.marquee-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--off), transparent);
}

.marquee-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--off), transparent);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 60px;
  animation: marquee-left 28s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.marquee-track-reverse {
  display: flex;
  align-items: center;
  gap: 60px;
  animation: marquee-right 28s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.marquee-logo {
  height: 30px;
  width: auto;
  object-fit: contain;
  opacity: 0.55;
  filter: grayscale(1);
  transition: opacity 0.3s ease, filter 0.3s ease;
}

.marquee-logo:hover {
  opacity: 1;
  filter: none;
}

@keyframes marquee-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50% - 30px));
  }
}

@keyframes marquee-right {
  0% {
    transform: translateX(calc(-50% - 30px));
  }

  100% {
    transform: translateX(0);
  }
}

.pricing-section {
  background: linear-gradient(180deg, #f0fbfa 0%, #fff 90%);
}

.pricing-carousel-wrapper {
  position: relative;
  width: 100%;
  margin-top: 48px;
}

.pricing-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: white;
  color: var(--navy);
  cursor: pointer;
  z-index: 10;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.pricing-arrow.prev {
  left: -24px;
}

.pricing-arrow.next {
  right: -24px;
}

.pricing-arrow:hover:not(:disabled) {
  border-color: var(--teal);
  color: var(--teal);
  background: var(--off);
  box-shadow: 0 6px 16px rgba(0, 175, 167, 0.12);
}

.pricing-arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.pricing-arrow svg {
  width: 18px;
  height: 18px;
  display: block;
}

.pricing-carousel-container {
  position: relative;
  width: 100%;
  padding: 16px 0;
}

.pricing-carousel-window {
  overflow: hidden;
  width: 100%;
  padding: 24px 12px;
  margin: -24px -12px;
}

.pricing-carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 44px) / 3);
  gap: 22px;
  transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
  width: 100%;
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: white;
  box-shadow: none;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.price-card:hover {
  transform: translateY(-5px);
  border-color: var(--teal);
  box-shadow: 0 8px 24px rgba(14, 27, 43, 0.04);
}

.price-card.featured {
  border: 2px solid var(--teal);
  transform: translateY(-10px);
  box-shadow: 0 8px 24px rgba(0, 175, 167, .1);
}

.price-card.featured:hover {
  transform: translateY(-14px);
  box-shadow: 0 12px 30px rgba(0, 175, 167, 0.18);
}

.price-card-dark {
  background: var(--navy);
}

.price-card-dark h3,
.price-card-dark p,
.price-card-dark li,
.price-card-dark .price strong,
.price-card-dark .price small,
.price-card-dark .price span {
  color: white;
}

.plan-name {
  color: var(--teal-dark);
  font-size: .74rem;
  font-weight: 950;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.popular-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  padding: 7px 13px;
  border-radius: 999px;
  background: var(--teal);
  color: white;
  font-size: .68rem;
  font-weight: 950;
  white-space: nowrap;
}

/* VIP Plan Specific Styles */
.vip-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  padding: 7px 16px;
  border-radius: 999px;
  background: #20c766;
  color: white;
  font-size: .68rem;
  font-weight: 950;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(32, 199, 102, 0.3);
}

.vip-callout {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  margin: 18px 0 20px;
}

.vip-callout-kicker {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.68rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.vip-callout-title {
  color: white;
  font-size: 1.5rem;
  font-weight: 900;
  margin: 4px 0;
}

.vip-callout-sub {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.72rem;
  font-weight: 500;
}

.button-vip {
  background: #20c766 !important;
  color: white !important;
  border: none !important;
}

.button-vip:hover {
  background: #19a552 !important;
  box-shadow: 0 8px 20px rgba(32, 199, 102, 0.35) !important;
}

.vip-limit-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: auto;
  min-height: 48px;
  border-radius: 12px;
  background: #fff5eb;
  color: #c46300;
  font-size: 0.8rem;
  font-weight: 800;
  text-align: center;
  width: 100%;
}

.vip-limit-badge::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff8800;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin: 14px 0 12px;
}

.price strong {
  color: var(--navy);
  font-size: 3rem;
  letter-spacing: -.06em;
}

.price small,
.price span {
  color: #718493;
}

.price-card>p {
  min-height: 54px;
}

.price-card ul {
  display: grid;
  gap: 11px;
  margin: 22px 0 30px;
  padding: 0;
  list-style: none;
}

.price-card li {
  color: #536a7b;
  font-size: .88rem;
}

.price-card li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--teal);
  font-weight: 950;
}

.price-card .button {
  margin-top: auto;
}

.pricing-disclaimer {
  max-width: 900px;
  margin: 30px auto 0;
  text-align: center;
  font-size: .8rem;
}

.trust-feature-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.trust-feature-card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 30px;
  border-radius: 20px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 4px 18px rgba(14, 27, 43, 0.02);
  transition: all 0.3s ease;
}

.trust-feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(14, 27, 43, 0.05);
  border-color: var(--teal);
}

.trust-card-icon-wrap {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #eefbf9;
  color: var(--teal);
  flex-shrink: 0;
}

.trust-card-icon-wrap svg {
  width: 28px;
  height: 28px;
  display: block;
}

.trust-card-info {
  display: flex;
  flex-direction: column;
}

.trust-card-info h4,
.trust-card-info .trust-card-title {
  margin: 0 0 4px;
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 850;
}

.trust-card-info p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--muted);
}

/* Stat styling inside cards */
.trust-card-stat-header {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #718493;
  margin-bottom: -2px;
}

.trust-card-stat-value {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--teal-dark);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.trust-card-stat-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.35;
  margin-top: 2px;
}

.trust-card-stat-label strong {
  font-weight: 800;
  color: var(--navy);
}

.faq-section {
  background: var(--off);
}

.faq-layout {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 70px;
  align-items: start;
}

.faq-copy {
  position: sticky;
  top: 120px;
}

.accordion {
  display: grid;
  gap: 12px;
}

.accordion-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: white;
}

.accordion-item h3 {
  margin: 0;
}

.accordion-item button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  border: 0;
  background: transparent;
  text-align: left;
  color: var(--navy);
  font-size: .92rem;
  font-weight: 850;
  cursor: pointer;
}

.accordion-item button .accordion-icon,
.accordion-item button span:last-child {
  color: var(--teal-dark);
  font-size: 1.25rem;
  transition: transform .2s ease;
}

.accordion-item.open button .accordion-icon,
.accordion-item.open button span:last-child {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .28s ease;
}

.accordion-content p {
  margin: 0;
  padding: 0 20px 18px;
  font-size: .9rem;
}

.cta-section {
  padding: 70px 0;
  background: white;
}

.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  padding: 52px;
  border-radius: 30px;
  background: linear-gradient(120deg, var(--teal-dark), var(--navy));
  box-shadow: var(--shadow);
}

.cta-panel h2 {
  margin-bottom: 12px;
  color: white;
}

.cta-panel p {
  margin-bottom: 0;
  color: #d5e7e8;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer {
  padding: 64px 0 28px;
  background: var(--navy);
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 48px;
}

.footer-brand img {
  width: 140px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  max-width: 320px;
  margin-top: 18px;
  color: #aebdc8;
  font-size: .86rem;
}

.site-footer h2,
.site-footer .footer-title {
  margin-bottom: 18px;
  color: white;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .03em;
}

.site-footer a {
  display: block;
  margin: 10px 0;
  color: #b8c5ce;
  font-size: .82rem;
}

.site-footer a:hover {
  color: #6ae9e2;
}

.footer-bottom {
  margin-top: 50px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  text-align: center;
}

.footer-bottom p {
  color: #8397a6;
  font-size: .72rem;
  margin: 0;
  line-height: 1.6;
}

.footer-credit {
  white-space: nowrap;
}

.footer-credit a {
  color: #8397a6;
  text-decoration: underline;
}

.reveal {
  opacity: 1;
  transform: none;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1080px) {
  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-eyebrow {
    grid-column: auto;
    grid-row: auto;
    order: 1;
    text-align: center;
    margin-inline: auto;
    margin-bottom: 12px;
  }

  .hero-product {
    grid-column: auto;
    grid-row: auto;
    order: 2;
    margin-bottom: 32px;
  }

  .hero-copy {
    grid-column: auto;
    grid-row: auto;
    order: 3;
    text-align: center;
  }

  .hero-keyword,
  .hero-text {
    margin-inline: auto;
  }

  .hero-actions,
  .hero-proof {
    justify-content: center;
  }

  .hero-meta-partner {
    margin-inline: auto;
  }

  .hero-product {
    width: min(100%, 720px);
    margin-inline: auto;
  }

  .trust-strip-inner {
    grid-template-columns: 1fr;
    padding-block: 24px;
    text-align: center;
  }

  .meta-integration-card {
    justify-self: center;
    text-align: center;
  }

  .industry-tabs {
    grid-template-columns: .6fr 1fr;
  }

  .industry-content {
    grid-column: 1 / -1;
    padding-top: 20px;
  }

  .control-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .section {
    padding: 64px 0;
  }

  .header-inner {
    grid-template-columns: 64px 1fr auto;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .main-nav {
    position: absolute;
    top: 76px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: white;
    box-shadow: var(--shadow-soft);
  }

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

  .button-login {
    grid-column: 3;
    grid-row: 1;
    margin-right: 48px;
  }

  .hero {
    min-height: auto;
    padding-top: 72px;
  }

  .split-layout,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .reverse-mobile .ai-orbit {
    order: 2;
  }

  .pain-grid,
  .steps-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-arrow.prev {
    left: 8px;
  }

  .pricing-arrow.next {
    right: 8px;
  }

  .pricing-carousel-track {
    grid-auto-columns: 100%;
    gap: 16px;
  }

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

  .feature-card-large {
    grid-column: 1 / -1;
  }

  .step-card:not(:last-child)::after {
    display: block;
    content: "";
    position: absolute;
    top: auto;
    right: auto;
    left: 53px;
    bottom: -25px;
    width: 2px;
    height: 25px;
    background: var(--teal);
  }

  .showcase-media {
    display: none;
  }

  .trust-section .section-copy {
    text-align: center;
  }

  .trust-section .section-copy h2,
  .trust-section .section-copy p {
    margin-inline: auto;
  }

  .trust-section .check-list {
    text-align: left;
    justify-content: center;
  }

  .faq-copy {
    position: static;
    text-align: center;
  }

  .faq-copy h2,
  .faq-copy p {
    margin-inline: auto;
  }

  .cta-panel {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-panel h2,
  .cta-panel p {
    margin-inline: auto;
  }

  .cta-actions {
    justify-content: center;
  }

  .price-card.featured {
    transform: none;
  }

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

@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .header-inner {
    grid-template-columns: 54px 1fr auto;
    gap: 12px;
  }

  .brand {
    width: 48px;
  }

  .button-login {
    margin-right: 42px;
    min-height: 38px;
    padding-inline: 14px;
    font-size: .78rem;
  }

  .hero {
    padding: 58px 0 64px;
  }

  .hero-keyword {
    font-size: .95rem;
  }

  .hero-fixed {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
  }

  .hero-rotating-wrap {
    font-size: clamp(2.25rem, 11vw, 3.25rem);
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-proof {
    display: flex;
    justify-content: center;
    text-align: center;
  }

  .product-window {
    transform: none;
  }

  .product-body {
    grid-template-columns: 46px 1fr;
  }

  .product-conversations {
    display: none;
  }

  .floating-channel {
    display: none;
  }

  .pain-grid,
  .feature-grid,
  .mini-feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-card-large {
    grid-column: auto;
  }

  .control-panel {
    padding: 32px 24px;
  }

  .industry-tabs {
    grid-template-columns: 1fr;
  }

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

  .industry-tab {
    padding: 14px 10px 14px 34px;
  }

  .industry-visual {
    min-height: 390px;
  }

  .integration-map {
    min-height: 410px;
    transform: scale(.88);
  }

  .cta-panel {
    padding: 34px 24px;
  }

  .cta-actions .button {
    width: 100%;
  }

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

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

  .footer-brand img {
    margin-inline: auto;
    display: block; /* Garante que a margem auto funcione */
  }

  .footer-brand p {
    margin-inline: auto;
  }


}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* =========================================================
   V3 — Hero multicanal, selo Meta e casos de uso interativos
   ========================================================= */

.hero-copy h1 {
  max-width: 690px;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: clamp(3.2rem, 6vw, 6.2rem);
  font-weight: 950;
  line-height: .94;
  letter-spacing: -.072em;
}

.hero-channel-line {
  display: flex;
  min-height: 1.15em;
  align-items: baseline;
  gap: .24em;
  margin: 0 0 24px;
  color: #6b7d8d;
  font-family: Manrope, Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(2rem, 4.05vw, 4.25rem);
  font-weight: 520;
  line-height: 1.05;
  letter-spacing: -.055em;
}

.hero-channel-prefix {
  flex: 0 0 auto;
}

.hero-channel-line .hero-rotating-wrap {
  display: inline-block;
  min-width: 6.8ch;
  min-height: 1.12em;
  color: var(--teal);
  font-size: inherit;
  font-weight: 950;
  line-height: inherit;
  vertical-align: bottom;
}

.hero-text {
  max-width: 660px;
}

.meta-integration-card {
  min-width: 190px;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: transparent;
  text-align: initial;
}

.meta-integration-card img {
  width: 190px;
  height: auto;
}

.feature-channel-line {
  display: flex;
  min-height: 1.2em;
  align-items: baseline;
  gap: .25em;
  margin: -12px 0 22px;
  color: #6a7c8c;
  font-family: Manrope, Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1.5rem, 2.7vw, 2.75rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -.04em;
}

.feature-channel-line strong {
  display: inline-block;
  color: var(--teal-dark);
  font-weight: 950;
}

.feature-channel-line strong.is-leaving {
  animation: rotateOut .42s ease forwards;
}

.feature-channel-line strong.is-entering {
  animation: rotateIn .48s ease forwards;
}

.industry-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 24%, rgba(0, 175, 167, .13), transparent 25%),
    #181a1c;
}

.industry-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr);
  column-gap: 60px;
  align-items: end;
  max-width: none;
  margin-bottom: 54px;
}

.industry-heading .eyebrow {
  grid-column: 1 / -1;
}

.industry-heading h2 {
  margin-bottom: 0;
}

.industry-heading p {
  margin: 0 0 4px;
}

.industry-tabs {
  display: grid;
  grid-template-columns: 230px minmax(360px, .98fr) minmax(360px, 1fr);
  gap: 42px;
  min-height: 590px;
  align-items: center;
}

.industry-nav {
  display: grid;
  align-content: center;
  border-top: 1px solid #34383b;
}

.industry-tab {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 12px;
  min-height: 76px;
  padding: 16px 12px;
  border-bottom: 1px solid #34383b;
  color: #bac0c5;
  font-size: 1.02rem;
  font-weight: 650;
  letter-spacing: -.015em;
}

.industry-tab::before {
  content: none;
}

.industry-tab span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid #51585d;
  border-radius: 50%;
  color: #adb5bb;
  font-size: .62rem;
  font-weight: 900;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.industry-tab:hover {
  color: white;
}

.industry-tab.active {
  color: white;
  font-weight: 900;
}

.industry-tab.active span {
  border-color: var(--teal);
  background: var(--teal);
  color: white;
}

.industry-visual {
  min-height: 0;
  aspect-ratio: 1 / 1;
  display: block;
  overflow: hidden;
  margin: 0;
  border: 1px solid #30383d;
  border-radius: 34px;
  background: #0d1317;
  box-shadow: 0 38px 85px rgba(0, 0, 0, .34);
}

.industry-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .22s ease, transform .38s ease;
}

.industry-visual img.is-changing {
  opacity: .2;
  transform: scale(.985);
}

.industry-visual figcaption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.industry-content {
  padding: 12px 0;
}

.industry-content h3 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 3.5vw, 3.45rem);
  line-height: 1;
}

.industry-content p {
  font-size: 1rem;
}

.industry-content ul {
  display: grid;
  gap: 12px;
  margin: 20px 0 32px;
  padding: 0;
  list-style: none;
}

.industry-content li {
  position: relative;
  padding-left: 25px;
}

.industry-content li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #64e3dd;
  font-weight: 950;
}

@media (max-width: 1080px) {
  .hero-copy h1 {
    margin-inline: auto;
  }

  .hero-channel-line {
    justify-content: center;
  }

  .industry-heading {
    grid-template-columns: 1fr;
  }

  .industry-heading p {
    margin-top: 20px;
  }

  .industry-tabs {
    grid-template-columns: 210px minmax(0, 1fr);
  }

  .industry-content {
    grid-column: 1 / -1;
    padding: 12px 0 0 252px;
  }
}

@media (max-width: 860px) {
  .hero-copy h1 {
    font-size: clamp(3rem, 11vw, 5rem);
  }

  .hero-channel-line {
    font-size: clamp(2rem, 7.7vw, 3.7rem);
  }

  .industry-tabs {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .industry-nav {
    grid-template-columns: repeat(4, minmax(120px, 1fr));
    overflow-x: auto;
    border: 0;
  }

  .industry-tab {
    min-height: 62px;
    border-top: 1px solid #34383b;
    white-space: nowrap;
  }

  .industry-visual {
    width: min(100%, 620px);
    margin-inline: auto;
  }

  .industry-content {
    grid-column: auto;
    padding: 0;
  }
}

@media (max-width: 620px) {
  .hero-copy h1 {
    font-size: clamp(2.8rem, 14vw, 4.1rem);
  }

  .hero-channel-line {
    display: block;
    min-height: 2.16em;
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero-channel-line .hero-rotating-wrap {
    display: block;
    min-width: 0;
  }

  .feature-channel-line {
    display: block;
    min-height: 2.2em;
  }

  .feature-channel-line strong {
    display: block;
  }

  .meta-integration-card img {
    width: 172px;
  }

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

  .industry-tab {
    white-space: normal;
  }

  .industry-visual {
    border-radius: 24px;
  }
}

/* V4 — Meta Business Partner no hero + bloco integrado Canais/IA */
.hero-meta-partner {
  display: flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  margin: 32px 0 0;
}

.hero-meta-partner>span {
  color: #506778;
  font-size: .78rem;
  font-weight: 850;
}

.hero-meta-partner img {
  display: block;
  width: 116px;
  height: auto;
  object-fit: contain;
}

.anchor-target {
  position: absolute;
  top: -90px;
}

.channel-ai-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 4%, rgba(0, 175, 167, .07), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #fbfdfd 100%);
}

.channel-ai-layout {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: clamp(56px, 8vw, 118px);
  align-items: start;
}

.channel-ai-column>.eyebrow {
  display: inline-block;
  margin-bottom: 12px;
}

.channel-ai-column>h2 {
  max-width: 580px;
  margin-bottom: 26px;
}

.channel-selector-light {
  max-width: 540px;
  padding: 22px;
  border: 1px solid #e3ebee;
  border-radius: 24px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 22px 55px rgba(16, 40, 55, .10);
  color: var(--text);
}

.channel-selector-light .channel-toggle-list {
  gap: 10px;
}

.channel-selector-light .channel-toggle {
  grid-template-columns: 38px 1fr 38px;
  min-height: 54px;
  padding: 9px 13px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(17, 38, 51, .035);
}

.channel-selector-light .channel-toggle strong {
  color: #43596a;
  font-size: .9rem;
}

.channel-selector-light .channel-symbol {
  width: 32px;
  height: 32px;
  font-size: .54rem;
  letter-spacing: -.03em;
}

.channel-ai-copy>p {
  max-width: 680px;
  margin-bottom: 34px;
  font-size: 1rem;
}

.business-ai-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 24px;
}

.business-ai-grid article {
  min-height: 172px;
  padding: 4px 0 4px 20px;
  border-left: 3px solid var(--teal);
}

.business-ai-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 15px;
  border-radius: 12px;
  background: var(--teal-light);
  color: var(--teal-dark);
  font-size: 1.15rem;
  font-weight: 950;
}

.business-ai-icon svg {
  width: 20px;
  height: 20px;
  display: block;
}

.business-ai-grid h3 {
  margin-bottom: 8px;
  font-size: 1rem;
  line-height: 1.25;
}

.business-ai-grid p {
  margin: 0;
  color: #6f8290;
  font-size: .84rem;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .channel-ai-layout {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .channel-selector-light {
    max-width: none;
  }

  .hero-meta-partner img {
    width: 106px;
  }

  .channel-ai-column {
    text-align: center;
  }

  .channel-ai-column > .eyebrow {
    margin-inline: auto;
  }

  .channel-ai-column > h2 {
    margin-inline: auto;
  }

  .channel-ai-copy > p {
    margin-inline: auto;
  }

  .business-ai-grid {
    text-align: left;
  }
}

@media (max-width: 560px) {
  .hero-meta-partner {
    align-items: center;
    flex-direction: column;
    gap: 7px;
    margin-inline: auto;
  }

  .business-ai-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .business-ai-grid article {
    min-height: 0;
  }

  .channel-selector-light {
    padding: 16px;
    border-radius: 18px;
  }
}


/* V5 — Recursos em cards + CRM Kanban */
.resources-showcase {
  padding-bottom: 42px;
}

.resources-heading {
  max-width: 980px;
  margin: 0 auto 46px;
}

.resources-heading h2 {
  max-width: none;
}

.resources-heading>p {
  max-width: 760px;
  margin-inline: auto;
}

.feature-channel-inline {
  white-space: nowrap;
}

.feature-channel-inline strong {
  display: inline-block;
  min-width: 9ch;
  color: var(--teal-dark);
}

.feature-channel-inline strong.is-leaving {
  animation: rotateOut .42s ease forwards;
}

.feature-channel-inline strong.is-entering {
  animation: rotateIn .48s ease forwards;
}

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

.resource-card {
  min-height: 220px;
  padding: 26px 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(14, 27, 43, .09);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.resource-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 175, 167, .28);
  box-shadow: 0 24px 58px rgba(14, 27, 43, .14);
}

.resource-card-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 24px;
  border-radius: 13px;
  background: linear-gradient(135deg, #d9faf7, #effffd);
  color: var(--teal-dark);
  font-size: 1.15rem;
  font-weight: 950;
}

.resource-card-icon svg {
  width: 20px;
  height: 20px;
  display: block;
}

.resource-card h3 {
  margin-bottom: 10px;
  font-size: 1.06rem;
}

.resource-card p {
  margin: 0;
  font-size: .88rem;
  line-height: 1.65;
}

.kanban-section {
  padding-top: 28px;
}

.kanban-panel {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(560px, 1.14fr);
  gap: 48px;
  align-items: center;
  padding: 52px;
  overflow: hidden;
  border-radius: 32px;
  background:
    radial-gradient(circle at 86% 12%, rgba(0, 175, 167, .16), transparent 30%),
    linear-gradient(135deg, #0d1b2a, #15354b);
  box-shadow: 0 30px 70px rgba(14, 27, 43, .22);
}

.kanban-copy h2 {
  color: #fff;
  font-size: clamp(2rem, 3.5vw, 3.25rem);
}

.kanban-copy p {
  max-width: 620px;
  color: #c4d0d9;
}

.kanban-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.kanban-benefits span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  color: #fff;
  font-size: .72rem;
  font-weight: 850;
}

.kanban-widget {
  min-width: 0;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 24px;
  background: #f7fafb;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .26);
}

.kanban-widget-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}

.kanban-widget-topbar small {
  display: block;
  color: #788997;
  font-size: .66rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.kanban-widget-topbar strong {
  display: block;
  color: var(--navy);
  font-size: 1rem;
}

.kanban-widget-topbar button {
  padding: 9px 12px;
  border: 0;
  border-radius: 10px;
  background: var(--navy);
  color: #fff;
  font-size: .7rem;
  font-weight: 850;
}

.kanban-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.kanban-column {
  min-width: 0;
  padding: 12px;
  border: 1px solid #e4ebef;
  border-radius: 15px;
  background: #edf3f5;
}

.kanban-column.active {
  border-color: rgba(0, 175, 167, .38);
  background: #e9f8f7;
}

.kanban-column>header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 11px;
  color: var(--navy);
  font-size: .67rem;
  font-weight: 900;
}

.kanban-column>header b {
  display: grid;
  place-items: center;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 999px;
  background: #dbe5e9;
  font-size: .62rem;
}

.kanban-lead {
  padding: 12px;
  border: 1px solid #dfe7eb;
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(14, 27, 43, .06);
}

.kanban-lead+.kanban-lead {
  margin-top: 9px;
}

.kanban-lead.highlighted {
  border-color: rgba(0, 175, 167, .45);
  box-shadow: 0 10px 28px rgba(0, 175, 167, .13);
}

.kanban-lead.subtle {
  opacity: .78;
}

.kanban-lead-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 9px;
}

.kanban-lead-meta>span {
  color: #95a3ad;
  font-size: .55rem;
}

.kanban-avatar {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  color: #fff;
  font-size: .55rem;
  font-style: normal;
  font-weight: 900;
}

.avatar-one {
  background: #d75a7a;
}

.avatar-two {
  background: #3f83d1;
}

.avatar-three {
  background: #d88941;
}

.avatar-four {
  background: #7463c8;
}

.kanban-lead strong {
  display: block;
  color: var(--navy);
  font-size: .72rem;
}

.kanban-lead p {
  min-height: 48px;
  margin: 7px 0 12px;
  color: #667986;
  font-size: .61rem;
  line-height: 1.45;
}

.kanban-lead footer {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  align-items: center;
}

.kanban-lead footer span {
  color: #778995;
  font-size: .53rem;
}

.kanban-lead footer em {
  padding: 4px 6px;
  border-radius: 999px;
  background: var(--teal-light);
  color: var(--teal-dark);
  font-size: .49rem;
  font-style: normal;
  font-weight: 900;
}

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

  .kanban-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .feature-channel-inline {
    display: block;
    margin-top: .14em;
    white-space: normal;
  }

  .resource-card-grid {
    grid-template-columns: 1fr;
  }

  .resource-card {
    min-height: auto;
  }

  .kanban-panel {
    padding: 30px 16px;
    border-radius: 24px;
  }

  .kanban-widget {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: visible;
    padding: 16px;
  }

  .kanban-board {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    width: 100%;
    max-width: 100%;
    padding-bottom: 0;
    overflow-x: visible !important;
  }

  .kanban-board::-webkit-scrollbar {
    display: none;
  }

  .kanban-column {
    width: 100%;
    flex: none;
    box-sizing: border-box;
  }
}


/* V6 — showcase interativo no lugar de aplicações por segmento */
.showcase-heading {
  max-width: 760px;
  margin: 0 auto 40px;
}

.showcase-heading h2 {
  color: #fff;
  font-size: clamp(2.2rem, 4.4vw, 3.6rem);
  margin-bottom: 16px;
}

.showcase-heading p {
  color: #c4d0d9;
  font-size: 1.15rem;
  line-height: 1.5;
  margin: 0;
}

.showcase-card {
  background: #f7f7f7;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(0, 0, 0, .24);
}

.showcase-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid #dde1e4;
}

.showcase-tab {
  position: relative;
  min-height: 78px;
  padding: 22px 16px;
  background: transparent;
  border: 0;
  color: #17212c;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -.02em;
}

.showcase-tab+.showcase-tab::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 22px;
  background: #ced4da;
  transform: translateY(-50%);
}

.showcase-tab.active {
  font-weight: 900;
}

.showcase-tab.active::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 0;
  height: 3px;
  background: var(--teal);
  border-radius: 999px;
}

.showcase-body {
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(360px, 1.3fr);
  gap: 46px;
  padding: 56px;
  align-items: center;
}

.showcase-copy {
  color: #17212c;
}

.showcase-step {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #2f6df6;
  color: #fff;
  font-size: 1.75rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 30px;
}

.showcase-kicker {
  display: inline-block;
  margin-bottom: 14px;
  color: #758392;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .75rem;
  font-weight: 800;
}

.showcase-copy h3 {
  margin-bottom: 18px;
  color: #161b20;
  font-size: clamp(2rem, 3.3vw, 3rem);
  line-height: 1.06;
  letter-spacing: -.04em;
}

.showcase-copy p {
  max-width: 31ch;
  color: #5a6672;
  font-size: 1.18rem;
}

.showcase-controls {
  display: flex;
  gap: 14px;
  margin-top: 38px;
}

.showcase-arrow {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #2f6df6;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(47, 109, 246, .25);
  transition: background .2s ease, transform .2s ease;
}

.showcase-arrow:hover,
.showcase-arrow:focus-visible {
  background: #1d57d7;
  transform: translateY(-2px);
}

.showcase-arrow:active {
  transform: translateY(0);
}

.showcase-arrow svg {
  width: 20px;
  height: 20px;
  display: block;
}

.showcase-pagination {
  display: flex;
  gap: 10px;
  margin-top: 26px;
}

.showcase-dot {
  width: 62px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: #d7dadd;
  opacity: .85;
}

.showcase-dot.active {
  background: #17181a;
}

.showcase-media {
  min-height: 420px;
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 22px 45px rgba(15, 20, 26, .16);
  background: #e8ebee;
}

.showcase-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: opacity .26s ease, transform .34s ease;
}

.showcase-media img.is-changing {
  opacity: .25;
  transform: scale(.985);
}

@media (max-width: 1080px) {
  .showcase-body {
    grid-template-columns: 1fr;
  }

  .showcase-copy p {
    max-width: none;
  }
}

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

  .showcase-tab+.showcase-tab::before {
    content: none;
  }

  .showcase-body {
    padding: 32px;
    gap: 28px;
  }

  .showcase-copy h3 {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .showcase-media {
    min-height: 320px;
  }
}

@media (max-width: 620px) {
  .showcase-tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px 16px 0 0;
    overflow: hidden;
  }

  .showcase-tab {
    text-align: center;
    padding: 14px 10px;
    min-height: 52px;
    font-size: 0.9rem;
    background: #fbfcfd;
  }

  .showcase-tab:nth-child(1),
  .showcase-tab:nth-child(2) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }

  .showcase-tab:nth-child(odd) {
    border-right: 1px solid rgba(0, 0, 0, 0.06);
  }

  .showcase-tab.active {
    background: white;
  }

  .showcase-tab.active::after {
    left: 12px;
    right: 12px;
    bottom: 0;
    height: 3px;
    background: var(--teal);
  }

  .showcase-body {
    padding: 24px;
  }

  .showcase-pagination {
    gap: 8px;
  }

  .showcase-dot {
    width: calc(25% - 6px);
  }
}

/* Legal Pages Styling */
.legal-content {
  padding: 140px 0 96px; /* Offset the fixed header height */
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h1 {
  font-size: 2.6rem;
  font-weight: 850;
  margin-bottom: 12px;
  color: var(--navy);
}

.legal-content .last-updated {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 40px;
}

.legal-content h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 36px 0 16px;
  color: var(--navy);
}

.legal-content p {
  font-size: 0.96rem;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 20px;
}

.legal-content ul {
  margin: 16px 0 24px;
  padding-left: 20px;
}

.legal-content li {
  font-size: 0.96rem;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 10px;
}

.legal-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin: 28px 0 12px;
}

.subop-table-wrapper {
  overflow-x: auto;
  margin: 20px 0 32px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.subop-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  min-width: 560px;
}

.subop-table thead tr {
  background: rgba(0, 175, 167, 0.08);
}

.subop-table th {
  text-align: left;
  padding: 12px 16px;
  color: #00AFA7;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.subop-table td {
  padding: 12px 16px;
  color: var(--muted);
  line-height: 1.55;
  vertical-align: top;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.subop-table tbody tr:last-child td {
  border-bottom: none;
}

.subop-table tbody tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}