/* ==========================================================================
   Orari — Landing Page
   Design tokens sourced from handoff (design_handoff_orari_landing/README.md).
   Approved direction: 1a (desktop) + 3a (mobile, 390px), same content model.
   Note: a few text colors were nudged darker than the literal spec values
   (e.g. rgba(0,0,0,.4) -> .55/.62) to meet WCAG AA contrast (4.5:1) for
   body/microcopy text. Visual difference is negligible; brand purple,
   type, radii and layout are otherwise implemented as specified.
   ========================================================================== */

:root {
  /* Brand */
  --color-primary: #6C5CE7;
  --color-primary-hover: #5A4BD1;
  --color-primary-on-tint: #5B4BC4; /* AA-safe purple for text on --color-tint bg */
  --color-tint: #EDEBFB;
  --color-whatsapp: #25D366;

  /* Neutrals */
  --color-ink: #111111;
  --color-dark: #17151F;
  --color-surface: #FAFAF9;
  --color-page-bg: #F3F1EE;
  --color-white: #ffffff;

  /* Text */
  --color-text-secondary: rgba(0, 0, 0, .62);
  --color-text-tertiary: rgba(0, 0, 0, .55);
  --color-text-on-dark-secondary: rgba(255, 255, 255, .65);
  --color-text-on-dark-tertiary: rgba(255, 255, 255, .55);
  --color-text-on-dark-quaternary: rgba(255, 255, 255, .4);

  /* Borders */
  --color-border-subtle: rgba(0, 0, 0, .06);
  --color-border: rgba(0, 0, 0, .1);
  --color-border-strong: rgba(0, 0, 0, .15);

  /* Type */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  /* Shape */
  --radius-btn: 10px;
  --radius-card: 16px;
  --radius-pill: 999px;

  /* Layout */
  --container-width: 1160px;
  --header-height: 64px;

  /* Motion */
  --transition-fast: 200ms ease;
  --transition-base: 250ms ease;
}

/* ==========================================================================
   Reset
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-page-bg);
  color: var(--color-ink);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

a {
  color: var(--color-primary);
  text-decoration: none;
}

button {
  font-family: inherit;
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ==========================================================================
   Utilities
   ========================================================================== */

.container {
  width: 100%;
  max-width: var(--container-width);
  margin-inline: auto;
  padding-inline: 20px;
}

/* Anchor-jump targets (nav links, TOC links) — clear the sticky header so the
   heading itself lands in view instead of scrolling underneath it. */
#recursos,
#como-funciona,
#planos,
#faq,
.legal-section {
  scroll-margin-top: calc(var(--header-height) + 16px);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 12px;
  z-index: 1000;
  background: var(--color-ink);
  color: #fff;
  padding: 12px 18px;
  border-radius: 0 0 8px 8px;
  font-weight: 700;
  font-size: 14px;
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: 0;
}

/* Focus visibility */
a:focus-visible,
button:focus-visible,
.faq-trigger:focus-visible {
  outline: 2.5px solid var(--color-primary);
  outline-offset: 2px;
  border-radius: 4px;
}

.section-title {
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--color-ink);
  text-align: center;
  margin-bottom: 28px;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 11px;
}

.pill-tint {
  background: var(--color-tint);
  color: var(--color-primary-on-tint);
}

/* Wordmark logo — "orar" in ink, final "i" in brand purple */
.wordmark {
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--color-ink);
}

.wordmark .accent {
  color: var(--color-primary);
}

.site-footer .wordmark,
.how-it-works .wordmark {
  color: #fff;
}

.logo {
  display: flex;
  align-items: center;
  flex: none;
}

.logo .wordmark {
  font-size: 20px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-btn);
  font-weight: 700;
  font-size: 15px;
  padding: 15px 24px;
  border: none;
  cursor: pointer;
  transition: background-color var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

.btn:active {
  transform: translateY(1px);
}

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

.btn-primary:hover {
  background: var(--color-primary-hover);
}

.btn-primary-on-dark {
  background: #fff;
  color: var(--color-primary);
}

.btn-primary-on-dark:hover {
  background: #f1f0fd;
}

.btn-ghost {
  background: transparent;
  color: var(--color-ink);
  border: 1.5px solid var(--color-border-strong);
}

.btn-ghost:hover {
  border-color: rgba(0, 0, 0, .3);
  background: rgba(0, 0, 0, .03);
}

.btn-sm {
  padding: 10px 18px;
  font-size: 13px;
}

.btn-lg {
  width: 100%;
  padding: 16px;
  font-size: 15px;
}

/* ==========================================================================
   Header / Nav
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--color-border-subtle);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  gap: 16px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-cta {
  display: none;
  padding: 9px 16px;
  font-size: 13px;
}

.nav-toggle {
  flex: none;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.nav-toggle:hover {
  background: rgba(0, 0, 0, .05);
}

.nav-toggle-bars {
  width: 20px;
  height: 14px;
  position: relative;
  display: block;
}

.nav-toggle-bars span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 1px;
  background: var(--color-ink);
  transition: transform var(--transition-base), opacity var(--transition-base), top var(--transition-base);
}

.nav-toggle-bars span:nth-child(1) { top: 0; }
.nav-toggle-bars span:nth-child(2) { top: 6px; }
.nav-toggle-bars span:nth-child(3) { top: 12px; }

.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(1) {
  top: 6px;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(3) {
  top: 6px;
  transform: rotate(-45deg);
}

.main-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid var(--color-border-subtle);
  box-shadow: 0 12px 24px rgba(0, 0, 0, .06);
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base);
}

.main-nav.is-open {
  max-height: 320px;
}

.main-nav ul {
  display: flex;
  flex-direction: column;
  padding: 8px 20px 20px;
}

.main-nav a {
  display: block;
  padding: 14px 4px;
  font-weight: 600;
  font-size: 15px;
  color: var(--color-ink);
  border-bottom: 1px solid var(--color-border-subtle);
}

.main-nav li:last-child a {
  border-bottom: none;
}

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

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  padding-block: 28px 36px;
  background: #fff;
}

.hero-inner {
  display: grid;
  grid-template-areas:
    "eyebrow"
    "title"
    "subtitle"
    "image"
    "actions"
    "microcopy";
  row-gap: 14px;
}

.hero-eyebrow { grid-area: eyebrow; }
.hero-title { grid-area: title; margin-top: 2px; }
.hero-subtitle { grid-area: subtitle; }
.hero-image { grid-area: image; margin-top: 8px; min-width: 0; }
.hero-actions { grid-area: actions; margin-top: 6px; }
.hero-microcopy { grid-area: microcopy; text-align: center; }

.hero-title {
  font-weight: 800;
  font-size: 28px;
  line-height: 1.14;
  letter-spacing: -0.02em;
  color: var(--color-ink);
}

.hero-subtitle {
  font-size: 15px;
  line-height: 1.5;
  color: var(--color-text-secondary);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-microcopy {
  font-size: 11.5px;
  color: var(--color-text-tertiary);
}

/* ==========================================================================
   Hero video
   ========================================================================== */

.hero-video-frame {
  width: 100%;
  aspect-ratio: 1882 / 1556;
  border-radius: 20px;
  overflow: hidden;
  background: #0b0b0c;
  box-shadow: 0 20px 44px rgba(0, 0, 0, .28);
}

.hero-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================================================
   WhatsApp chat mockup (Automação)
   ========================================================================== */

.wa-mock {
  border-radius: 16px;
  overflow: hidden;
  background: #0b141a;
}

.wa-mock-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: #1f2c34;
}

.wa-mock-avatar {
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wa-mock-avatar .wordmark {
  font-size: 10.5px;
}

.wa-mock-name {
  flex: 1;
  font-weight: 600;
  font-size: 13px;
  color: #fff;
}

.wa-icon {
  flex: none;
  width: 15px;
  height: 15px;
}

.wa-icon-menu {
  flex: none;
  width: 12px;
  height: 12px;
}

.wa-icon-emoji-btn {
  flex: none;
  width: 14px;
  height: 14px;
}

.wa-mock-body {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  background: #0b141a;
  background-image: radial-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 16px 16px;
}

.wa-mock-date {
  align-self: center;
  font-size: 9.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, .4);
  background: rgba(255, 255, 255, .06);
  padding: 2px 10px;
  border-radius: 6px;
}

.wa-mock-bubble-out {
  align-self: flex-end;
  background: #005c4b;
  color: #e9edef;
  border-radius: 8px;
  padding: 8px 11px;
  font-size: 11.5px;
  line-height: 1.4;
  max-width: 60%;
}

.wa-mock-meta {
  display: block;
  text-align: right;
  font-size: 8.5px;
  color: rgba(255, 255, 255, .45);
  margin-top: 6px;
}

.wa-mock-bubble-out .wa-mock-meta {
  display: inline;
  margin-top: 0;
  color: rgba(255, 255, 255, .55);
}

.wa-mock-receipt {
  margin-left: 3px;
  display: inline-block;
  vertical-align: middle;
}

.wa-mock-bot-row {
  align-self: flex-start;
  display: flex;
  align-items: flex-start;
  gap: 6px;
  max-width: 88%;
}

.wa-mock-bot-avatar {
  flex: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #2a3942;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.wa-mock-bubble-in {
  background: #202c33;
  color: #e9edef;
  border-radius: 8px;
  padding: 8px 11px;
  font-size: 11.5px;
  line-height: 1.5;
}

.wa-mock-bubble-in p {
  margin: 0;
}

.wa-mock-bubble-in p + p {
  margin-top: 8px;
}

.wa-mock-menu {
  align-self: flex-start;
  margin-left: 30px;
  max-width: 80%;
  background: #202c33;
  border-radius: 8px;
  overflow: hidden;
}

.wa-mock-menu-body {
  padding: 8px 11px;
}

.wa-mock-menu-title {
  font-weight: 700;
  font-size: 12px;
  color: #e9edef;
  margin: 0;
}

.wa-mock-menu-body p:not(.wa-mock-menu-title) {
  font-size: 11px;
  color: #e9edef;
  margin: 8px 0 0;
}

.wa-mock-menu-action {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 9px;
  text-align: center;
  font-weight: 600;
  font-size: 11.5px;
  color: #00a884;
}

.wa-mock-composer {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: #1f2c34;
}

.wa-mock-input {
  flex: 1;
  background: #2a3942;
  border-radius: 20px;
  padding: 7px 12px;
  font-size: 11.5px;
  color: rgba(255, 255, 255, .4);
}

/* ==========================================================================
   Feature bands (Automação / Confiabilidade / Privacidade)
   ========================================================================== */

.feature-band {
  padding-block: 36px;
  background: #fff;
}

.feature-row {
  display: flex;
  flex-direction: column;
}

.feature-content h3 {
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--color-ink);
  margin-top: 14px;
}

.feature-content p:not(.pill) {
  font-size: 14px;
  color: var(--color-text-secondary);
  margin-top: 10px;
  line-height: 1.6;
}

.feature-media {
  margin-top: 20px;
}

/* ---- Reminder message mockup (Confiabilidade) — inside .wa-mock ---- */

.wa-reminder-row {
  align-self: flex-start;
  display: flex;
  align-items: flex-start;
  gap: 6px;
  max-width: 92%;
}

.wa-reminder-avatar {
  flex: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #2a3942;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.wa-reminder-bubble {
  background: #202c33;
  color: #e9edef;
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 12px;
  line-height: 1.55;
}

.wa-reminder-bubble p {
  margin: 10px 0 0;
}

.wa-reminder-headline {
  margin-top: 0;
  font-weight: 700;
}

.wa-reminder-brand {
  color: rgba(255, 255, 255, .45);
  font-size: 10.5px;
}

.wa-reminder-time {
  display: block;
  text-align: right;
  font-size: 10px;
  color: rgba(255, 255, 255, .45);
  margin-top: 6px;
}

/* ---- Privacy routing diagram (Privacidade) ---- */

.privacy-diagram {
  position: relative;
  border-radius: 20px;
  padding: 26px 18px;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 12% 0%, var(--color-tint) 0%, rgba(237, 235, 251, 0) 58%),
    radial-gradient(100% 80% at 100% 100%, var(--color-page-bg) 0%, rgba(243, 241, 238, 0) 60%),
    #FBFAF9;
  border: 1px solid var(--color-border-subtle);
}

.privacy-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(17, 17, 17, .09) 1px, transparent 1px);
  background-size: 16px 16px;
  mask-image: radial-gradient(70% 60% at 50% 50%, #000 0%, transparent 78%);
  -webkit-mask-image: radial-gradient(70% 60% at 50% 50%, #000 0%, transparent 78%);
}

.privacy-row {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.privacy-node {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.privacy-node-center {
  flex: 1.15;
}

.privacy-tile {
  width: 46px;
  height: 46px;
  border-radius: 15px;
  background: #fff;
  border: 1px solid var(--color-border-subtle);
  box-shadow: 0 6px 18px rgba(17, 17, 17, .07);
  display: flex;
  align-items: center;
  justify-content: center;
}

.privacy-tile-center {
  width: 62px;
  height: 62px;
  border-radius: 20px;
  box-shadow: 0 14px 34px rgba(108, 92, 231, .18);
}

.privacy-tile-word {
  font-size: 14px;
}

.privacy-icon-whatsapp {
  width: 20px;
  height: 20px;
}

.privacy-icon-whatsapp-center {
  width: 26px;
  height: 26px;
}

.privacy-label {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--color-ink);
  text-align: center;
}

.privacy-label-accent {
  color: var(--color-primary);
  line-height: 1.35;
}

.privacy-connector {
  width: 24px;
  height: 2px;
  flex: none;
  border-radius: 2px;
  background-image: repeating-linear-gradient(90deg, var(--color-primary) 0 5px, transparent 5px 10px);
  background-size: 20px 2px;
}

.privacy-connector-r {
  animation: dashToCenterR 1.8s linear infinite;
}

.privacy-connector-l {
  animation: dashToCenterL 1.8s linear infinite;
}

@keyframes dashToCenterR {
  to { background-position: -20px 0; }
}

@keyframes dashToCenterL {
  to { background-position: 20px 0; }
}

.privacy-divider {
  position: relative;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px dashed rgba(17, 17, 17, .14);
  display: flex;
  align-items: center;
  gap: 14px;
}

.privacy-phone {
  flex: none;
  width: 44px;
  height: 60px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
  display: block;
}

.privacy-phone::after {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  background: rgba(255, 255, 255, .35);
}

.privacy-phone span {
  position: absolute;
  left: 6px;
  right: 6px;
  height: 5px;
  border-radius: 3px;
  background: rgba(17, 17, 17, .1);
}

.privacy-phone span:nth-child(1) { top: 7px; }
.privacy-phone span:nth-child(2) { top: 18px; }
.privacy-phone span:nth-child(3) { top: 29px; right: 14px; }

.privacy-phone-title {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: var(--color-ink);
  letter-spacing: -0.01em;
}

.privacy-phone-sub {
  display: block;
  font-size: 11.5px;
  color: var(--color-text-tertiary);
  margin-top: 3px;
}

/* ==========================================================================
   Como funciona (always dark)
   ========================================================================== */

.how-it-works {
  padding-block: 36px;
  background: var(--color-dark);
}

.how-it-works .section-title {
  color: #fff;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.timeline-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.timeline-marker {
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: var(--color-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
}

.timeline-content h3 {
  font-weight: 700;
  font-size: 14px;
  color: #fff;
}

.timeline-content p {
  font-size: 12.5px;
  color: var(--color-text-on-dark-tertiary);
  margin-top: 3px;
  line-height: 1.5;
}

/* ==========================================================================
   App showcase (management app phone mockups)
   ========================================================================== */

.app-showcase {
  padding-block: 36px;
  background: var(--color-surface);
}

.app-showcase-heading {
  font-weight: 800;
  font-size: 22px;
  color: var(--color-ink);
  letter-spacing: -0.01em;
  margin-top: 14px;
}

.app-showcase-text {
  font-size: 14px;
  color: var(--color-text-secondary);
  margin-top: 10px;
  line-height: 1.6;
}

.app-showcase-carousel {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
}

.app-phone {
  flex: 0 0 auto;
  scroll-snap-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.app-phone-viewport {
  width: 200px;
  height: 432px;
  overflow: hidden;
  border-radius: 28px;
}

.app-phone-scale {
  width: 390px;
  height: 844px;
  transform: scale(0.5128);
  transform-origin: top left;
}

.app-phone-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-ink);
}

/* ---- iOS device bezel (always authored at true 390x844, scaled above) ---- */

.ios-device {
  width: 390px;
  height: 844px;
  border-radius: 48px;
  overflow: hidden;
  position: relative;
  background: #F2F2F7;
  box-shadow: 0 40px 80px rgba(0, 0, 0, .18), 0 0 0 1px rgba(0, 0, 0, .12);
  font-family: -apple-system, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.ios-dynamic-island {
  position: absolute;
  top: 11px;
  left: 50%;
  transform: translateX(-50%);
  width: 126px;
  height: 37px;
  border-radius: 24px;
  background: #000;
  z-index: 50;
}

.ios-status-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 154px;
  padding: 21px 24px 19px;
  box-sizing: border-box;
}

.ios-status-time-wrap {
  flex: 1;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 1.5px;
}

.ios-status-time {
  font: 590 17px -apple-system, "SF Pro", system-ui;
  line-height: 22px;
  color: #000;
}

.ios-status-icons-wrap {
  flex: 1;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.ios-screen {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.ios-home-indicator {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  height: 34px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 8px;
  pointer-events: none;
}

.ios-home-indicator span {
  width: 139px;
  height: 5px;
  border-radius: 100px;
  background: rgba(0, 0, 0, .25);
}

/* ---- Screen body + shared tab bar ---- */

.app-screen-body {
  flex: 1;
  overflow: hidden;
  padding: 62px 22px 28px;
}

.app-tabbar {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 4px;
  margin: 0 16px 42px;
  padding: 12px 10px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .1);
  border: 1px solid rgba(0, 0, 0, .05);
}

.app-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.app-tab span {
  font-size: 10px;
  font-weight: 600;
  color: rgba(0, 0, 0, .4);
}

.app-tab-active {
  background: var(--color-tint);
  border-radius: 12px;
  padding: 6px 14px;
}

.app-tab-active span {
  color: var(--color-primary);
}

/* ---- Início / Dashboard screen ---- */

.app-dash-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.app-dash-greeting {
  font-size: 12px;
  color: rgba(0, 0, 0, .45);
}

.app-dash-business {
  font-size: 24px;
  font-weight: 800;
  color: var(--color-ink);
  letter-spacing: -0.01em;
}

.app-dash-icons {
  flex: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.app-dash-bell {
  flex: none;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #F7F6FB;
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-dash-avatar {
  flex: none;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--color-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.app-filter-chips {
  display: flex;
  gap: 7px;
  margin-top: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 2px;
}

.app-filter-chip {
  flex: 0 0 auto;
  scroll-snap-align: start;
  padding: 9px 15px;
  border-radius: 20px;
  background: #F7F6FB;
  border: 1px solid rgba(0, 0, 0, .06);
  color: var(--color-ink);
  font-size: 12px;
  font-weight: 500;
}

.app-filter-chip-active {
  background: var(--color-primary);
  border-color: transparent;
  color: #fff;
  font-weight: 600;
}

.app-day-chips {
  display: flex;
  gap: 8px;
  margin-top: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 2px;
}

.app-day-chip {
  flex: 0 0 44px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 10px 0;
  border-radius: 12px;
}

.app-day-chip-selected {
  background: var(--color-primary);
}

.app-day-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  color: rgba(0, 0, 0, .6);
}

.app-day-chip-selected .app-day-label {
  color: rgba(255, 255, 255, .75);
}

.app-day-num {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-ink);
}

.app-day-chip-selected .app-day-num {
  color: #fff;
}

.app-day-dot {
  width: 4px;
  height: 4px;
  margin-top: 3px;
  border-radius: 50%;
}

.app-day-dot-active {
  background: #22C55E;
}

.app-day-dot-selected {
  background: #fff;
}

.app-dash-stats {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.app-stat-delta {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 6px;
}

.app-stat-delta span {
  font-size: 10px;
  color: rgba(0, 0, 0, .45);
}

.app-stat-dot {
  flex: none;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.app-stat-dot-green { background: #22C55E; }
.app-stat-dot-red { background: #EF4444; }

.app-stat {
  flex: 1;
  background: #F7F6FB;
  border-radius: 12px;
  padding: 14px;
  border: 1px solid rgba(0, 0, 0, .06);
  display: flex;
  flex-direction: column;
}

.app-stat-label {
  font-size: 10px;
  color: rgba(0, 0, 0, .45);
  text-transform: uppercase;
  letter-spacing: .05em;
}

.app-stat-value {
  font-size: 20px;
  font-weight: 800;
  color: var(--color-ink);
  margin-top: 4px;
}

.app-dash-today {
  margin-top: 26px;
}

.app-dash-today-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.app-dash-today-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-ink);
}

.app-dash-new-btn {
  padding: 7px 12px;
  border-radius: 8px;
  background: var(--color-primary);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
}

.app-slot-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
}

.app-slot-row {
  display: flex;
  gap: 12px;
}

.app-slot-time {
  flex: none;
  font-size: 11px;
  font-weight: 700;
  color: rgba(0, 0, 0, .4);
  width: 40px;
  padding-top: 12px;
  line-height: 1.6;
}

.app-slot-time span {
  color: rgba(0, 0, 0, .6);
  font-weight: 400;
}

.app-slot-card {
  flex: 1;
  padding: 12px 14px;
  border-radius: 10px;
}

.app-slot-card-blocked {
  background: #F1F1F1;
}

.app-slot-card-filled {
  background: #F7F6FB;
  border: 1px solid rgba(0, 0, 0, .06);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.app-slot-card-empty {
  background: transparent;
  border: 1px dashed rgba(0, 0, 0, .15);
}

.app-slot-info {
  flex: 1;
}

.app-appt-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-ink);
}

.app-slot-sub {
  font-size: 11px;
  color: rgba(0, 0, 0, .45);
  margin-top: 2px;
}

.app-slot-sub-flush {
  margin-top: 0;
}

.app-slot-available {
  color: var(--color-primary);
  font-weight: 600;
}

.app-appt-dot {
  flex: none;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.app-appt-dot-green { background: #22C55E; }
.app-appt-dot-gray { background: #94A3B8; }
.app-appt-dot-red { background: #EF4444; }

/* ---- Início screen: date nav (reused by the day-chip row) ---- */

.app-agenda-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}

.app-agenda-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #F7F6FB;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-ink);
  font-size: 20px;
}

.app-agenda-range {
  font-size: 13px;
  color: rgba(0, 0, 0, .45);
}

/* ---- Dashboard screen ---- */

.app-dashboard-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.app-dashboard-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--color-ink);
  letter-spacing: -0.01em;
}

.app-dashboard-icon-btn {
  flex: none;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #F7F6FB;
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-segmented {
  display: flex;
  gap: 7px;
  margin-top: 18px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 2px;
}

.app-segmented-item {
  flex: 0 0 auto;
  padding: 9px 15px;
  border-radius: 20px;
  background: #F7F6FB;
  border: 1px solid rgba(0, 0, 0, .06);
  color: var(--color-ink);
  font-size: 12px;
  font-weight: 500;
}

.app-segmented-item-active {
  background: var(--color-primary);
  border-color: transparent;
  color: #fff;
  font-weight: 600;
}

.app-kpi-label {
  margin-top: 26px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: rgba(0, 0, 0, .6);
  font-weight: 700;
}

.app-revenue-card {
  margin-top: 10px;
  padding: 18px;
  border-radius: 14px;
  background: var(--color-primary);
}

.app-revenue-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: rgba(255, 255, 255, .75);
  font-weight: 700;
}

.app-revenue-value {
  margin-top: 6px;
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

.app-revenue-delta {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 6px;
}

.app-revenue-delta span {
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}

.app-recurring-card {
  margin-top: 10px;
  padding: 14px;
  border-radius: 12px;
  background: #F7F6FB;
  border: 1px solid rgba(0, 0, 0, .06);
}

.app-recurring-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.app-recurring-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-ink);
}

.app-recurring-value {
  font-size: 13px;
  font-weight: 800;
  color: var(--color-primary);
}

.app-recurring-bar {
  margin-top: 8px;
  height: 8px;
  border-radius: 4px;
  background: rgba(0, 0, 0, .07);
  overflow: hidden;
  display: flex;
}

.app-recurring-bar-fill {
  background: var(--color-primary);
}

.app-recurring-bar-rest {
  background: rgba(108, 92, 231, .28);
}

.app-recurring-foot {
  margin-top: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.app-recurring-foot-left {
  display: flex;
  align-items: center;
  gap: 4px;
}

.app-recurring-foot-left span {
  font-size: 10px;
  color: rgba(0, 0, 0, .45);
}

.app-recurring-foot-right {
  font-size: 11px;
  color: rgba(0, 0, 0, .45);
}

.app-chart-head {
  margin-top: 22px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.app-chart-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-ink);
}

.app-chart-best {
  font-size: 11px;
  color: rgba(0, 0, 0, .45);
}

.app-chart-best span {
  color: var(--color-primary);
  font-weight: 600;
}

.app-bar-chart {
  margin-top: 12px;
  display: flex;
  gap: 6px;
  align-items: flex-end;
}

.app-bar-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.app-bar-track {
  width: 100%;
  height: 88px;
  display: flex;
  align-items: flex-end;
}

.app-bar-fill {
  width: 100%;
  border-radius: 5px 5px 3px 3px;
  background: rgba(108, 92, 231, .28);
}

.app-bar-fill-peak {
  background: var(--color-primary);
}

.app-bar-label {
  font-size: 10px;
  font-weight: 600;
  color: rgba(0, 0, 0, .6);
}

.app-bar-label-peak {
  color: var(--color-primary);
}

.app-chart-caption {
  margin-top: 8px;
  font-size: 11px;
  color: rgba(0, 0, 0, .45);
}

.app-list-head {
  margin-top: 14px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.app-list-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-ink);
}

.app-list-link {
  font-size: 11px;
  color: var(--color-primary);
  font-weight: 600;
}

.app-contact-list {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.app-contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  background: #F7F6FB;
  border: 1px solid rgba(0, 0, 0, .06);
}

.app-contact-row svg {
  flex: none;
}

.app-contact-info {
  flex: 1;
}

.app-contact-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-ink);
}

.app-contact-meta {
  font-size: 11px;
  color: rgba(0, 0, 0, .45);
  margin-top: 2px;
}

.app-rank-list {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.app-rank-row {
  padding: 12px 14px;
  border-radius: 10px;
  background: #F7F6FB;
  border: 1px solid rgba(0, 0, 0, .06);
}

.app-rank-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.app-rank-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-ink);
}

.app-rank-value {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-ink);
}

.app-rank-meta {
  font-size: 11px;
  color: rgba(0, 0, 0, .45);
  margin-top: 2px;
}

.app-rank-bar {
  margin-top: 8px;
  height: 5px;
  border-radius: 3px;
  background: rgba(0, 0, 0, .07);
  overflow: hidden;
}

.app-rank-bar-fill {
  height: 100%;
  border-radius: 3px;
  background: var(--color-primary);
}

/* ---- Serviços screen ---- */

.app-services-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.app-services-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--color-ink);
  letter-spacing: -0.01em;
}

.app-services-add {
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}

.app-services-count {
  font-size: 13px;
  color: rgba(0, 0, 0, .45);
  margin-top: 2px;
}

.app-services-list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.app-service-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: 12px;
  background: #F7F6FB;
  border: 1px solid rgba(0, 0, 0, .06);
}

.app-service-row > div {
  flex: 1;
}

.app-service-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-ink);
}

.app-service-meta {
  font-size: 11px;
  color: rgba(0, 0, 0, .45);
  margin-top: 2px;
}

.app-service-row-disabled {
  background: #F1F1F1;
  opacity: .6;
}

.app-toggle {
  flex: none;
  width: 38px;
  height: 22px;
  border-radius: 11px;
  padding: 2px;
  box-sizing: border-box;
  display: flex;
}

.app-toggle span {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
}

.app-toggle-on {
  background: var(--color-primary);
  justify-content: flex-end;
}

.app-toggle-off {
  background: #D9D9D9;
  justify-content: flex-start;
}

.app-services-cta {
  padding: 15px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  margin-top: 22px;
}

/* ==========================================================================
   Pricing
   ========================================================================== */

.pricing {
  padding-block: 36px;
  background: #fff;
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.price-card {
  padding: 22px;
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border);
  position: relative;
}

.price-card h3 {
  font-weight: 700;
  font-size: 15px;
  color: var(--color-ink);
}

.price-amount {
  font-weight: 800;
  font-size: 26px;
  color: var(--color-ink);
  margin-top: 8px;
}

.price-amount span {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-tertiary);
}

.price-features {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.price-features li {
  font-size: 12.5px;
  color: var(--color-text-secondary);
  padding-left: 20px;
  position: relative;
}

.price-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 12px;
  height: 8px;
  border-left: 2px solid var(--color-primary);
  border-bottom: 2px solid var(--color-primary);
  transform: rotate(-45deg);
}

.price-cta {
  width: 100%;
  margin-top: 18px;
  padding: 12px;
  font-size: 14px;
}

.price-card-popular {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.price-card-popular h3,
.price-card-popular .price-amount {
  color: #fff;
}

.price-card-popular .price-amount span {
  color: rgba(255, 255, 255, .75);
}

.price-card-popular .price-features li {
  color: rgba(255, 255, 255, .85);
}

.price-card-popular .price-features li::before {
  border-color: #fff;
}

.price-badge {
  position: absolute;
  top: -12px;
  left: 22px;
  background: #fff;
  color: var(--color-primary-on-tint);
  font-size: 10px;
  padding: 4px 10px;
}

/* ==========================================================================
   FAQ (always light)
   ========================================================================== */

.faq {
  padding-block: 36px;
  background: var(--color-surface);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--color-border-subtle);
  border-radius: 12px;
  overflow: hidden;
}

.faq-question {
  font-size: inherit;
  font-weight: inherit;
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  background: transparent;
  border: none;
  color: var(--color-ink);
  font-weight: 600;
  font-size: 13.5px;
  text-align: left;
  cursor: pointer;
}

.faq-icon {
  flex: none;
  width: 20px;
  height: 20px;
  position: relative;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--color-primary);
  transform: translate(-50%, -50%);
  transition: transform var(--transition-base);
}

.faq-icon::before {
  width: 12px;
  height: 2px;
}

.faq-icon::after {
  width: 2px;
  height: 12px;
}

.faq-trigger[aria-expanded="true"] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-panel p {
  padding: 0 18px 18px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--color-text-secondary);
}

/* ==========================================================================
   Final CTA (solid purple)
   ========================================================================== */

.final-cta {
  padding-block: 36px;
  text-align: center;
  background: var(--color-primary);
}

.final-cta h2 {
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: #fff;
}

.final-cta p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, .8);
  margin-top: 10px;
}

.final-cta-btn {
  max-width: 360px;
  margin: 20px auto 0;
}

/* ==========================================================================
   Footer (always dark)
   ========================================================================== */

.site-footer {
  background: var(--color-dark);
  padding-block: 28px;
  padding-bottom: calc(28px + 72px); /* clearance for sticky mobile CTA */
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-brand .logo .wordmark {
  font-size: 20px;
}

.footer-copyright {
  font-size: 11px;
  color: var(--color-text-on-dark-quaternary);
  margin-top: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-col h3 {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col a {
  font-size: 13px;
  color: var(--color-text-on-dark-tertiary);
}

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

/* ==========================================================================
   Sticky mobile CTA
   ========================================================================== */

.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  padding: 12px 20px;
  background: #fff;
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -4px 12px rgba(0, 0, 0, .05);
  transition: transform var(--transition-base);
}

.sticky-cta.is-hidden {
  transform: translateY(100%);
}

.sticky-cta-btn {
  padding: 14px;
  font-size: 14px;
}

/* ==========================================================================
   Legal pages (Privacy Policy, Terms)
   ========================================================================== */

.legal-back {
  display: inline-block;
  margin-top: 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
}

.legal-hero {
  max-width: 820px;
  margin-inline: auto;
  padding-block: 32px 24px;
}

.legal-title {
  font-weight: 800;
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-ink);
  margin-top: 20px;
}

.legal-lead {
  font-size: 15px;
  line-height: 1.55;
  color: var(--color-text-secondary);
  margin-top: 16px;
}

.legal-updated {
  font-size: 13px;
  color: var(--color-text-tertiary);
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, .08);
}

.legal-body {
  max-width: 820px;
  margin-inline: auto;
  padding-block: 16px 72px;
  display: flex;
  flex-direction: column;
  gap: 44px;
}

.legal-toc {
  background: var(--color-surface);
  border: 1px solid var(--color-border-subtle);
  border-radius: 16px;
  padding: 28px;
}

.legal-toc-title {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--color-text-tertiary);
}

.legal-toc-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.legal-toc-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-primary);
}

.legal-section h2 {
  font-weight: 800;
  font-size: 21px;
  letter-spacing: -0.01em;
  color: var(--color-ink);
}

.legal-section p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(0, 0, 0, .65);
  margin-top: 14px;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.legal-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(0, 0, 0, .65);
}

.legal-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
  margin-top: 9px;
  flex: none;
}

.legal-list strong {
  color: var(--color-ink);
}

.legal-highlight {
  background: var(--color-surface);
  border: 1px solid var(--color-border-subtle);
  border-radius: 14px;
  padding: 22px;
  margin-top: 18px;
}

.legal-highlight-title {
  font-weight: 700;
  font-size: 15px;
  color: var(--color-ink);
  margin-top: 0;
}

.legal-highlight p {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(0, 0, 0, .6);
  margin-top: 8px;
}

.legal-contact {
  background: var(--color-tint);
  border-radius: 14px;
  padding: 24px;
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.legal-contact-label {
  font-weight: 700;
  font-size: 16px;
  color: var(--color-ink);
  margin-top: 0;
}

.legal-contact-email {
  font-size: 14px;
  color: var(--color-text-secondary);
  margin-top: 4px;
}

.legal-fill {
  background: var(--color-tint);
  color: var(--color-primary-on-tint);
  border-radius: 4px;
  padding: 1px 6px;
  font-weight: 600;
}

/* ==========================================================================
   Desktop (≥900px)
   ========================================================================== */

@media (min-width: 900px) {
  .container {
    padding-inline: 48px;
  }

  .nav-toggle {
    display: none;
  }

  .header-cta {
    display: inline-flex;
    padding: 10px 20px;
    font-size: 13px;
  }

  .main-nav {
    position: static;
    max-height: none;
    overflow: visible;
    background: transparent;
    border: none;
    box-shadow: none;
  }

  .main-nav ul {
    flex-direction: row;
    padding: 0;
    gap: 32px;
  }

  .main-nav a {
    padding: 0;
    border-bottom: none;
    font-weight: 500;
    font-size: 14px;
    color: var(--color-text-secondary);
  }

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

  .logo .wordmark {
    font-size: 24px;
  }

  .footer-brand .logo .wordmark {
    font-size: 22px;
  }

  .section-title {
    font-size: 30px;
    margin-bottom: 48px;
  }

  /* Hero: split 2-column grid, text left / image right */
  .hero {
    padding-block: 64px;
  }

  .hero-inner {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "eyebrow image"
      "title image"
      "subtitle image"
      "actions image"
      "microcopy image";
    column-gap: 40px;
    row-gap: 0;
    align-items: center;
  }

  .hero-eyebrow { margin-bottom: 20px; }
  .hero-title { margin-top: 0; font-size: 44px; line-height: 1.1; max-width: 560px; }
  .hero-subtitle { margin-top: 20px; font-size: 17px; line-height: 1.55; max-width: 460px; }
  .hero-actions { flex-direction: row; margin-top: 32px; }
  .hero-microcopy { margin-top: 14px; text-align: left; font-size: 12px; }
  .hero-image { margin-top: 0; align-self: center; }

  .btn-lg {
    width: auto;
    padding: 16px 28px;
  }

  .hero-video-frame {
    border-radius: 24px;
  }

  .wa-mock {
    border-radius: 20px;
  }

  .wa-mock-header {
    padding: 13px 16px;
  }

  .wa-mock-avatar {
    width: 36px;
    height: 36px;
  }

  .wa-mock-avatar .wordmark {
    font-size: 12px;
  }

  .wa-mock-name {
    font-size: 14.5px;
  }

  .wa-icon {
    width: 17px;
    height: 17px;
  }

  .wa-icon-menu {
    width: 14px;
    height: 14px;
  }

  .wa-icon-emoji-btn {
    width: 16px;
    height: 16px;
  }

  .wa-mock-body {
    padding: 16px;
    gap: 11px;
  }

  .wa-mock-date {
    font-size: 10.5px;
  }

  .wa-mock-bubble-out {
    padding: 10px 14px;
    font-size: 13px;
  }

  .wa-mock-meta {
    font-size: 9.5px;
  }

  .wa-mock-bot-avatar {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }

  .wa-mock-bubble-in {
    padding: 10px 14px;
    font-size: 13px;
  }

  .wa-mock-menu {
    margin-left: 34px;
  }

  .wa-mock-menu-body {
    padding: 10px 14px;
  }

  .wa-mock-menu-title {
    font-size: 13.5px;
  }

  .wa-mock-menu-body p:not(.wa-mock-menu-title) {
    font-size: 12.5px;
  }

  .wa-mock-menu-action {
    padding: 11px;
    font-size: 13px;
  }

  .wa-mock-composer {
    padding: 13px 16px;
    gap: 10px;
  }

  .wa-mock-input {
    padding: 8px 14px;
    font-size: 13px;
  }

  /* Feature bands: 2-column, alternating text/mockup sides */
  .feature-band {
    padding-block: 72px;
  }

  .feature-row {
    flex-direction: row;
    align-items: center;
    gap: 48px;
  }

  .feature-row-reverse {
    flex-direction: row-reverse;
  }

  .feature-content,
  .feature-media {
    flex: 1;
  }

  .feature-content h3 {
    font-size: 26px;
    margin-top: 16px;
  }

  .feature-content p:not(.pill) {
    font-size: 15px;
    margin-top: 12px;
    max-width: 460px;
  }

  .feature-media {
    margin-top: 0;
  }

  .wa-reminder-avatar {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }

  .wa-reminder-bubble {
    padding: 14px 18px;
    font-size: 13px;
  }

  .wa-reminder-brand {
    font-size: 11.5px;
  }

  .wa-reminder-time {
    font-size: 11px;
  }

  .privacy-diagram {
    padding: 36px 28px;
  }

  .privacy-row {
    gap: 14px;
  }

  .privacy-tile {
    width: 56px;
    height: 56px;
    border-radius: 18px;
  }

  .privacy-tile-center {
    width: 76px;
    height: 76px;
    border-radius: 24px;
  }

  .privacy-tile-word {
    font-size: 16px;
  }

  .privacy-icon-whatsapp {
    width: 26px;
    height: 26px;
  }

  .privacy-icon-whatsapp-center {
    width: 32px;
    height: 32px;
  }

  .privacy-label {
    font-size: 11.5px;
  }

  .privacy-connector {
    width: 40px;
  }

  .privacy-divider {
    margin-top: 26px;
    padding-top: 22px;
  }

  /* Como funciona: 4-column grid */
  .how-it-works {
    padding-block: 72px;
  }

  .timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .timeline-step {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .timeline-marker {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    font-size: 15px;
    margin-bottom: 16px;
  }

  .timeline-content h3 {
    font-size: 15px;
  }

  .timeline-content p {
    font-size: 13px;
    margin-top: 6px;
  }

  /* App showcase */
  .app-showcase {
    padding-block: 72px;
  }

  .app-showcase-copy {
    max-width: 560px;
    margin-inline: auto;
    text-align: center;
  }

  .app-showcase-heading {
    font-size: 30px;
    margin-top: 16px;
  }

  .app-showcase-text {
    font-size: 15px;
    margin-top: 12px;
  }

  .app-showcase-carousel {
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 44px;
    overflow-x: visible;
    scroll-snap-type: none;
    padding-bottom: 0;
  }

  .app-phone {
    gap: 14px;
  }

  .app-phone-viewport {
    width: 240px;
    height: 519px;
    border-radius: 32px;
  }

  .app-phone-scale {
    transform: scale(0.6154);
  }

  .app-phone-label {
    font-size: 14px;
  }

  /* Pricing: 3 columns */
  .pricing {
    padding-block: 72px;
  }

  .pricing-grid {
    flex-direction: row;
    align-items: stretch;
    gap: 24px;
  }

  .price-card {
    flex: 1;
    padding: 32px;
    display: flex;
    flex-direction: column;
  }

  .price-amount {
    font-size: 32px;
    margin-top: 12px;
  }

  .price-amount span {
    font-size: 14px;
  }

  .price-features {
    margin-top: 16px;
    gap: 8px;
  }

  .price-features li {
    font-size: 13px;
  }

  .price-cta {
    margin-top: 24px;
    padding: 12px;
  }

  .price-badge {
    top: -14px;
    left: 32px;
    font-size: 11px;
  }

  /* FAQ: centered single column */
  .faq {
    padding-block: 72px;
  }

  .faq-list {
    max-width: 680px;
    margin-inline: auto;
    gap: 12px;
  }

  .faq-trigger {
    padding: 18px 22px;
    font-size: 14px;
  }

  /* Final CTA */
  .final-cta {
    padding-block: 64px;
  }

  .final-cta h2 {
    font-size: 28px;
  }

  .final-cta p {
    font-size: 15px;
  }

  .final-cta-btn {
    width: auto;
    padding: 16px 32px;
  }

  /* Footer */
  .site-footer {
    padding-block: 40px;
  }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .footer-links {
    gap: 56px;
  }

  /* Sticky CTA is mobile-only */
  .sticky-cta {
    display: none;
  }

  .site-footer {
    padding-bottom: 40px;
  }

  /* Legal pages */
  .legal-hero {
    padding-block: 64px 24px;
  }

  .legal-title {
    font-size: 44px;
  }

  .legal-lead {
    font-size: 17px;
  }

  .legal-section h2 {
    font-size: 26px;
  }

  .legal-section p {
    font-size: 16px;
  }
}
