﻿:root {
  --bg: #0b1624;
  --bg-2: #0f2236;
  --surface: #122a42;
  --surface-2: #162f4b;
  --text: #e6f2ff;
  --muted: #a6b4c7;
  --accent: #2fd3c7;
  --accent-2: #f5b55a;
  --border: rgba(99, 140, 180, 0.25);
  --shadow: 0 24px 60px rgba(4, 12, 20, 0.55);
  --radius: 20px;
  --landing-top-bg:
    radial-gradient(circle at 18% 26%, rgba(47, 211, 199, 0.08), transparent 28%),
    radial-gradient(circle at 80% 18%, rgba(123, 178, 255, 0.07), transparent 24%),
    linear-gradient(180deg, rgba(7, 15, 24, 0.04), rgba(7, 15, 24, 0.34)),
    linear-gradient(180deg, rgba(5, 11, 19, 0.92) 0%, rgba(5, 11, 19, 0.84) 100%),
    linear-gradient(120deg, rgba(10, 29, 46, 0.74) 0%, rgba(8, 18, 30, 0.46) 56%, rgba(8, 18, 30, 0.3) 100%),
    url("/static/img/BARBER%20IA.png") center 20% / cover no-repeat,
    radial-gradient(circle at top, #122a45 0%, #08101a 55%, #050a12 100%);
  --landing-section-bg: transparent;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  font-family: "Sora", sans-serif;
  background: var(--landing-top-bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
}

body {
  position: relative;
}

body.landing-page {
  --landing-topbar-offset: 82px;
  padding-top: var(--landing-topbar-offset);
}

body.landing-page [id] {
  scroll-margin-top: calc(var(--landing-topbar-offset) + 18px);
}

body.menu-open {
  overflow: hidden;
}

.ambient {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

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

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.ambient .blob {
  position: absolute;
  filter: blur(0px);
  opacity: 0.28;
  border-radius: 999px;
  z-index: 0;
}

.ambient .blob-1 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(47, 211, 199, 0.35), transparent 70%);
  top: -120px;
  left: -120px;
  animation: float 12s ease-in-out infinite;
}

.ambient .blob-2 {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(245, 181, 90, 0.2), transparent 70%);
  top: 10%;
  right: -180px;
  animation: float 15s ease-in-out infinite;
}

.ambient .blob-3 {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(77, 135, 203, 0.18), transparent 70%);
  bottom: 8%;
  left: 30%;
  animation: float 18s ease-in-out infinite;
}

.ambient .grid {
  position: absolute;
  inset: 0;
  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: 80px 80px;
  opacity: 0.16;
  pointer-events: none;
  z-index: 0;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-20px) translateX(10px);
  }
}

@keyframes logoPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
}

@keyframes salesCardGlow {
  0%,
  100% {
    box-shadow: 0 24px 60px rgba(4, 12, 20, 0.48);
  }
  50% {
    box-shadow: 0 26px 66px rgba(20, 67, 96, 0.62);
  }
}

@keyframes stepPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(47, 211, 199, 0.22);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(47, 211, 199, 0);
  }
}

@keyframes ctaGlow {
  0%,
  100% {
    box-shadow: 0 18px 35px rgba(12, 22, 34, 0.18);
  }
  50% {
    box-shadow: 0 22px 42px rgba(12, 22, 34, 0.28);
  }
}

@keyframes specialistArrowNudge {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(5px);
  }
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 10px 0 6px;
  isolation: isolate;
}

.topbar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 10, 18, 0.88) 0%, rgba(4, 10, 18, 0.48) 72%, rgba(4, 10, 18, 0) 100%);
  pointer-events: none;
  z-index: -1;
}

body.landing-page .topbar {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 120;
}

.topbar > .container {
  width: min(1320px, 94%);
}

.topbar-inner {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr) max-content;
  align-items: center;
  gap: clamp(18px, 2vw, 30px);
  min-height: 66px;
  padding: 10px 18px 10px 14px;
  border-radius: 22px;
  border: 1px solid rgba(124, 162, 205, 0.18);
  background:
    linear-gradient(180deg, rgba(12, 25, 39, 0.94), rgba(8, 18, 31, 0.88)),
    rgba(7, 15, 24, 0.82);
  box-shadow:
    0 16px 34px rgba(2, 8, 16, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(18px);
  position: relative;
}

.topbar-inner::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(123, 232, 239, 0.34), transparent);
  opacity: 0.56;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  border: 1px solid rgba(124, 162, 205, 0.18);
  background: linear-gradient(160deg, rgba(16, 35, 55, 0.92), rgba(9, 19, 32, 0.98));
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
  cursor: pointer;
  box-shadow:
    0 14px 28px rgba(3, 10, 18, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(95, 233, 240, 0.42);
  box-shadow:
    0 16px 30px rgba(3, 10, 18, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  outline: none;
}

.menu-toggle span {
  width: 19px;
  height: 2px;
  border-radius: 999px;
  background: #eef8ff;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: #f4fbff;
}

.brand-landing {
  flex: 0 0 auto;
  padding: 2px 0;
  border-radius: 16px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.brand-landing:hover,
.brand-landing:focus-visible {
  transform: translateY(-1px);
  opacity: 1;
}

.brand-landing:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(95, 233, 240, 0.18);
}

.brand-mark {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  border: 1px solid rgba(124, 162, 205, 0.2);
  background:
    radial-gradient(circle at 30% 24%, rgba(123, 232, 239, 0.15), transparent 44%),
    linear-gradient(160deg, rgba(15, 33, 53, 0.96), rgba(8, 18, 30, 0.98));
  box-shadow:
    0 12px 24px rgba(3, 10, 18, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.brand-mark-svg {
  width: 30px;
  height: 30px;
  display: block;
}

.brand-mark__halo {
  fill: none;
  stroke: rgba(188, 220, 255, 0.16);
  stroke-width: 2.2;
}

.brand-mark__orbit,
.brand-mark__arrow,
.brand-mark__calendar-bar,
.brand-mark__calendar-rings,
.brand-mark__calendar-check {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-mark__orbit {
  stroke-width: 4.1;
}

.brand-mark__orbit--top,
.brand-mark__arrow--top {
  stroke: #7de8ff;
}

.brand-mark__orbit--bottom,
.brand-mark__arrow--bottom {
  stroke: #49dbcf;
}

.brand-mark__arrow {
  stroke-width: 3.7;
}

.brand-mark__calendar {
  fill: rgba(234, 246, 255, 0.1);
  stroke: rgba(224, 243, 255, 0.88);
  stroke-width: 2.4;
}

.brand-mark__calendar-bar,
.brand-mark__calendar-rings {
  stroke: rgba(224, 243, 255, 0.82);
  stroke-width: 2.4;
}

.brand-mark__calendar-check {
  stroke: #f6fbff;
  stroke-width: 3;
}

.brand-copy {
  min-width: 0;
  display: inline-flex;
  align-items: center;
}

.brand-wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 0.06em;
  white-space: nowrap;
  font-size: clamp(1.06rem, 0.94rem + 0.28vw, 1.24rem);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.045em;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.16);
}

.brand-wordmark-go {
  color: #9beff0;
}

.brand-wordmark-rest {
  color: #f5fbff;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(2px, 0.45vw, 10px);
  min-width: 0;
  padding: 0;
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  padding: 7px 9px;
  border-radius: 12px;
  font-size: clamp(0.84rem, 0.79rem + 0.12vw, 0.92rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #c3d3e6;
  overflow: hidden;
  transition: color 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.nav a::before {
  content: "";
  position: absolute;
  inset: auto 9px 5px 9px;
  height: 2px;
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: center;
  background: linear-gradient(90deg, rgba(47, 211, 199, 0.12), rgba(47, 211, 199, 0.95), rgba(47, 211, 199, 0.12));
  transition: transform 0.32s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  inset: -120% -25%;
  background: linear-gradient(120deg, rgba(47, 211, 199, 0), rgba(47, 211, 199, 0.15), rgba(47, 211, 199, 0));
  transform: rotate(14deg) translateX(-24%);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.35s ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: #e9f7ff;
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.06);
}

.nav a:hover::before,
.nav a:focus-visible::before {
  transform: scaleX(1);
}

.nav a:hover::after,
.nav a:focus-visible::after {
  opacity: 1;
  transform: rotate(14deg) translateX(18%);
}

.nav a:nth-child(1) {
  animation: none;
}

.nav a:nth-child(2) {
  animation: none;
}

.nav a:nth-child(3) {
  animation: none;
}

.nav a:nth-child(4) {
  animation: none;
}

.nav a:nth-child(5) {
  animation: none;
}

@keyframes navFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-1.5px);
  }
}

.actions {
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-end;
  min-width: max-content;
}

.actions .btn {
  white-space: nowrap;
  flex: 0 0 auto;
}

.mobile-nav-panel {
  display: none;
  margin-top: 10px;
  gap: 14px;
  padding: 14px;
  border-radius: 24px;
  border: 1px solid rgba(124, 162, 205, 0.16);
  background:
    linear-gradient(180deg, rgba(12, 26, 42, 0.95), rgba(7, 15, 25, 0.94)),
    rgba(6, 14, 24, 0.92);
  box-shadow:
    0 18px 36px rgba(2, 8, 16, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(18px);
}

.mobile-nav-links,
.mobile-nav-actions {
  display: grid;
  gap: 10px;
}

.mobile-nav-links a {
  display: block;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(124, 162, 205, 0.14);
  background: rgba(10, 21, 35, 0.84);
  font-weight: 600;
  color: #dce8f8;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.mobile-nav-links a:hover,
.mobile-nav-links a:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(95, 233, 240, 0.28);
  background: rgba(13, 28, 44, 0.92);
  outline: none;
}

.mobile-nav-actions .btn {
  width: 100%;
}

.topbar .btn {
  padding: 0 18px;
  font-size: 0.84rem;
  border-radius: 999px;
  min-height: 40px;
}

.actions .btn.ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.14);
}

.actions .btn.primary {
  box-shadow: 0 14px 28px rgba(47, 211, 199, 0.18);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
  animation: none;
}

.btn::after {
  content: "";
  position: absolute;
  inset: -140% -30%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0));
  transform: translateX(-120%) rotate(16deg);
  opacity: 0;
  transition: transform 0.55s ease, opacity 0.4s ease;
}

.btn:hover::after,
.btn:focus-visible::after {
  transform: translateX(120%) rotate(16deg);
  opacity: 1;
}

.btn > * {
  position: relative;
  z-index: 1;
}

.btn.primary {
  background: linear-gradient(135deg, #46dbcf, #2fd3c7);
  color: #041018;
  box-shadow: 0 16px 30px rgba(47, 211, 199, 0.18);
}

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

.btn.ghost {
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.btn.ghost:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn.trial {
  background: rgba(245, 181, 90, 0.12);
  color: #ffd89e;
  border-color: rgba(245, 181, 90, 0.32);
}

.btn.trial:hover {
  transform: translateY(-2px);
  background: rgba(245, 181, 90, 0.22);
  border-color: rgba(245, 181, 90, 0.7);
}

.btn.specialist {
  font-family: "Nunito", "Sora", sans-serif;
  background: linear-gradient(120deg, var(--accent-2), #ffd089);
  color: #1a1206;
  border-color: rgba(245, 181, 90, 0.85);
  box-shadow: 0 18px 40px rgba(245, 181, 90, 0.32);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.btn.specialist:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 22px 48px rgba(245, 181, 90, 0.4);
}

.btn.specialist .btn-arrow {
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
  animation: specialistArrowNudge 1.4s ease-in-out infinite;
}

.hero {
  position: relative;
  padding: 132px 0 102px;
  min-height: calc(100vh - 68px);
  z-index: 1;
  overflow: hidden;
}

.hero::before {
  content: none;
}

.hero::after {
  content: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(340px, 0.94fr);
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 640px;
}

.hero-copy h1 {
  font-family: "Nunito", "Sora", sans-serif;
  font-size: clamp(3.2rem, 6vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.02;
  margin: 18px 0 18px;
  max-width: 12ch;
}

.hero-copy h1 span {
  color: #7ce9df;
}

.hero-copy p {
  color: #c6d1df;
  font-size: 1.08rem;
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 58ch;
}

.pill {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(47, 211, 199, 0.1);
  border: 1px solid rgba(47, 211, 199, 0.18);
  color: #bdf5ef;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.hero-cta {
  display: grid;
  gap: 18px;
  margin-bottom: 26px;
}

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

.hero-cta-main .btn {
  min-height: 56px;
  padding: 0 26px;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

.hero-secondary-btn {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
}

.hero-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: #d5e2f1;
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.2s ease, transform 0.2s ease;
}

.hero-contact-link:hover,
.hero-contact-link:focus-visible {
  color: #f3f7fb;
  transform: translateX(2px);
}

.hero-contact-link i {
  color: #7ce9df;
}

.hero-value-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.hero-value-strip span {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #e3edf7;
  font-size: 0.84rem;
  font-weight: 600;
}

.hero-trust-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 56ch;
  color: #9fb0c3;
  font-size: 0.92rem;
}

.hero-trust-note i {
  color: #7ce9df;
  margin-top: 4px;
}

.hero-visual {
  display: flex;
  justify-content: flex-end;
}

.hero-showcase {
  width: min(100%, 490px);
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(10, 22, 35, 0.76), rgba(10, 22, 35, 0.94));
  border: 1px solid rgba(159, 206, 255, 0.16);
  box-shadow: 0 30px 80px rgba(3, 10, 18, 0.48);
}

.hero-showcase__top {
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
}

.hero-showcase__eyebrow {
  display: inline-flex;
  width: fit-content;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #9fceff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-showcase__top strong {
  font-family: "Nunito", "Sora", sans-serif;
  font-size: 1.72rem;
  font-weight: 700;
  line-height: 1.12;
  color: #eef7ff;
}

.hero-showcase__top p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.hero-showcase__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}

.hero-metric-card {
  display: grid;
  gap: 6px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-metric-card small {
  color: #91a4b8;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-metric-card strong {
  color: #eef7ff;
  font-size: 1rem;
}

.hero-metric-card span {
  color: #a6b4c7;
  font-size: 0.83rem;
  line-height: 1.5;
}

.hero-showcase__frame {
  position: relative;
  padding: 18px;
  border-radius: 22px;
  background: rgba(3, 10, 18, 0.46);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.hero-showcase__frame img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
  border-radius: 16px;
  border: 1px solid rgba(124, 154, 187, 0.16);
  background: #09131f;
}

.hero-showcase__badge {
  position: absolute;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(7, 16, 25, 0.88);
  border: 1px solid rgba(124, 154, 187, 0.18);
  color: #e8f2fb;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 12px 24px rgba(2, 8, 16, 0.32);
}

.hero-showcase__badge--top {
  top: -12px;
  left: 14px;
  max-width: 72%;
}

.hero-showcase__badge--bottom {
  right: 14px;
  bottom: -12px;
  max-width: 62%;
}

.mockup {
  width: 100%;
  max-width: 520px;
  background: linear-gradient(160deg, rgba(18, 42, 66, 0.85), rgba(10, 22, 35, 0.95));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.mockup-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.9rem;
  color: var(--muted);
}

.mockup-header .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot.red {
  background: #ff5f57;
}

.dot.yellow {
  background: #fdbc2e;
}

.dot.green {
  background: #28c840;
}

.mockup-title {
  margin-left: auto;
}

.mockup-body {
  padding: 0;
  display: grid;
  gap: 0;
  background: transparent;
}

.agenda-header {
  font-weight: 600;
  letter-spacing: 0.01em;
}

.agenda-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  color: #f4f8ff;
  box-shadow: none;
}

.agenda-title {
  font-size: 1rem;
}

.agenda-body {
  padding: 6px 0 10px;
}

.agenda-list {
  display: grid;
  gap: 10px;
  padding: 14px 16px 6px;
}

.agenda-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.agenda-item:last-child {
  border-bottom: none;
}

.agenda-time {
  font-weight: 700;
  color: var(--accent-2);
  font-size: 1rem;
}

.agenda-info strong {
  display: block;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  color: #e6f2ff;
}

.agenda-info span {
  color: var(--muted);
  font-size: 0.82rem;
}

.agenda-status {
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.agenda-status.ok {
  background: rgba(47, 211, 199, 0.2);
  color: var(--accent);
}

.agenda-status.warn {
  background: rgba(245, 181, 90, 0.2);
  color: var(--accent-2);
}

.agenda-status.booked {
  background: rgba(255, 255, 255, 0.16);
  color: #d6deea;
}

.agenda-status.checkin {
  background: rgba(77, 135, 203, 0.22);
  color: #bcd6ff;
}

.agenda-footer {
  text-align: center;
  padding: 8px 16px 16px;
  color: var(--muted);
  font-size: 0.82rem;
}

.hero-ops-section {
  padding-top: 18px;
  background: var(--landing-section-bg);
}

.hero-ops-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: 40px;
  align-items: center;
}

.hero-ops-copy h2 {
  font-family: "Nunito", "Sora", sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.08;
  margin: 12px 0 16px;
  max-width: 15ch;
}

.hero-ops-copy p {
  max-width: 58ch;
  color: var(--muted);
  line-height: 1.8;
}

.hero-ops-points {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.hero-ops-points article {
  display: grid;
  gap: 6px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(13, 29, 46, 0.58);
  border: 1px solid rgba(99, 140, 180, 0.2);
}

.hero-ops-points strong {
  color: #eef7ff;
  font-size: 1rem;
}

.hero-ops-points span {
  color: var(--muted);
}

.hero-ops-preview {
  display: grid;
  gap: 18px;
}

.hero-ops-preview__frame {
  position: relative;
  padding: 18px;
  border-radius: 26px;
  background: linear-gradient(170deg, rgba(16, 35, 56, 0.88), rgba(8, 19, 31, 0.94));
  border: 1px solid rgba(123, 178, 255, 0.18);
  box-shadow: 0 28px 70px rgba(3, 10, 18, 0.48);
}

.hero-ops-preview__frame img {
  display: block;
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(123, 178, 255, 0.16);
  box-shadow: 0 18px 42px rgba(3, 10, 18, 0.3);
}

.hero-ops-preview__badge {
  position: absolute;
  padding: 11px 14px;
  border-radius: 14px;
  background: rgba(6, 14, 23, 0.92);
  border: 1px solid rgba(123, 178, 255, 0.18);
  color: #e9f4ff;
  font-size: 0.82rem;
  font-weight: 600;
  box-shadow: 0 12px 24px rgba(2, 8, 16, 0.34);
}

.hero-ops-preview__badge--top {
  top: -12px;
  left: 16px;
  max-width: 72%;
}

.hero-ops-preview__badge--bottom {
  right: 16px;
  bottom: -12px;
  max-width: 62%;
}

.hero-ops-preview__note {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-ops-preview__note span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 999px;
  background: rgba(13, 29, 46, 0.7);
  border: 1px solid rgba(99, 140, 180, 0.18);
  color: #dce8f6;
  font-size: 0.88rem;
  font-weight: 600;
}

.hero-ops-preview__note i {
  color: #7ce9df;
}

.mockup-intro {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 16px;
}

.mockup-intro h3 {
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.mockup-intro p {
  color: var(--muted);
  font-size: 0.9rem;
}

.mockup-instruction {
  font-weight: 600;
  color: #cfe3ff;
  font-size: 0.95rem;
}

.mockup-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 16px;
}

.mockup-card h3 {
  font-size: 1.1rem;
}

.mockup-card p {
  color: var(--muted);
  font-size: 0.9rem;
}

.tag {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(47, 211, 199, 0.16);
  color: var(--accent);
  font-weight: 600;
  font-size: 0.8rem;
}

.mockup-list {
  display: grid;
  gap: 12px;
}

.mockup-item {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 14px;
  font-size: 0.9rem;
  align-items: center;
}

.mockup-item strong {
  display: block;
}

.mockup-item span {
  color: var(--muted);
  font-size: 0.8rem;
}

.status {
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.status.ok {
  background: rgba(47, 211, 199, 0.2);
  color: var(--accent);
}

.status.hold {
  background: rgba(245, 181, 90, 0.2);
  color: var(--accent-2);
}

.mockup-action {
  border: 0;
  border-radius: 999px;
  padding: 8px 14px;
  background: linear-gradient(120deg, rgba(47, 211, 199, 0.95), rgba(47, 211, 199, 0.6));
  color: #04131f;
  font-weight: 700;
  font-size: 0.78rem;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease;
  white-space: nowrap;
}

.mockup-action:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.mockup-action.disabled,
.mockup-action:disabled {
  background: rgba(255, 255, 255, 0.12);
  color: var(--muted);
  cursor: not-allowed;
  transform: none;
  filter: none;
}

.mockup-footer {
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
}

.section {
  padding: 90px 0;
  position: relative;
  z-index: 1;
  background: var(--landing-section-bg);
}

.section.alt {
  background: var(--landing-section-bg);
}

.section-title {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 44px;
}

.section-title span {
  display: inline-block;
  color: var(--accent);
  font-size: 0.9rem;
  letter-spacing: 0.3px;
  margin-bottom: 8px;
}

.section-title h2 {
  font-family: "Nunito", "Sora", sans-serif;
  font-size: clamp(2rem, 4vw, 2.7rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.section-title p {
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 24px;
}

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

#publico,
#beneficios,
#numeros,
#telas,
#planos,
#como-funciona,
.proof,
#faq-vendas,
#assinatura,
.cta,
#assinante,
.footer {
  --section-accent: var(--accent);
  --section-accent-soft: rgba(47, 211, 199, 0.16);
  --section-border: rgba(47, 211, 199, 0.28);
}

#publico {
  --section-accent: #2fd3c7;
  --section-accent-soft: rgba(47, 211, 199, 0.16);
  --section-border: rgba(47, 211, 199, 0.28);
}

#beneficios {
  --section-accent: #f5b55a;
  --section-accent-soft: rgba(245, 181, 90, 0.16);
  --section-border: rgba(245, 181, 90, 0.28);
}

#numeros {
  --section-accent: #6ff1e8;
  --section-accent-soft: rgba(47, 211, 199, 0.14);
  --section-border: rgba(47, 211, 199, 0.26);
}

#telas {
  --section-accent: #7bb2ff;
  --section-accent-soft: rgba(123, 178, 255, 0.16);
  --section-border: rgba(123, 178, 255, 0.28);
}

#planos {
  --section-accent: #ffd089;
  --section-accent-soft: rgba(255, 208, 137, 0.16);
  --section-border: rgba(255, 208, 137, 0.3);
}

#como-funciona {
  --section-accent: #83e6df;
  --section-accent-soft: rgba(131, 230, 223, 0.14);
  --section-border: rgba(131, 230, 223, 0.28);
}

.proof {
  --section-accent: #8ec5ff;
  --section-accent-soft: rgba(142, 197, 255, 0.14);
  --section-border: rgba(142, 197, 255, 0.28);
}

#faq-vendas {
  --section-accent: #9fceff;
  --section-accent-soft: rgba(159, 206, 255, 0.16);
  --section-border: rgba(159, 206, 255, 0.28);
}

#assinatura {
  --section-accent: #f6c768;
  --section-accent-soft: rgba(246, 199, 104, 0.15);
  --section-border: rgba(246, 199, 104, 0.3);
}

.cta {
  --section-accent: #4fe0d4;
  --section-accent-soft: rgba(79, 224, 212, 0.16);
  --section-border: rgba(79, 224, 212, 0.3);
}

#assinante {
  --section-accent: #9ec1ff;
  --section-accent-soft: rgba(158, 193, 255, 0.14);
  --section-border: rgba(158, 193, 255, 0.28);
}

.footer {
  --section-accent: #f5b55a;
  --section-accent-soft: rgba(245, 181, 90, 0.12);
  --section-border: rgba(245, 181, 90, 0.24);
}

#publico .section-title span,
#beneficios .section-title span,
#numeros .section-title span,
#telas .section-title span,
#planos .section-title span,
#como-funciona .section-title span,
.proof .label,
#faq-vendas .section-title span,
#assinatura .label,
#assinante .label {
  color: var(--section-accent);
}

.sales-numbers-section {
  padding-top: 82px;
  padding-bottom: 82px;
  background:
    radial-gradient(circle at 16% 22%, rgba(47, 211, 199, 0.10), transparent 30%),
    radial-gradient(circle at 84% 30%, rgba(245, 181, 90, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(7, 16, 26, 0.20), rgba(7, 16, 26, 0.04));
}

.sales-numbers-section .section-title {
  margin-bottom: 36px;
}

.sales-numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(99, 140, 180, 0.20);
  border-radius: 26px;
  background: rgba(8, 20, 33, 0.52);
  box-shadow: 0 24px 60px rgba(4, 12, 20, 0.30);
  overflow: hidden;
}

.sales-number-card {
  min-height: 158px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  padding: 28px 22px;
  text-align: center;
  position: relative;
}

.sales-number-card + .sales-number-card {
  border-left: 1px solid rgba(99, 140, 180, 0.18);
}

.sales-number-card strong {
  font-family: "Nunito", "Sora", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.35rem);
  line-height: 1;
  color: var(--section-accent);
  letter-spacing: -0.02em;
  text-shadow: 0 0 24px rgba(47, 211, 199, 0.18);
}

.sales-number-card span {
  color: #d7e4f2;
  font-size: 1rem;
  font-weight: 800;
}

#publico .card,
#beneficios .card,
#planos .price-card,
#como-funciona .step,
.proof .testimonial,
#faq-vendas .faq-item,
#assinatura .cadastro-form,
#assinante .cadastro-form,
#telas .teaser-copy,
.cta-inner {
  border-color: var(--section-border);
}

#publico .card i,
#beneficios .card i,
#como-funciona .step-number {
  background: var(--section-accent-soft);
  border-color: var(--section-border);
  color: var(--section-accent);
}

#telas .teaser-pill,
.proof-tags span,
#assinatura .proof-tags span,
#assinante .proof-tags span {
  background: var(--section-accent-soft);
  color: var(--section-accent);
  border: 1px solid var(--section-border);
}

#planos .badge,
#planos .trial-label {
  background: var(--section-accent-soft);
  color: #ffe7b7;
  border-color: var(--section-border);
}

#telas .teaser-copy {
  background: linear-gradient(160deg, rgba(14, 31, 49, 0.9), rgba(9, 21, 34, 0.96));
}

.proof .testimonial,
#assinatura .cadastro-form,
#assinante .cadastro-form {
  background: linear-gradient(160deg, rgba(18, 40, 62, 0.95), rgba(9, 20, 33, 0.97));
}

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

.nicho-banner {
  margin: 0 auto 24px;
  max-width: 980px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(99, 140, 180, 0.3);
  box-shadow: 0 24px 58px rgba(4, 12, 20, 0.52);
}

.nicho-banner img {
  display: block;
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.card-nicho-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 14px;
}

.card i {
  font-size: 1.6rem;
  color: var(--accent);
  margin-bottom: 14px;
}

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

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(47, 211, 199, 0.45);
  box-shadow: 0 28px 70px rgba(4, 12, 20, 0.6);
}

#publico .card,
#beneficios .card,
#planos .price-card,
#como-funciona .step {
  position: relative;
  overflow: hidden;
}

#publico .card::before,
#beneficios .card::before,
#planos .price-card::before,
#como-funciona .step::before {
  content: "";
  position: absolute;
  inset: -120% -35%;
  background: linear-gradient(120deg, rgba(47, 211, 199, 0), rgba(47, 211, 199, 0.12), rgba(47, 211, 199, 0));
  transform: rotate(18deg);
  opacity: 0;
  transition: opacity 0.35s ease, transform 0.5s ease;
  pointer-events: none;
}

#publico .card:hover::before,
#beneficios .card:hover::before,
#planos .price-card:hover::before,
#como-funciona .step:hover::before {
  opacity: 1;
  transform: rotate(18deg) translateY(18%);
}

#publico .card,
#beneficios .card {
  background: linear-gradient(160deg, rgba(20, 45, 70, 0.94), rgba(11, 25, 40, 0.96));
  animation: none;
}

#publico .card i,
#beneficios .card i {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(47, 211, 199, 0.12);
  border: 1px solid rgba(47, 211, 199, 0.25);
}

#planos .price-card {
  border: 1px solid rgba(99, 140, 180, 0.35);
  background: linear-gradient(170deg, rgba(17, 38, 60, 0.96), rgba(11, 24, 38, 0.95));
}

#planos .price-card ul li {
  position: relative;
  padding-left: 22px;
}

#planos .price-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent) 0%, rgba(47, 211, 199, 0.15) 70%);
  box-shadow: 0 0 12px rgba(47, 211, 199, 0.45);
}

#planos .price-card.highlight {
  border-color: rgba(47, 211, 199, 0.72);
  box-shadow: 0 26px 72px rgba(7, 24, 38, 0.74), 0 0 0 1px rgba(47, 211, 199, 0.22) inset;
}

#planos .badge {
  background: linear-gradient(120deg, rgba(245, 181, 90, 0.28), rgba(245, 181, 90, 0.16));
  border: 1px solid rgba(245, 181, 90, 0.42);
  letter-spacing: 0.03em;
}

.pricing .price-card {
  position: relative;
  display: grid;
  gap: 18px;
}

.pricing-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 0 auto 28px;
  max-width: 980px;
}

.pricing-trust span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 208, 137, 0.12);
  border: 1px solid rgba(255, 208, 137, 0.24);
  color: #ffe7b7;
  font-size: 0.88rem;
  font-weight: 600;
}

.pricing-trust i {
  color: #ffd089;
}

.trial-banner {
  margin: 0 auto 36px;
  max-width: 980px;
  padding: 26px 28px;
  border-radius: 20px;
  border: 1px solid rgba(245, 181, 90, 0.38);
  background: linear-gradient(130deg, rgba(245, 181, 90, 0.14), rgba(18, 42, 66, 0.9));
  box-shadow: 0 18px 42px rgba(4, 12, 20, 0.45);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.trial-label {
  display: inline-flex;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(245, 181, 90, 0.2);
  color: #ffd89e;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.trial-banner h3 {
  font-family: "Nunito", "Sora", sans-serif;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 700;
  margin-bottom: 6px;
}

.trial-banner p {
  color: var(--muted);
  max-width: 700px;
}

.price-card ul {
  list-style: none;
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.price-header h3 {
  font-family: "Nunito", "Sora", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.price-header p {
  font-size: 1.8rem;
  color: var(--text);
  font-weight: 600;
}

.price-header p span {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
}

.price-note {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
}

.tagline {
  color: var(--muted);
  font-size: 0.95rem;
}

.pricing-footnote {
  margin: 24px auto 0;
  max-width: 860px;
  text-align: center;
  color: var(--muted);
}

.plan-compare {
  margin: 38px auto 0;
  padding: 28px 28px 18px;
  border-radius: 26px;
  border: 1px solid rgba(99, 140, 180, 0.3);
  background: linear-gradient(170deg, rgba(15, 34, 54, 0.98), rgba(8, 19, 31, 0.97));
  box-shadow: 0 28px 70px rgba(4, 12, 20, 0.48);
}

.plan-compare__intro {
  margin-bottom: 22px;
  max-width: 720px;
}

.plan-compare__eyebrow {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(47, 211, 199, 0.1);
  border: 1px solid rgba(47, 211, 199, 0.24);
  color: #aef6ef;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.plan-compare__intro h3 {
  font-family: "Nunito", "Sora", sans-serif;
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  margin-bottom: 8px;
}

.plan-compare__intro p {
  color: var(--muted);
  max-width: 640px;
}

.plan-compare__scroller {
  overflow-x: auto;
  padding-bottom: 4px;
}

.plan-compare__table {
  width: 100%;
  min-width: 900px;
  border-collapse: separate;
  border-spacing: 0;
}

.plan-compare__table thead th {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
  color: var(--text);
  font-family: "Nunito", "Sora", sans-serif;
  font-size: 1rem;
  text-align: left;
  vertical-align: middle;
}

.plan-compare__table thead th:first-child {
  width: 42%;
}

.plan-compare__table thead th:not(:first-child) {
  text-align: center;
}

.plan-compare__table thead th:nth-child(3),
.plan-compare__table tbody td:nth-child(3) {
  background: linear-gradient(180deg, rgba(47, 211, 199, 0.1), rgba(47, 211, 199, 0.04));
  box-shadow: inset 1px 0 0 rgba(47, 211, 199, 0.18), inset -1px 0 0 rgba(47, 211, 199, 0.18);
}

.plan-compare__table tbody th,
.plan-compare__table tbody td {
  padding: 22px 20px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
  vertical-align: middle;
}

.plan-compare__table tbody tr:last-child th,
.plan-compare__table tbody tr:last-child td {
  border-bottom: none;
}

.plan-compare__table tbody td {
  text-align: center;
}

.plan-compare__feature-title {
  display: block;
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.plan-compare__table tbody th small {
  display: block;
  max-width: 320px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
  font-weight: 500;
}

.plan-compare__plan-title {
  display: block;
  font-size: 1rem;
}

.plan-compare__mini-badge {
  display: inline-flex;
  margin-top: 8px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(245, 181, 90, 0.18);
  border: 1px solid rgba(245, 181, 90, 0.3);
  color: #ffd89e;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.plan-compare__status,
.plan-compare__text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 120px;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
}

.plan-compare__status.is-included {
  color: #bff8f1;
  background: rgba(47, 211, 199, 0.12);
  border: 1px solid rgba(47, 211, 199, 0.24);
}

.plan-compare__status.is-unavailable {
  color: #90a3ba;
  background: rgba(148, 163, 184, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.16);
}

.plan-compare__text {
  color: #e8f0fb;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(148, 163, 184, 0.14);
}

.price-card.highlight {
  border: 1px solid rgba(47, 211, 199, 0.6);
  background: linear-gradient(160deg, rgba(20, 52, 77, 0.9), rgba(9, 22, 36, 0.95));
  transform: translateY(-6px);
}

.badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(245, 181, 90, 0.2);
  color: var(--accent-2);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.steps .step {
  text-align: center;
}

#como-funciona .steps {
  position: relative;
}

#como-funciona .steps::before {
  content: "";
  position: absolute;
  left: 16.5%;
  right: 16.5%;
  top: 52px;
  height: 2px;
  background: linear-gradient(90deg, rgba(47, 211, 199, 0.24), rgba(47, 211, 199, 0.62), rgba(47, 211, 199, 0.24));
  z-index: 0;
}

#como-funciona .step {
  text-align: center;
  z-index: 1;
  background: linear-gradient(165deg, rgba(18, 40, 62, 0.95), rgba(9, 20, 33, 0.97));
}

.teaser-stack {
  display: grid;
  gap: 34px;
  margin-top: 8px;
}

.teaser-row {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: center;
}

.teaser-row.reverse {
  grid-template-columns: 1.05fr 0.95fr;
}

.teaser-row.reverse .teaser-copy {
  order: 2;
}

.teaser-row.reverse .teaser-shot {
  order: 1;
}

.teaser-copy {
  background: rgba(16, 35, 56, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 20px 22px;
}

.teaser-pill {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(47, 211, 199, 0.14);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.teaser-copy h3 {
  font-family: "Nunito", "Sora", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 8px;
}

.teaser-copy p {
  color: var(--muted);
}

.teaser-shot {
  display: block;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(99, 140, 180, 0.28);
  box-shadow: 0 22px 56px rgba(4, 12, 20, 0.56);
  transform: rotate(0deg) translateY(0) !important;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.teaser-row.reverse .teaser-shot {
  transform: rotate(0deg) translateY(0) !important;
}

.teaser-shot img {
  width: 100%;
  display: block;
  filter: saturate(0.92) contrast(0.92);
}

.teaser-shot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(4, 10, 18, 0.1), rgba(4, 10, 18, 0.45));
}

.teaser-shot:hover {
  transform: rotate(0deg) translateY(0) !important;
  border-color: rgba(47, 211, 199, 0.48);
  box-shadow: 0 30px 68px rgba(4, 12, 20, 0.64);
}

.step-number {
  width: 58px;
  height: 58px;
  margin: 0 auto 16px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1.05rem;
  background: rgba(47, 211, 199, 0.2);
  color: var(--accent);
  animation: none;
}

.landing-lightbox {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  z-index: 1200;
  transition: opacity 0.2s ease;
}

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

.landing-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 12, 24, 0.82);
}

.landing-lightbox__content {
  position: relative;
  max-width: min(980px, 92vw);
  max-height: 86vh;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(148, 197, 255, 0.25);
  box-shadow: 0 24px 70px rgba(2, 10, 20, 0.72);
  background: #0b1220;
  z-index: 1;
}

.landing-lightbox__content img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 86vh;
  object-fit: contain;
  background: #0b1220;
}

.landing-lightbox__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(148, 197, 255, 0.35);
  background: rgba(10, 18, 32, 0.7);
  color: #e2e8f0;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.landing-lightbox__close:hover {
  transform: scale(1.05);
  background: rgba(30, 41, 59, 0.9);
}

.cadastro-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
  align-items: center;
}

.cadastro-copy h2 {
  font-family: "Nunito", "Sora", sans-serif;
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 12px 0;
}

.cadastro-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: grid;
  gap: 16px;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row label,
.form-label {
  font-weight: 600;
  font-size: 0.9rem;
}

.cadastro-form input {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 20, 32, 0.6);
  color: var(--text);
}

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

.plan-choice {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 12px;
  display: grid;
  gap: 6px;
  cursor: pointer;
  transition: border-color 0.3s ease, transform 0.3s ease;
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
}

.plan-choice input {
  accent-color: var(--accent);
}

.plan-choice small {
  color: var(--muted);
}

.plan-choice:has(input:checked) {
  border-color: rgba(47, 211, 199, 0.7);
  transform: translateY(-2px);
}

.form-note {
  font-size: 0.85rem;
  color: var(--muted);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
  align-items: center;
}

.proof-copy h2 {
  font-family: "Nunito", "Sora", sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 12px 0;
}

.label {
  color: var(--accent);
  font-size: 0.9rem;
}

.proof-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.proof-tags span {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.85rem;
  color: var(--muted);
}

.proof-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.proof-cards .testimonial + .testimonial {
  margin-top: 0;
}

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

.trust-card {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 16px;
}

.trust-icon {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(142, 197, 255, 0.12);
  border: 1px solid rgba(142, 197, 255, 0.28);
  color: #9fceff;
  font-size: 1.1rem;
}

.proof-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.proof-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(142, 197, 255, 0.28);
  background: rgba(142, 197, 255, 0.08);
  color: #d8ebff;
  font-size: 0.9rem;
  font-weight: 600;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.proof-link:hover,
.proof-link:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(142, 197, 255, 0.5);
  background: rgba(142, 197, 255, 0.14);
}

.placeholder {
  color: var(--accent);
  font-size: 0.9rem;
}

.faq-sales-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.faq-item {
  background: linear-gradient(160deg, rgba(16, 35, 56, 0.92), rgba(9, 20, 33, 0.96));
  border: 1px solid rgba(159, 206, 255, 0.24);
  border-radius: 18px;
  padding: 0 20px;
  box-shadow: 0 20px 48px rgba(4, 12, 20, 0.46);
}

.faq-item[open] {
  border-color: rgba(159, 206, 255, 0.44);
}

.faq-item summary {
  list-style: none;
  position: relative;
  cursor: pointer;
  padding: 20px 38px 20px 0;
  font-family: "Nunito", "Sora", sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  color: #edf5ff;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 0;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  color: #9fceff;
  font-size: 1rem;
  font-weight: 800;
  border: 1px solid rgba(159, 206, 255, 0.28);
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  color: var(--muted);
  padding: 0 0 20px;
}

.faq-sales-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}

.cta {
  padding: 80px 0 110px;
  background: var(--landing-section-bg);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 40px 46px;
  border-radius: var(--radius);
  background: linear-gradient(120deg, rgba(47, 211, 199, 0.18), rgba(11, 22, 36, 0.9));
  border: 1px solid rgba(47, 211, 199, 0.35);
  box-shadow: var(--shadow);
}

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

.cta-inner h2 {
  font-family: "Nunito", "Sora", sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.card h3,
.footer h3,
.footer h4 {
  font-family: "Nunito", "Sora", sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.footer {
  padding: 60px 0 30px;
  background: var(--landing-section-bg);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 24px;
}

.footer h3,
.footer h4 {
  margin-bottom: 10px;
}

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

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a,
.footer p a {
  color: #f7d18e;
  font-weight: 600;
}

.footer-links a:hover,
.footer p a:hover {
  color: #ffe6b2;
}

.footer-bottom {
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
}

@media (max-width: 1280px) {
  .topbar > .container {
    width: min(1260px, 95%);
  }

  .topbar-inner {
    gap: 18px;
    padding: 10px 16px 10px 12px;
  }

  .brand {
    gap: 10px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .brand-mark-svg {
    width: 28px;
    height: 28px;
  }

  .brand-wordmark {
    font-size: 1.12rem;
  }

  .nav {
    gap: 2px;
  }

  .nav a {
    padding: 7px 8px;
    font-size: 0.86rem;
  }

  .topbar .btn {
    min-height: 38px;
    padding: 0 16px;
    font-size: 0.82rem;
  }
}

@media (max-width: 1160px) {
  body.landing-page {
    --landing-topbar-offset: 86px;
  }

  .topbar > .container {
    width: min(1200px, 92%);
  }

  .nav {
    display: none;
  }

  .topbar-inner {
    display: flex;
    justify-content: space-between;
    min-height: 70px;
    padding: 10px 12px 10px 10px;
    gap: 12px;
    border-radius: 22px;
  }

  .topbar-inner::after {
    left: 14px;
    right: 14px;
  }

  .brand {
    min-width: 0;
    gap: 12px;
  }

  .brand-landing {
    flex: 1 1 auto;
    min-width: 0;
    padding-right: 0;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
    border-radius: 15px;
  }

  .brand-mark-svg {
    width: 30px;
    height: 30px;
  }

  .brand-wordmark {
    font-size: clamp(1.08rem, 2.7vw, 1.22rem);
  }

  .menu-toggle {
    display: inline-flex;
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    border-radius: 15px;
  }

  .actions {
    display: none;
  }

  .mobile-nav-panel {
    display: grid;
    opacity: 0;
    transform: translateY(-8px) scale(0.985);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .mobile-nav-panel[hidden] {
    display: none;
  }

  .mobile-nav-panel.is-open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  .topbar .btn {
    padding: 7px 11px;
    font-size: 0.8rem;
    min-height: 34px;
    border-radius: 12px;
  }
}

@media (max-width: 980px) {
  .nicho-banner img {
    height: 240px;
  }

  .hero-grid,
  .proof-grid,
  .cadastro-grid,
  .hero-ops-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 28px 0 82px;
  }

  .hero-grid {
    align-items: start;
    gap: 34px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-visual {
    justify-content: flex-start;
  }

  .hero-showcase {
    width: min(100%, 620px);
  }

  .nav {
    display: none;
  }

  .topbar-inner {
    min-height: 70px;
    padding: 10px 12px 10px 10px;
    gap: 12px;
    border-radius: 22px;
  }

  .topbar-inner::after {
    left: 14px;
    right: 14px;
  }

  .brand {
    min-width: 0;
    gap: 12px;
  }

  .brand-landing {
    flex: 1 1 auto;
    min-width: 0;
    padding-right: 0;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
    border-radius: 15px;
  }

  .brand-mark-svg {
    width: 30px;
    height: 30px;
  }

  .brand-wordmark {
    font-size: clamp(1.08rem, 2.7vw, 1.22rem);
  }

  .menu-toggle {
    display: inline-flex;
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    border-radius: 15px;
  }

  .actions {
    display: none;
  }

  .mobile-nav-panel {
    display: grid;
    opacity: 0;
    transform: translateY(-8px) scale(0.985);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .mobile-nav-panel[hidden] {
    display: none;
  }

  .mobile-nav-panel.is-open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  .topbar .btn {
    padding: 7px 11px;
    font-size: 0.8rem;
    min-height: 34px;
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
  }

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

  .trial-banner {
    flex-direction: column;
    text-align: center;
  }

  .hero-ops-section {
    padding-top: 6px;
  }

  .plan-compare {
    padding: 24px 22px 16px;
  }

  .proof-cards,
  .faq-sales-grid {
    grid-template-columns: 1fr;
  }

  #como-funciona .steps::before {
    display: none;
  }
}

@media (max-width: 760px) {
  body.landing-page {
    --landing-topbar-offset: 82px;
  }

  .topbar {
    padding-top: 10px;
  }

  .topbar-inner {
    min-height: 66px;
    padding: 9px 10px 9px 8px;
    gap: 10px;
    border-radius: 20px;
  }

  .brand {
    gap: 10px;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
    border-radius: 14px;
  }

  .brand-mark-svg {
    width: 29px;
    height: 29px;
  }

  .brand-wordmark {
    font-size: 1.06rem;
  }

  .grid.three,
  .footer-grid,
  .plan-choices {
    grid-template-columns: 1fr;
  }

  #publico .sales-grid {
    grid-template-columns: 1fr;
  }

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

  .sales-number-card + .sales-number-card {
    border-left: 0;
  }

  .sales-number-card:nth-child(even) {
    border-left: 1px solid rgba(99, 140, 180, 0.18);
  }

  .sales-number-card:nth-child(n + 3) {
    border-top: 1px solid rgba(99, 140, 180, 0.18);
  }

  .teaser-row,
  .teaser-row.reverse {
    grid-template-columns: 1fr;
  }

  .teaser-row.reverse .teaser-copy,
  .teaser-row.reverse .teaser-shot {
    order: initial;
  }

  .teaser-shot,
  .teaser-row.reverse .teaser-shot {
    transform: none;
  }

  .hero {
    padding: 18px 0 60px;
  }

  .hero-copy h1 {
    max-width: 13ch;
    margin-bottom: 16px;
  }

  .hero-copy p {
    font-size: 1rem;
    margin-bottom: 28px;
  }

  .hero-cta-main {
    flex-direction: column;
  }

  .hero-cta-main .btn {
    width: 100%;
  }

  .hero-contact-link {
    font-size: 0.9rem;
  }

  .hero-showcase {
    padding: 22px 18px 24px;
  }

  .hero-showcase__top strong {
    font-size: 1.42rem;
  }

  .hero-showcase__metrics {
    grid-template-columns: 1fr;
  }

  .hero-showcase__badge {
    position: static;
    display: block;
    max-width: none;
    margin-top: 12px;
  }

  .hero-ops-preview__badge {
    position: static;
    display: block;
    max-width: none;
    margin-top: 12px;
  }

  .section {
    padding: 64px 0;
  }
}

@media (max-width: 600px) {
  body.landing-page {
    --landing-topbar-offset: 80px;
  }

  .nicho-banner img {
    height: 190px;
  }

  .container {
    width: min(1200px, 90%);
  }

  .topbar {
    padding-top: 8px;
  }

  .topbar-inner {
    gap: 8px;
    padding-right: 8px;
  }

  .brand {
    justify-content: flex-start;
  }

  .mobile-nav-panel {
    padding: 12px;
    border-radius: 20px;
  }

  .brand-wordmark {
    font-size: clamp(1rem, 4.1vw, 1.1rem);
  }

  .hero {
    padding-top: 16px;
  }

  .hero-copy h1 {
    font-size: clamp(2.1rem, 9vw, 2.8rem);
  }

  .hero-value-strip {
    gap: 8px;
  }

  .hero-value-strip span {
    font-size: 0.8rem;
  }

  .mockup-body {
    padding: 0;
  }

  .mockup-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .mockup-item .time {
    font-weight: 600;
  }

  .mockup-action {
    width: 100%;
    text-align: center;
  }

  .status {
    width: fit-content;
  }

  .agenda-item {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 12px 14px;
  }

  .agenda-status {
    width: fit-content;
  }

  .hero-ops-copy h2 {
    max-width: 100%;
  }

  .hero-ops-preview__note {
    flex-direction: column;
  }

  .section {
    padding: 70px 0;
  }

  .sales-numbers-grid {
    grid-template-columns: 1fr;
  }

  .sales-number-card {
    min-height: 128px;
    padding: 24px 18px;
  }

  .sales-number-card:nth-child(even) {
    border-left: 0;
  }

  .sales-number-card:nth-child(n + 2) {
    border-top: 1px solid rgba(99, 140, 180, 0.18);
  }

  .cadastro-form {
    padding: 22px;
  }

  .cta-inner {
    padding: 30px 26px;
  }

  .cta-actions {
    width: 100%;
    flex-direction: column;
  }

  .pricing-trust,
  .proof-links,
  .faq-sales-actions {
    flex-direction: column;
  }

  .plan-compare {
    padding: 22px 18px 14px;
  }

  .plan-compare__table {
    min-width: 760px;
  }

  .plan-compare__table thead th,
  .plan-compare__table tbody th,
  .plan-compare__table tbody td {
    padding: 18px 16px;
  }

  .plan-compare__table tbody th small {
    max-width: 250px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .topbar {
    padding-top: 6px;
  }

  .btn {
    width: 100%;
  }

  .hero-cta {
    gap: 10px;
  }

  .hero {
    padding-top: 14px;
  }

  .hero-copy h1 {
    max-width: 11ch;
  }

  .hero-value-strip span {
    width: 100%;
    justify-content: center;
  }

  .section-title {
    margin-bottom: 32px;
  }

  .card {
    padding: 22px;
  }

  #publico .card h3,
  #beneficios .card h3 {
    overflow-wrap: anywhere;
  }

  .topbar-inner {
    min-height: 64px;
    padding: 8px 8px 8px 6px;
    border-radius: 18px;
  }

  .brand {
    gap: 9px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .brand-mark-svg {
    width: 28px;
    height: 28px;
  }

  .brand-wordmark {
    font-size: 1rem;
    letter-spacing: -0.04em;
  }

  .cadastro-form input {
    font-size: 0.95rem;
  }

  .plan-compare__feature-title {
    font-size: 0.98rem;
  }

  .plan-compare__status,
  .plan-compare__text {
    min-width: 108px;
    padding: 9px 12px;
    font-size: 0.82rem;
  }
}

@media (max-width: 360px) {
  .brand-wordmark {
    font-size: 0.95rem;
  }

  .mockup-header {
    flex-wrap: wrap;
  }
}
