/* ==========================================================================
   inlead — Landing Page
   Design system extracted from https://inlead.digital (Firecrawl branding scan)
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  --color-bg: #ffffff;
  --color-bg-soft: #f7f8fa;
  --color-dark: #030712;
  --color-dark-soft: #0c0e14;
  --color-dark-card: #111319;
  --color-text: #030712; /* gray-950 — títulos, nav, strong */
  --color-text-muted: #52525b; /* zinc-600 — leads / corpo (produção) */
  --color-text-soft: #9ca3af; /* gray-400 */
  --color-border: #e5e7eb;
  --color-border-dark: #23252c;
  --color-blue: #2563eb;
  --color-blue-dark: #1d4ed8;
  --color-blue-soft: #eaf1ff;
  --color-lime: #dbfc36;
  --color-lime-dark: #c3e01c;
  --color-quiz-accent: #6366f1;
  --color-quiz-accent-dark: #4f46e5;
  --color-quiz-accent-light: #818cf8;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 999px;

  /* 72rem — alinhado ao container do site oficial (Tailwind xl) */
  --container: 72rem;
  --container-narrow: 860px;

  /* Breakpoints de referência (produção): 380 / 480 / 640 / 768 / 1024 / 1280 */

  /* Spacing — base 4px (Tailwind). Seções: my-14 → md:my-24 */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-14: 56px;
  --space-20: 80px;
  --space-24: 96px;
  --space-40: 160px;
  --section-y: var(--space-14); /* my-14 */
  --section-y-md: var(--space-24); /* md:my-24 */
  --hero-pt: var(--space-8); /* pt-8 */
  --hero-pt-md: var(--space-12); /* md:pt-12 */
  --container-px: var(--space-4); /* px-4 */
  --container-px-xl: var(--space-8); /* xl:px-8 */

  --shadow-sm: 0 1px 2px rgba(3, 7, 18, 0.06);
  --shadow-md: 0 10px 15px -3px rgba(3, 7, 18, 0.08), 0 4px 6px -4px rgba(3, 7, 18, 0.08);
  --shadow-blue: 0 20px 25px -5px rgba(37, 99, 235, 0.25), 0 8px 10px -6px rgba(37, 99, 235, 0.2);
  --shadow-lime: 0 20px 25px -5px rgba(219, 252, 54, 0.35), 0 8px 10px -6px rgba(219, 252, 54, 0.25);

  --font-sans: "Inter", sans-serif, -apple-system, system-ui, Arial, Roboto, "Helvetica Neue", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji", "Noto Sans", "Liberation Sans";

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 14px; /* produção: base 14px */
  line-height: 1.5; /* → 21px */
  color: var(--color-text-muted); /* text-zinc-600 */
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  color: var(--color-text); /* gray-950 — não herdar o cinza do body */
}

strong {
  color: var(--color-text);
  font-weight: 700;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
}

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

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

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--container-px); /* px-4 — produção */
}

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

section {
  position: relative;
}

/* ---------- Utility ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px; /* gap-3 */
  font-size: 16px;
  font-weight: 400; /* produção: só o label inicial é bold */
  padding: 4px 12px; /* py-1 px-3 */
  border-radius: var(--radius-pill);
  background: #f3f4f6; /* gray-100 */
  border: none;
  color: var(--color-text-muted); /* zinc-600 */
  margin-bottom: 16px; /* mb-4 */
}

.eyebrow span {
  color: inherit;
  font-weight: 400;
}

.eyebrow.on-dark {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.eyebrow.on-dark span {
  color: rgba(255, 255, 255, 0.5);
}

.section-head {
  max-width: 640px;
  margin-bottom: var(--space-10); /* ~gap entre head e conteúdo */
}

.section-head.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head h2 {
  /* H2 seção: 32px mobile → 48px desktop (produção text-3xl → text-5xl) */
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-text);
  margin-bottom: var(--space-4); /* ~20px produção */
}

.section-head p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text-muted);
}

/* H2 grande (vídeo): text-4xl → sm:text-5xl → md:text-6xl → lg:text-7xl */
.heading-lg {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-text);
  margin-bottom: 18px;
}

@media (min-width: 640px) {
  .heading-lg {
    font-size: 48px;
  }
}

@media (min-width: 768px) {
  .heading-lg {
    font-size: 56px;
  }
}

@media (min-width: 1024px) {
  .heading-lg {
    font-size: 72px;
  }
}

.heading-lg + p,
.heading-body {
  font-size: 18px; /* produção: text-lg em seções */
  font-weight: 400;
  line-height: 1.65;
  color: var(--color-text-muted);
}

.section-head.on-dark h2 {
  color: #fff;
}

.section-head.on-dark p {
  color: rgba(255, 255, 255, 0.6);
}

mark.highlight,
.heading-style s {
  text-decoration: none;
  display: inline-block;
  background: var(--color-lime);
  color: var(--color-dark);
  padding: 0 20px;
  border-radius: 16px;
  font-style: normal;
  transform: rotate(-3deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 500;
  font-size: 14px; /* produção: .btn = 14px fixo */
  line-height: 1.5;
  border: none;
  border-radius: var(--radius-md);
  padding: 8.8px 16px; /* produção: ~39px de altura */
  min-height: 39px;
  white-space: nowrap;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.2s ease;
}

.btn:active {
  transform: scale(0.97);
}

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

.btn-lime {
  background: var(--color-lime);
  color: var(--color-dark);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lime);
}

.btn-dark {
  background: var(--color-dark);
  color: #fff;
  border-radius: var(--radius-lg);
}

.btn-ghost {
  background: transparent;
  color: var(--color-blue);
  padding: 13px 0;
  font-weight: 600;
}

.btn-outline {
  background: #fff;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.btn-block {
  width: 100%;
}

.link-arrow {
  color: var(--color-blue);
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease;
}

.inline-form {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: var(--space-2); /* produção: gap-2 */
  max-width: 20rem; /* produção: max-w-[20rem] */
  width: 100%;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.inline-form-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-soft);
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  opacity: 0.4;
  padding: 0;
  flex-shrink: 0;
}

.inline-form-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.inline-form-field {
  position: relative;
  flex: 1;
  min-width: 12rem;
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 12px 16px;
  transition: border-color 0.2s ease;
}

.inline-form-field:has(.inline-form-icon) {
  padding-left: 44px;
}

.inline-form-field:focus-within {
  border-color: #9ca3af;
}

.inline-form input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  padding: 0;
  color: var(--color-text);
  min-width: 0;
  width: 100%;
}

.inline-form input::placeholder {
  color: var(--color-text-soft);
  font-size: 14px;
  font-weight: 400;
}

.inline-form .btn {
  flex-shrink: 0;
  border-radius: 12px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 500;
  min-height: 50px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

/* ---------- Header (flutuante → encaixa no top no scroll) ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: transparent;
}

.header-bar {
  width: calc(100% - 2rem);
  max-width: var(--container);
  margin: 16px auto 0;
  padding: 16px 0; /* produção: py-4 */
  border-radius: var(--radius-lg);
  border: 1px solid rgba(156, 163, 175, 0.25);
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition:
    margin 0.7s ease,
    width 0.7s ease,
    max-width 0.7s ease,
    border-radius 0.7s ease,
    border-color 0.7s ease;
}

.site-header.is-docked .header-bar {
  width: 100%;
  max-width: none;
  margin: 0;
  border-radius: 0;
  border-left-color: transparent;
  border-right-color: transparent;
  border-top-color: transparent;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px; /* produção: conteúdo interno ~48px + py-4 = 82px */
  gap: 8px; /* gap-2 */
}

@media (min-width: 768px) {
  .site-header .container {
    gap: 24px; /* md:gap-6 */
  }
}

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

.logo img {
  height: 32px; /* produção */
  width: auto;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 32px;
}

.main-nav a {
  font-size: 16px; /* produção: text-base no header */
  font-weight: 500;
  color: var(--color-text);
  transition: color 0.2s ease;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.header-actions .btn {
  font-size: 16px; /* herda text-base do header na produção */
  min-height: 42px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--color-dark);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: var(--hero-pt) 0 0; /* produção: pt-8 */
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, #f3f4f6, transparent);
  pointer-events: none;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between; /* produção: justify-between */
  gap: var(--space-8); /* produção: gap-8 = 32px */
  /* produção: container com px-4 no hero (16px), sem xl:px-8 */
  padding-left: var(--space-4);
  padding-right: var(--space-4);
}

.hero-content {
  text-align: center;
  flex: 1 1 0%; /* produção: flex-1 */
  min-width: 0;
  max-width: 48rem; /* produção: max-w-3xl = 768px */
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px; /* gap-6 mobile */
}

@media (min-width: 768px) {
  .hero-content {
    text-align: left;
    gap: 32px; /* md:gap-8 */
  }
}

.hero-heading .eyebrow {
  margin-bottom: 16px; /* mb-4 — colado no H1 */
}

.hero-heading .eyebrow strong {
  font-weight: 700;
  color: inherit; /* zinc-600, não gray-950 */
}

.hero-content h1 {
  /* produção: text-[2.5rem]/[1.1] sm:text-6xl/[1.1] lg:text-8xl/[1] */
  font-size: 40px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--color-text);
  margin-bottom: 0;
}

@media (min-width: 640px) {
  .hero-content h1 {
    font-size: 56px; /* sm:text-6xl (escala custom da produção) */
    line-height: 1.1;
  }
}

@media (min-width: 1024px) {
  .hero-content h1 {
    font-size: 80px; /* lg:text-8xl */
    line-height: 1;
  }
}

.hero-copy {
  max-width: 40rem; /* lg:max-w-[40rem] */
  font-size: 20px;
  color: var(--color-text-muted);
}

.hero-copy .lead {
  font-size: inherit;
  font-weight: 400;
  line-height: 1.4;
  color: inherit;
  margin: 0 0 0.5em;
  max-width: none;
}

.hero-copy .contract-link {
  display: block;
  font-size: inherit;
  font-weight: 400;
  color: inherit;
  margin: 0;
}

.hero-copy .contract-link a {
  color: var(--color-blue);
  font-weight: 700;
}

.hero-content .inline-form {
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .hero-content .inline-form {
    margin-left: 0;
  }
}

.hero-visual {
  position: relative;
  display: flex;
  flex: 0 1 auto;
  width: 100%;
  max-width: 20rem; /* produção: max-w-xs = 320px */
  justify-content: center;
}

@media (min-width: 1024px) {
  .hero-visual {
    justify-content: flex-end;
  }
}

.phone-stage {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 20rem; /* max-w-xs da produção */
  animation: float 6s ease-in-out infinite;
}

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

.hero-chip-panel {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 50%;
  right: 100%;
  transform: translateY(-50%);
  margin-right: 12px;
  width: 10rem;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 4px;
  box-shadow: var(--shadow-md);
  z-index: 10;
  gap: 0;
}

@media (min-width: 768px) {
  .hero-chip-panel {
    display: flex;
  }
}

.hero-chip-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  margin: 2.4px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 12px;
  font-weight: 400; /* produção: chips do builder */
  color: var(--color-text-muted);
  white-space: nowrap;
  cursor: default;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.hero-chip-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  flex-shrink: 0;
}

.hero-chip-icon svg {
  width: 1.125rem;
  height: 1.125rem;
  padding: 2px;
}

.hero-chip-icon.icon-orange {
  background: #fff7ed;
  color: var(--color-dark);
}

.hero-chip-icon.icon-cyan {
  background: #ecfeff;
  color: var(--color-dark);
}

.hero-chip-icon.icon-violet {
  background: #f5f3ff;
  color: var(--color-dark);
}

@media (hover: hover) and (pointer: fine) {
  .hero-chip-item:hover {
    color: var(--color-text);
  }

  .hero-chip-item:hover .icon-orange {
    background: #ffedd5;
  }

  .hero-chip-item:hover .icon-cyan {
    background: #cffafe;
  }

  .hero-chip-item:hover .icon-violet {
    background: #ede9fe;
  }
}

/* Telefone — valores medidos no site oficial (320×596, border 8px, radius 40px) */
.phone-mockup {
  position: relative;
  z-index: 0;
  width: 100%;
  max-width: 320px;
  background: #fff;
  border: 8px solid var(--color-dark);
  border-radius: 40px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.phone-aspect {
  width: 100%;
  aspect-ratio: 11 / 21;
  pointer-events: none;
}

.phone-screen {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.phone-progress-wrap {
  padding: 14px 16px 0;
  flex-shrink: 0;
}

.phone-progress-track {
  position: relative;
  width: 100%;
  height: 0.3rem;
  border-radius: 999px;
  overflow: hidden;
}

.phone-progress-track::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-quiz-accent);
  opacity: 0.1;
}

.phone-progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: var(--color-quiz-accent);
  border-radius: 999px;
  transition: width 0.7s var(--ease);
}

.phone-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 12px;
  padding: 4px 16px 14px;
  overflow: hidden;
  min-height: 0;
}

.phone-copy {
  text-align: center;
  padding: 4px 0 0;
  flex-shrink: 0;
}

.phone-body h3,
.phone-copy h3 {
  font-size: 32px; /* produção: “Vamos começar!” */
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--color-dark);
  line-height: 1.15;
}

.phone-copy p {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.35;
  margin-bottom: 0;
}

.phone-timer {
  font-size: 12px !important;
  color: #6b7280 !important;
  margin-top: 6px !important;
}

.phone-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin: 0;
  flex: 1;
  align-content: start;
  min-height: 0;
}

.phone-option {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 12px;
  border: 1px solid #dbdbdb;
  border-radius: 16px;
  padding: 10px 12px;
  min-height: 52px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
  text-align: left;
  color: var(--color-dark);
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
  .phone-option:hover {
    border-color: var(--color-quiz-accent);
  }
}

.phone-option.is-active {
  background: #6366f1;
  border-color: #6366f1;
  color: #fff;
  font-weight: 500;
}

.phone-option .radio {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  box-sizing: content-box;
  padding: 0;
  border-radius: 50%;
  border: 1px solid #dbdbdb;
  background: #fff;
  flex-shrink: 0;
  color: var(--color-dark);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.phone-option.is-active .radio {
  border-color: #6366f1;
  background: #fff;
}

.phone-option .radio svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  opacity: 0;
  transition: opacity 0.15s ease;
}

.phone-option.is-active .radio svg {
  opacity: 1;
}

.phone-option-label {
  flex: 1;
  min-width: 0;
}

.phone-cta {
  width: 100%;
  border: none;
  border-radius: 16px;
  padding: 8.8px 16px;
  min-height: 52px;
  font-family: inherit;
  font-weight: 500;
  font-size: 16px;
  color: #fff;
  background: #6366f1;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s var(--ease);
  flex-shrink: 0;
  margin-top: auto;
}

@media (hover: hover) and (pointer: fine) {
  .phone-cta:hover {
    background: #7375f2;
  }
}

.phone-cta:active {
  transform: scale(0.99);
}

/* ---------- Logo marquee (produção: 56px, gap 100px, coloridos) ---------- */
.marquee-section {
  /* produção: mt-10 md:mt-24 + pb-6 md:pb-10, dentro do hero */
  position: relative;
  z-index: 1;
  margin-top: var(--space-10);
  padding-bottom: var(--space-6);
  margin-bottom: 0;
}

.marquee-wrap {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 100px;
  width: max-content;
  animation: marquee 32s linear infinite;
}

.marquee-track img {
  height: 56px;
  width: auto;
  object-fit: contain;
  opacity: 1;
  filter: none;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes marquee-reverse {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

/* ---------- Video / how it works (produção: coluna central + iframe) ---------- */
.video-section {
  margin: var(--section-y) 0; /* produção: my-14 */
  padding: 0;
  text-align: center;
  scroll-margin-top: 10rem;
}

.video-section .container {
  display: block;
  padding-left: var(--space-4);
  padding-right: var(--space-4);
}

.video-stack {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6); /* gap-6 */
}

.video-stack .heading-lg {
  margin-bottom: 0;
  max-width: 100%;
}

.video-lead {
  margin: 0 auto;
  max-width: 48rem; /* produção: max-w-[48rem] */
  font-size: 16px;
  line-height: 1.65;
}

@media (min-width: 1024px) {
  .video-lead {
    font-size: 18px; /* lg:text-lg */
  }
}

.video-player {
  position: relative;
  width: 100%;
  margin: 12px 0 16px; /* mt-3 mb-4 */
  border-radius: 24px; /* rounded-3xl */
  overflow: hidden;
  box-shadow: 0 4px 20px 0 rgba(3, 7, 18, 0.1);
  background: var(--color-dark);
}

@media (min-width: 768px) {
  .video-player {
    margin: 16px 0;
  }
}

.video-aspect {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.video-aspect iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  /* escala maior para cortar título/chrome do YT nas bordas */
  transform: scale(1.18);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.video-player.is-ready .video-aspect iframe {
  opacity: 1;
}

/* Camada que impede hover/foco no player do YouTube */
.video-shield {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: transparent;
}

.video-play-cta {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: none;
  align-items: center;
  gap: 12px;
  padding: 12px 12px 12px 20px;
  border: none;
  border-radius: 12px;
  background: rgba(23, 23, 23, 0.4);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.25s ease, background 0.25s ease;
}

.video-play-cta svg {
  width: 12px;
  height: 12px;
}

.video-player:hover .video-play-cta,
.video-player:focus-within .video-play-cta,
.video-player.is-paused .video-play-cta {
  opacity: 1;
}

@media (min-width: 768px) {
  .video-play-cta {
    display: flex;
  }
}

.video-play-cta:hover {
  background: rgba(23, 23, 23, 0.6);
}

/* Mobile: CTA abaixo do texto, acima do player */
.video-play-cta-mobile {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px 12px 20px;
  margin-bottom: -8px;
  border: none;
  border-radius: 12px;
  background: var(--color-blue);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
}

.video-play-cta-mobile svg {
  width: 12px;
  height: 12px;
}

@media (min-width: 768px) {
  .video-play-cta-mobile {
    display: none;
  }
}

/* ---------- Bento features ---------- */
.bento-section {
  margin: var(--section-y) 0; /* produção: my-14 */
  padding: 0;
}

.bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4); /* produção: gap-4 */
  width: 100%;
  min-width: 0;
}

@media (min-width: 640px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .bento-card {
    padding: 40px 40px 0; /* produção: lg:p-10 */
  }

  .bento-card.bento-wide {
    grid-column: span 3;
  }

  .bento-card.bento-narrow {
    grid-column: span 2;
  }
}

.bento-card {
  background: var(--color-bg-soft);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 24px 24px 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 0;
  max-width: 100%;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.bento-card .tag {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-blue);
  margin-bottom: 10px;
}

.bento-card h3 {
  /* H3 card: 24px mobile → 40px desktop */
  font-size: clamp(22px, 3vw, 40px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.bento-card p {
  font-size: 14.5px;
  color: var(--color-text-muted);
  line-height: 1.55;
  margin-bottom: 20px;
}

.bento-card img {
  margin-top: auto;
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

/* ---------- Alternating feature blocks ---------- */
.feature-blocks {
  margin: var(--section-y) 0;
  padding: 0 0 var(--space-6); /* produção: pb-6 nos blocos */
  display: flex;
  flex-direction: column;
  gap: var(--section-y); /* cada bloco era seção my-14 */
}

.feature-block .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6); /* produção: gap-6 md:gap-10 */
  align-items: center;
}

.feature-block img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.feature-block-text h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.feature-block-text p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-text-muted);
  margin-bottom: 22px;
  max-width: 460px;
}

/* ---------- Integrations (arcos SVG + badges — layout da produção) ---------- */
.integrations-section {
  margin: 0 0 var(--space-24); /* produção: mb-24 */
  padding: 0;
  text-align: center;
  overflow: visible;
  background: transparent;
}

@media (min-width: 768px) {
  .integrations-section {
    margin: var(--space-24) 0; /* md:my-24 */
  }

  .integrations-section .container {
    margin-top: 8rem; /* md:mt-32 */
  }
}

.integrations-arc {
  position: relative;
  display: inline-block;
  pointer-events: none;
  max-width: 100%;
}

.integrations-arc-img {
  display: block;
  width: min(909px, 100%);
  height: auto;
  margin: 0 auto;
  animation: integrations-pulse 3s ease-in-out infinite;
}

.integrations-arc-bottom {
  margin-top: 0;
}

.integrations-arc-bottom .integrations-arc-img {
  transform: scaleY(-1);
}

@media (min-width: 1024px) {
  .integrations-arc-bottom {
    margin-top: 4rem; /* lg:mt-16 */
  }
}

@keyframes integrations-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.55; }
}

.integration-badge {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f4f6; /* gray-100 */
  padding: 8px 16px;
  border-radius: 12px;
  height: 2.5rem;
  width: auto;
  max-height: 2.5rem;
}

@media (min-width: 768px) {
  .integration-badge {
    height: 4rem;
    max-height: 12%;
    border-radius: 24px; /* lg:rounded-3xl aproximado no desktop */
  }
}

@media (min-width: 1024px) {
  .integration-badge {
    border-radius: 24px;
  }
}

.integration-badge img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

/* Posições dos badges — arco superior */
.badge-albato {
  top: 0;
  left: 50%;
  transform: translate(-50%, -33%);
}

.badge-hubspot {
  top: 50%;
  right: 0;
  margin-top: -1.5rem; /* -mt-6 */
  transform: translateY(-50%);
}

@media (min-width: 768px) {
  .badge-hubspot {
    margin-top: 0; /* md:mt-0 */
  }
}

.badge-google {
  top: 25%;
  left: 0;
  transform: translate(50%, -50%);
  margin-left: -2.5rem;
}

@media (min-width: 768px) {
  .badge-google {
    margin-left: 0;
  }
}

.badge-vturb {
  display: none;
  bottom: 50%;
  left: 50%;
  transform: translateX(50%);
}

@media (min-width: 768px) {
  .badge-vturb {
    display: flex;
  }
}

/* Posições — arco inferior */
.badge-meta {
  top: 33.333%;
  left: 25%;
  transform: translateX(-50%);
}

.badge-make {
  /* produção: left-1/2 translate-y-1/2 (sem -translate-x) */
  bottom: 0;
  left: 50%;
  transform: translateY(50%);
}

.badge-zapier {
  top: 33.333%;
  left: 75%;
  transform: translateX(-33%);
}

/* Conteúdo central sobreposto */
.integrations-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6); /* gap-6 */
  margin: -4rem 0 -1.25rem; /* -mt-16 -mb-5 */
  text-align: center;
}

@media (min-width: 640px) {
  .integrations-content {
    margin: -6rem 0 -4rem; /* sm:-mt-24 sm:-mb-16 */
  }
}

@media (min-width: 1024px) {
  .integrations-content {
    margin: -9rem 0 -9rem; /* lg:-mt-36 lg:-mb-36 */
  }
}

/* Eyebrow da produção: bg-gray-100, sem borda, py-1 px-3 */
.integrations-content .eyebrow {
  gap: 12px; /* gap-3 */
  padding: 4px 12px;
  margin: 0;
  border: none;
  background: #f3f4f6;
  font-size: 12px; /* text-xs */
  font-weight: 700;
}

@media (min-width: 768px) {
  .integrations-content .eyebrow {
    font-size: 16px; /* md:text-base */
  }
}

.integrations-content .eyebrow span {
  font-weight: 400;
}

.integrations-title {
  /* produção: text-3xl → lg:text-6xl = 56px */
  font-size: clamp(30px, 4.5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-text);
  margin: 0;
  text-wrap: balance;
}

.integrations-lead {
  margin: 0 auto 8px; /* mb-2 */
  max-width: 48rem;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text-muted);
  text-wrap: balance;
}

@media (min-width: 1024px) {
  .integrations-lead {
    font-size: 20px; /* lg:text-xl */
    line-height: 28px; /* produção */
    max-width: 56rem; /* lg:max-w-4xl */
  }
}

.integrations-content .inline-form {
  margin: 0 auto;
}

/* ---------- Testimonial video reel (produção: card escuro + carrossel) ---------- */
.reel-section {
  position: relative;
  margin: var(--space-24) 0; /* my-24 */
  padding: 0;
  background: transparent;
  color: #fff;
}

@media (min-width: 768px) {
  .reel-section {
    margin-top: var(--space-40); /* md:mt-40 */
    margin-bottom: var(--space-24);
  }
}

.reel-shell {
  position: relative;
  padding: var(--space-12) 0; /* py-12 */
  margin: calc(var(--space-12) * -1) 0; /* -my-12 */
  overflow: hidden;
  color: #fff;
  text-align: center;
}

@media (min-width: 768px) {
  .reel-shell {
    padding: 8rem 0; /* md:py-32 */
    margin: -8rem 0; /* md:-my-32 */
  }
}

@media (min-width: 1024px) {
  .reel-shell {
    text-align: left;
  }
}

.reel-container {
  padding-bottom: var(--space-10); /* pb-10 — espaço do carrossel que vaza */
}

@media (min-width: 768px) {
  .reel-container {
    padding-bottom: 0;
  }
}

.reel-panel {
  position: relative;
}

.reel-panel-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: var(--color-dark); /* gray-950 */
  border-radius: var(--radius-xl); /* rounded-3xl = 24px */
}

@media (min-width: 768px) {
  .reel-panel-bg {
    border-radius: 40px; /* md:rounded-4xl medido na produção */
  }
}

.reel-layout {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  padding: 0 var(--space-4); /* px-4 */
  width: 100%;
  min-width: 0;
}

@media (min-width: 768px) {
  .reel-layout {
    display: flex;
  }
}

.reel-copy {
  width: 100%;
  min-width: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-10) 0; /* py-10 */
}

@media (min-width: 768px) {
  .reel-copy {
    padding: 7rem 0; /* md:py-28 */
  }
}

.reel-copy-inner {
  max-width: 24rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
}

@media (min-width: 1024px) {
  .reel-copy-inner {
    align-items: flex-start;
  }
}

.reel-copy .eyebrow {
  gap: 12px;
  padding: 4px 12px;
  margin: 0;
  border: 0;
  box-shadow: none;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

@media (min-width: 768px) {
  .reel-copy .eyebrow {
    font-size: 16px;
  }
}

.reel-copy .eyebrow span {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
}

.reel-title {
  margin: 0;
  color: #fff;
  font-size: clamp(30px, 4vw, 48px); /* text-3xl → lg:text-5xl */
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.reel-lead {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.75);
}

@media (min-width: 1024px) {
  .reel-lead {
    font-size: 20px;
  }
}

.reel-media {
  width: 100%;
  min-width: 0;
  position: relative;
  margin-bottom: -2.5rem; /* produção: -mb-10 */
}

@media (min-width: 768px) {
  .reel-media {
    margin-bottom: 0;
  }
}

.reel-media-spacer {
  width: 14rem; /* w-56 */
  margin: 0 auto;
}

@media (min-width: 640px) {
  .reel-media-spacer {
    width: 18rem; /* sm:w-72 */
  }
}

@media (min-width: 768px) {
  .reel-media-spacer {
    width: 22rem; /* md:w-[22rem] */
    margin: 0;
  }
}

.reel-media-aspect {
  aspect-ratio: 6 / 10;
}

.reel-slider-viewport {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  transform: translateY(-50%);
  overflow: visible;
  touch-action: pan-y;
}

@media (min-width: 768px) {
  .reel-slider-viewport {
    width: 50vw;
    margin-left: 0;
    overflow: hidden;
  }
}

.reel-track {
  display: flex;
  align-items: stretch;
  transition: transform 0.45s var(--ease);
  will-change: transform;
}

.reel-slide {
  flex: 0 0 14rem; /* w-56 */
  width: 14rem;
  pointer-events: none;
}

@media (min-width: 640px) {
  .reel-slide {
    flex-basis: 18rem;
    width: 18rem;
  }
}

@media (min-width: 768px) {
  .reel-slide {
    flex-basis: 24rem; /* md:w-96 */
    width: 24rem;
  }
}

.reel-slide.is-active {
  pointer-events: auto;
}

.reel-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: transparent;
  aspect-ratio: 6 / 10;
  width: 100%;
}

.reel-poster,
.reel-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  border-radius: var(--radius-xl);
  transform: scale(0.9);
  transition: transform 0.35s var(--ease), opacity 0.2s ease;
}

.reel-poster {
  z-index: 0;
}

.reel-video {
  z-index: 1;
  display: block;
  opacity: 0;
}

.reel-slide.is-playing .reel-video {
  opacity: 1;
}

.reel-slide.is-active .reel-poster,
.reel-slide.is-active .reel-video {
  transform: scale(1);
}

/* Blur + spinner nos que ainda não iniciaram (igual produção) */
.reel-pending {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-xl);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  pointer-events: none;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.reel-slide.is-playing .reel-pending {
  opacity: 0;
  visibility: hidden;
}

.reel-pending-spinner {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  animation: reel-spin 0.8s linear infinite;
}

@keyframes reel-spin {
  to { transform: rotate(360deg); }
}

.reel-nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  display: none;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  color: #fff;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.reel-slide.is-active .reel-nav {
  opacity: 0.85;
}

.reel-slide.is-active:hover .reel-nav {
  opacity: 1;
}

.reel-prev { left: 0.5rem; }
.reel-next { right: 0.5rem; }

@media (min-width: 640px) {
  .reel-nav {
    display: flex;
  }
}

.reel-nav svg {
  width: 1.1rem;
  height: 1.1rem;
}

.reel-controls {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  gap: 1.5rem;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.reel-slide.is-active .reel-controls {
  opacity: 1;
  pointer-events: auto;
}

@media (min-width: 768px) {
  .reel-controls {
    justify-content: space-between;
    padding: 1.5rem;
  }
}

.reel-ctrl {
  width: 3rem;
  height: 3rem;
  border: none;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(6px);
}

.reel-ctrl:last-child {
  display: flex; /* mute — único controle no mobile, como em produção */
}

@media (min-width: 640px) {
  .reel-ctrl {
    display: flex;
  }
}

.reel-ctrl svg {
  width: 1rem;
  height: 1rem;
}

/* ---------- Destaque cards ---------- */
.destaque-section {
  margin: 0 0 var(--section-y); /* mb-14 */
  padding: 0;
}

@media (min-width: 768px) {
  .destaque-section {
    margin: var(--space-24) 0; /* md:my-24 */
  }
}

.destaque-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-6);
  margin-bottom: 0;
}

.destaque-eyebrow {
  gap: 12px;
  padding: 4px 12px;
  margin: 0;
  border: 0;
  background: #eff6ff; /* blue-50 */
  color: #3b82f6; /* blue-500 */
  font-size: 12px;
  font-weight: 700;
}

@media (min-width: 768px) {
  .destaque-eyebrow {
    font-size: 16px;
  }
}

.destaque-eyebrow span {
  color: #3b82f6;
  font-weight: 400;
}

.destaque-title {
  margin: 0;
  font-size: clamp(30px, 4.5vw, 56px); /* text-3xl → lg:text-6xl */
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-text);
  text-wrap: balance;
}

@media (min-width: 1024px) {
  .destaque-title {
    padding-right: 6rem; /* lg:pr-24 */
  }
}

.destaque-lead {
  margin: -0.5rem 0 0; /* -mt-2 */
  max-width: 48rem;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text-muted);
}

@media (min-width: 1024px) {
  .destaque-lead {
    font-size: 20px; /* lg:text-xl */
  }
}

.destaque-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  margin-top: var(--space-10); /* mt-10 */
}

@media (min-width: 768px) {
  .destaque-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.destaque-card {
  border-radius: 40px; /* rounded-4xl */
  padding: 32px; /* p-8 */
  display: flex;
  flex-direction: column;
  gap: 12px; /* gap-3 */
  border: none;
}

.destaque-card.dark {
  background: #0a0a0a; /* neutral-950 */
  color: #fff;
}

.destaque-card.light {
  background: #f3f4f6; /* gray-100 */
  color: var(--color-text);
}

.destaque-card .tag {
  font-size: 14px;
  font-weight: 400;
  color: #2563eb; /* blue-600 */
}

.destaque-card.dark .tag {
  color: #93c5fd; /* blue-300 */
}

.destaque-card h3 {
  margin: 0;
  font-size: 2rem; /* !text-[2rem] */
  font-weight: 800;
  line-height: 1.1;
  color: inherit;
}

.destaque-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  opacity: 1;
  color: inherit;
}

.destaque-card.dark p {
  color: rgba(255, 255, 255, 0.85);
}

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

/* Imagens pill (rounded-full) — formato da produção */
.destaque-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: fill;
  border-radius: 9999px;
  background: transparent;
}

.destaque-card.media-top .destaque-img {
  order: -1;
  margin-bottom: 1.5rem; /* mb-6 */
}

.destaque-card.media-bottom .destaque-img {
  order: 1;
  margin-top: 1.5rem; /* mt-6 */
}

.destaque-card.media-bottom .tag,
.destaque-card.media-bottom h3,
.destaque-card.media-bottom p {
  order: 0;
}

.destaque-card.media-bottom p {
  margin-bottom: auto;
}

.destaque-card.media-top p {
  margin-bottom: auto;
}

/* ---------- Tag marquee (Personalização) ---------- */
.tags-section {
  position: relative;
  margin: var(--section-y) 0; /* my-14 */
  padding: 0 0 var(--space-14); /* pb-14 */
  text-align: center;
  overflow: hidden;
  background: linear-gradient(to top, #f9fafb, transparent); /* from-gray-50 */
}

@media (min-width: 768px) {
  .tags-section {
    margin: var(--space-24) 0; /* md:my-24 */
    padding: var(--space-10) 0 var(--space-24); /* md:pt-10 md:pb-24 */
  }
}

.tags-head-wrap {
  margin-bottom: var(--space-12); /* mb-12 */
}

.tags-head {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
  max-width: 48rem; /* max-w-3xl */
  margin: 0 auto;
  text-align: center;
}

.tags-eyebrow {
  gap: 12px;
  padding: 4px 12px;
  margin: 0;
  border: 0;
  background: #f3f4f6; /* gray-100 */
  color: var(--color-text);
  font-size: 12px;
  font-weight: 700;
}

@media (min-width: 768px) {
  .tags-eyebrow {
    font-size: 16px;
  }
}

.tags-eyebrow span {
  color: var(--color-text-muted);
  font-weight: 400;
}

.tags-title {
  margin: 0;
  font-size: clamp(30px, 4.5vw, 56px); /* text-3xl → lg:text-6xl */
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-text);
  text-wrap: balance;
}

.tags-lead {
  margin: 0;
  max-width: 36rem; /* max-w-xl */
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text-muted);
}

@media (min-width: 1024px) {
  .tags-lead {
    font-size: 20px; /* lg:text-xl */
  }
}

.tags-row {
  position: relative;
  overflow: hidden;
  padding: 0.5rem 0; /* py-[.5rem] */
}

.tags-track {
  display: flex;
  width: max-content;
  white-space: nowrap;
  text-align: center;
  animation: marquee 45s linear infinite;
  will-change: transform;
}

.tags-row.reverse .tags-track {
  animation-name: marquee-reverse;
}

.tags-group {
  display: flex;
  flex-shrink: 0;
  align-items: center;
}

/* Pills: rounded-[.25em], px-[.75em] py-[.75rem], font-light, text-4xl/md:text-6xl */
.pill {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  margin-left: 0.5rem; /* ml-[.5rem] */
  padding: 0.75rem 0.75em; /* py-[.75rem] px-[.75em] */
  border-radius: 0.25em; /* rounded-[.25em] — NÃO cápsula */
  background: var(--pill-bg, #e5e7eb);
  color: var(--color-text);
  font-weight: 300; /* font-light */
  font-size: clamp(36px, 5vw, 56px); /* text-4xl → md:text-6xl */
  line-height: 1.5;
  white-space: nowrap;
}

/* ---------- Pricing ---------- */
.pricing-section {
  margin: var(--section-y) 0;
  padding: 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin-bottom: 0; /* espaçamento vem das garantias (mt-14) */
}

.price-card {
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  padding: 32px;
  display: flex;
  flex-direction: column;
  background: #fff;
  color: var(--color-text); /* produção: text-gray-950 no card — não herdar zinc-600 do body */
}

.price-card.featured {
  background: var(--color-dark);
  color: #fff;
  border-color: var(--color-dark);
  transform: scale(1.03);
  box-shadow: var(--shadow-md);
  position: relative;
}

.price-card.featured h3,
.price-card.featured .price,
.price-card.featured .price strong,
.price-card.featured .desc,
.price-card.featured li {
  color: #fff; /* sobrescreve strong/h3 globais em gray-950 */
}

.price-card.featured::before {
  content: "MAIS POPULAR";
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-lime);
  color: var(--color-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
}

.price-card h3 {
  font-size: clamp(20px, 2.5vw, 24px);
  font-weight: 800;
  margin-bottom: 8px;
}

.price-card > p.desc {
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.7;
  margin-bottom: 22px;
  min-height: 42px;
}

.price-card .price {
  font-size: 24px; /* produção: text-2xl, herda gray-950 do card */
  font-weight: 400;
  margin-bottom: 24px;
  color: inherit;
}

.price-card .price strong {
  /* produção: font-bold (700), text-5xl → text-7xl — mesma cor do card */
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 700;
  line-height: 1;
  color: inherit;
  margin: 0 2px;
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 18px; /* produção: features do plano */
  font-weight: 500;
  margin-bottom: 16px;
}

.price-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-list li svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--color-blue);
}

.price-card.featured .price-list.primary li svg {
  color: var(--color-lime);
}

.price-list.secondary {
  font-weight: 500;
  opacity: 0.75;
  padding-top: 14px;
  border-top: 1px solid var(--color-border);
  margin-bottom: 26px;
}

.price-card.featured .price-list.secondary {
  border-top-color: rgba(255, 255, 255, 0.12);
}

.price-list.secondary li svg {
  color: var(--color-text-soft);
}

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

.pricing-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px; /* produção: gap-8 */
  margin-top: 56px; /* produção: mt-14 */
  margin-bottom: 48px; /* produção: imagem mt-12 */
  flex-wrap: wrap;
  text-align: left;
}

.pricing-badge {
  display: flex;
  width: 100%;
  max-width: 280px;
  align-items: center;
  gap: 16px; /* produção: gap-4 */
  font-size: 18px; /* produção: text-lg */
  font-weight: 500;
  line-height: 1.4;
  color: rgb(82, 82, 91); /* produção: text-zinc-600 */
}

.pricing-badge span {
  max-width: 12rem; /* produção: max-w-[12rem] */
  text-wrap: balance;
}

.pricing-badge img {
  width: 4rem; /* produção: w-[4rem] */
  height: 4rem;
  flex-shrink: 0;
  /* produção: filter-blue-600 */
  filter: invert(0.31) sepia(0.94) saturate(35.67) hue-rotate(213deg) brightness(0.96) contrast(1.01);
}

.pricing-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.pricing-image img {
  width: 100%;
  display: block;
}

/* ---------- Testimonials grid ---------- */
.testimonials-section {
  margin: var(--section-y) 0;
  padding: 0;
}

/* produção: flex flex-col items-start gap-6 */
.testimonials-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.testimonials-wrap > h2 {
  font-size: clamp(30px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  color: rgb(3, 7, 18);
  text-wrap: balance;
  max-width: none;
}

/* produção: bg-gray-100 pill, sem borda, font regular */
.testimonials-wrap .testi-eyebrow {
  margin-bottom: 0;
  font-weight: 400;
  font-size: 16px;
  gap: 12px;
  padding: 4px 12px;
  background: rgb(243, 244, 246);
  border: none;
  color: rgb(82, 82, 91);
}

.testimonials-wrap .testi-eyebrow span {
  color: inherit;
  font-weight: 400;
}

/* produção: text-base lg:text-xl max-w-[48rem] mb-4 */
.testi-lead {
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.4;
  color: rgb(82, 82, 91);
  max-width: 48rem;
  margin: 0 0 16px;
}

.testimonials-wrap > .btn-primary {
  border-radius: 12px; /* produção: rounded-xl */
  padding: 8.8px 16px;
  min-height: 39px;
  box-shadow: var(--shadow-md);
}

/* produção: md:columns-2 gap-4 space-y-4 -mt-16 */
.testi-columns {
  columns: 2;
  column-gap: 16px;
  width: 100%;
  margin-top: -64px;
}

.testi-card {
  break-inside: avoid;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 16px; /* produção: space-y-4 */
  padding: 24px;
  background: #fff;
  border: 1px solid rgb(229, 231, 235);
  border-radius: 16px; /* rounded-2xl */
  box-shadow: var(--shadow-md); /* shadow-lg approx */
}

/* produção: primeiro card mt-14 — fica abaixo do CTA na coluna 1 */
.testi-card--offset {
  margin-top: 56px;
}

.testi-top {
  display: flex;
  align-items: center;
  gap: 16px; /* sm:gap-4 */
}

.testi-top img.avatar {
  width: 80px;
  height: 80px;
  max-width: 20%;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testi-meta {
  flex: 1;
  min-width: 0;
}

.testi-name {
  font-weight: 600;
  font-size: 20px;
  line-height: 1.25;
  color: rgb(17, 24, 39);
}

.testi-handle {
  display: inline-block;
  font-size: 14px;
  line-height: 1.5;
  color: rgb(82, 82, 91);
  text-decoration: none;
  transition: color 0.2s ease;
}

.testi-handle:hover {
  color: var(--color-blue);
}

/* produção: ícone 48px sem círculo */
.testi-platform {
  width: 48px;
  height: 48px;
  max-width: 12.5%;
  object-fit: contain;
  flex-shrink: 0;
  margin-left: auto;
}

.testi-quote {
  font-size: 16px;
  line-height: 1.5;
  color: rgb(75, 85, 99);
  margin: 0;
  white-space: pre-line;
}

.testi-date {
  font-size: 12px;
  line-height: 1.5;
  color: rgb(156, 163, 175);
  font-weight: 400;
}

/* ---------- FAQ ---------- */
.faq-section {
  margin: var(--section-y) 0;
  padding: 0;
}

/* produção: flex flex-col items-start gap-6 */
.faq-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.faq-wrap > h2 {
  font-size: clamp(30px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  color: rgb(3, 7, 18);
  text-wrap: balance;
}

.faq-wrap .faq-eyebrow {
  margin-bottom: 0;
  font-weight: 400;
  font-size: 16px;
  gap: 12px;
  padding: 4px 12px;
  background: rgb(243, 244, 246);
  border: none;
  color: rgb(82, 82, 91);
}

.faq-wrap .faq-eyebrow span {
  color: inherit;
  font-weight: 400;
}

.faq-lead {
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.4;
  color: rgb(82, 82, 91);
  max-width: 48rem;
  margin: -8px 0 0; /* produção: -mt-2 */
}

.faq-wrap > .btn-primary {
  border-radius: 12px;
  padding: 8.8px 16px;
  min-height: 39px;
  box-shadow: var(--shadow-md);
}

/* produção: w-full flex flex-col gap-2 pt-4 — full container width */
.faq-list {
  width: 100%;
  max-width: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 16px;
}

.faq-item {
  border: 1px solid rgb(229, 231, 235);
  border-radius: 16px; /* md:rounded-2xl */
  overflow: hidden;
  background: rgb(243, 244, 246); /* resposta em gray-100 */
  font-size: 18px;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #fff;
  border: none;
  border-bottom: 1px solid rgb(229, 231, 235);
  border-radius: 16px;
  margin-bottom: -1px;
  text-align: left;
  padding: 24px 32px; /* md:px-8 md:py-6 */
  font-family: inherit;
  font-size: 24px; /* md:text-2xl */
  font-weight: 600;
  line-height: 1.1;
  color: rgb(107, 114, 128);
  cursor: pointer;
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: rgb(3, 7, 18);
}

.faq-question span {
  color: rgb(3, 7, 18); /* text-gray-950 */
  line-height: 1.25;
}

.faq-icon {
  flex-shrink: 0;
  width: 1em;
  height: 1em;
  font-size: 24px;
  color: rgb(107, 114, 128);
  transition: transform 0.3s ease;
}

.faq-item.is-open .faq-icon {
  transform: rotate(-45deg); /* plus → X */
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-inner {
  padding: 24px 32px;
}

.faq-answer p {
  margin: 0;
  font-size: 18px;
  line-height: 1.55;
  color: rgb(82, 82, 91);
}

/* ---------- Blog ---------- */
.blog-section {
  margin: var(--section-y) 0;
  padding: 0;
}

/* produção: grid gap-6 (coluna) */
.blog-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.blog-wrap > h2 {
  font-size: clamp(30px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  color: rgb(3, 7, 18);
  text-wrap: balance;
}

.blog-wrap .blog-eyebrow {
  margin-bottom: 0;
  font-weight: 400;
  font-size: 16px;
  gap: 12px;
  padding: 4px 12px;
  background: rgb(243, 244, 246);
  border: none;
  color: rgb(82, 82, 91);
}

.blog-wrap .blog-eyebrow span {
  color: inherit;
  font-weight: 400;
}

/* produção: max-w-[28rem] lg:text-xl -mt-2 */
.blog-lead {
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.4;
  color: rgb(82, 82, 91);
  max-width: 28rem;
  margin: -8px 0 0;
}

.blog-wrap > .btn-primary {
  border-radius: 12px;
  padding: 8.8px 16px;
  min-height: 39px;
  box-shadow: var(--shadow-md);
}

/* produção: md:grid-cols-3 pt-10 gap-4 */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 40px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 16px;
  transition: background-color 0.25s ease;
}

.blog-card:hover {
  background: rgb(243, 244, 246);
}

.blog-card-media {
  display: block;
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 16px;
  background: rgb(243, 244, 246);
}

.blog-card-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-media img {
  transform: scale(1.05);
}

.blog-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
}

.blog-card-main {
  display: grid;
  gap: 8px;
  width: 100%;
}

.blog-card-main a {
  text-decoration: none;
  color: inherit;
}

.blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.blog-tags a {
  text-decoration: none;
}

.blog-tags span {
  display: inline-block;
  font-size: 11.2px;
  font-weight: 600;
  color: rgb(37, 99, 235);
  background: rgb(219, 234, 254);
  padding: 2px 4px;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}

.blog-tags a:hover span {
  background: rgb(191, 219, 254); /* blue-200 */
}

.blog-card h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.375; /* snug */
  color: rgb(3, 7, 18);
  margin: 0;
}

.blog-meta {
  width: 100%;
  font-size: 12px;
  line-height: 1.35;
  color: rgb(82, 82, 91);
}

/* ---------- Footer ---------- */
/* produção: bg-neutral-950 pt-20 pb-12 text-white */
.site-footer {
  background: #0a0a0a;
  color: #fff;
  padding: 80px 0 48px;
  font-size: 14px;
}

/* produção: md:flex gap xl:gap-32 justify-between items-start */
.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 128px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 16px; /* gap-4 */
}

.footer-nav a {
  font-size: 24px; /* text-2xl */
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: rgb(59, 130, 246); /* blue-500 */
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 32px; /* space-y-8 */
}

.footer-contact h3,
.footer-address h3 {
  color: #fff;
  font-size: 20px; /* text-xl */
  font-weight: 500;
  margin: 0 0 12px; /* mb-3 */
}

.footer-email {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-email:hover {
  color: rgb(96, 165, 250); /* blue-400 */
}

.footer-address a {
  display: block;
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-address a:hover {
  color: rgb(96, 165, 250);
}

.footer-building {
  font-weight: 600;
  color: rgb(96, 165, 250); /* text-blue-400 */
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 48px; /* lg:space-y-12 */
  text-align: right;
}

.footer-wordmark {
  margin: 0;
  font-size: 72px; /* text-7xl */
  font-weight: 400;
  line-height: 1;
  color: #fff;
}

.footer-wordmark span {
  font-weight: 700;
}

.footer-social {
  display: flex;
  gap: 8px; /* gap-2 */
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-radius: 8px;
  color: #fff;
  transition: background-color 0.2s ease;
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.1);
}

.footer-social svg {
  width: 1em;
  height: 1em;
  font-size: 20px; /* text-xl */
}

.footer-copy-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 48px; /* mt-12 */
}

.footer-copy {
  margin: 0;
  color: #fff;
  font-size: 14px;
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 48px 0; /* md:my-12 */
}

.footer-legal-wrap {
  color: rgb(107, 114, 128); /* text-gray-500 */
}

.footer-legal {
  margin: 0;
  font-size: 12px; /* text-xs/relaxed */
  line-height: 1.625;
  color: rgb(107, 114, 128);
}

.footer-legal a {
  color: rgba(96, 165, 250, 0.5); /* text-blue-400/50 */
  text-decoration: underline;
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: rgba(96, 165, 250, 0.8);
}

.footer-bottom-links {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  font-size: 14px;
  color: rgb(107, 114, 128);
}

.footer-bottom-links a {
  color: inherit;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: rgb(156, 163, 175); /* gray-400 */
}

/* ==========================================================================
   Responsive — breakpoints alinhados à produção
   1280 / 1024 / 860 / 768 / 640 / 480 / 380 (+ min-height 667)
   ========================================================================== */

/* Tablet / notebook pequeno (≤1024px / lg) */
@media (max-width: 1024px) {
  .hero .container {
    flex-direction: column; /* produção: max-lg:flex-col */
  }

  .feature-block .container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-visual {
    margin-bottom: 8px;
  }

  .feature-block-text p {
    max-width: none;
  }

  .destaque-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

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

  .footer-top {
    flex-wrap: wrap;
    gap: 40px;
  }

  .footer-brand {
    margin-left: auto;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
}

/* Nav mobile + empilhamento (≤860px) */
@media (max-width: 860px) {
  .main-nav,
  .header-actions .btn {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-content .inline-form,
  .integrations-content .inline-form {
    max-width: none;
    flex-direction: column;
    align-items: stretch;
  }

  .inline-form .btn {
    width: 100%;
  }

  .testi-columns {
    columns: 1;
    margin-top: 0;
  }

  .testi-card,
  .testi-card--offset {
    margin-top: 16px;
  }

  .testi-card:first-child {
    margin-top: 0;
  }

  .testi-top {
    gap: 12px;
  }

  .testi-top img.avatar {
    width: 64px;
    height: 64px;
  }

  .testi-platform {
    width: 40px;
    height: 40px;
  }

  .testi-card {
    padding: 16px;
    gap: 16px;
  }

  .testi-name {
    font-size: 16px;
  }

  .faq-question {
    font-size: 18px; /* produção: text-lg no mobile */
    padding: 12px 16px; /* px-4 py-3 */
    border-radius: 12px;
  }

  .faq-item {
    border-radius: 12px;
    font-size: 16px;
  }

  .faq-icon {
    font-size: 20px;
  }

  .faq-answer-inner {
    padding: 12px 16px;
  }

  .faq-answer p {
    font-size: 16px;
  }

  .hero-chip-panel {
    display: none;
  }

  .phone-mockup {
    margin: 0 auto;
  }

  .feature-blocks {
    gap: var(--section-y);
    padding-bottom: var(--space-6);
  }

  .pricing-badges {
    gap: 32px;
    margin-top: 48px; /* produção: md:mt-12 */
  }

  .pricing-badge {
    max-width: none;
  }

  .blog-grid {
    padding-top: 32px;
  }
}

/* Tablet md / phablet (≤768px) */
@media (max-width: 768px) {
  .section-head {
    margin-bottom: var(--space-8);
  }

  .bento-section,
  .destaque-section,
  .pricing-section,
  .tags-section,
  .video-section,
  .faq-section,
  .blog-section,
  .testimonials-section,
  .feature-blocks {
    margin-top: var(--section-y);
    margin-bottom: var(--section-y);
  }
}

/* Padding lateral — produção: px-4 (16px) na maioria dos containers */
@media (min-width: 768px) {
  .container,
  .container-narrow {
    padding: 0 var(--container-px); /* px-4 — não sobe para 24px */
  }

  .hero .container,
  .video-section .container {
    padding-left: var(--space-4);
    padding-right: var(--space-4);
  }

  /* Desktop md+: my-24, hero pt-12, gaps maiores */
  .hero {
    padding-top: var(--hero-pt-md);
  }

  .marquee-section {
    margin-top: var(--space-24); /* md:mt-24 */
    padding-bottom: var(--space-10); /* md:pb-10 */
  }

  .video-section,
  .bento-section,
  .pricing-section,
  .testimonials-section,
  .faq-section,
  .blog-section {
    margin: var(--section-y-md) 0;
  }

  .feature-blocks {
    margin: var(--section-y-md) 0;
    padding-bottom: var(--space-10); /* md:pb-10 */
    gap: var(--section-y-md);
  }

  .feature-block .container {
    gap: var(--space-10); /* md:gap-10 */
  }

  .destaque-section {
    margin: var(--section-y-md) 0;
  }

  .tags-section {
    margin: var(--section-y-md) 0;
    padding-top: var(--space-10); /* md:pt-10 */
    padding-bottom: var(--space-24); /* md:pb-24 */
  }

  .bento-grid {
    gap: var(--space-8); /* xl:gap-8 aproximado em md+ */
  }

  .section-head {
    margin-bottom: var(--space-12);
  }
}

@media (min-width: 1280px) {
  /* produção: só o header usa xl:px-8; seções mantêm px-4 */
  .site-header .container {
    padding-left: var(--container-px-xl);
    padding-right: var(--container-px-xl);
  }

  .hero .container,
  .video-section .container {
    padding-left: var(--space-4);
    padding-right: var(--space-4);
  }
}

/* Mobile sm (≤640px) */
@media (max-width: 640px) {
  .integrations-arc-img {
    width: 100%;
    max-width: 420px;
  }

  .badge-google {
    margin-left: -1rem;
  }

  .integrations-content {
    margin: -3rem 0 -1rem;
  }

  .footer-top {
    flex-direction: column;
    align-items: center;
    gap: 32px;
    text-align: center;
  }

  .footer-nav,
  .footer-contact,
  .footer-brand {
    align-items: center;
  }

  .footer-brand {
    margin-left: 0;
    text-align: center;
    order: -1;
  }

  .footer-wordmark {
    font-size: clamp(48px, 12vw, 72px);
    text-align: center;
  }

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

  .footer-address a,
  .footer-email {
    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
  }

  .site-footer {
    padding: 48px 0 32px;
  }

  .phone-stage {
    animation: none;
  }
}

/* Celulares pequenos (≤480px) — iPhone SE / Android entrada */
@media (max-width: 480px) {
  .container,
  .container-narrow {
    padding: 0 16px;
  }

  .hero {
    padding: var(--hero-pt) 0 0;
  }

  .hero-content h1 {
    font-size: 40px;
    line-height: 1.1;
  }

  .eyebrow {
    font-size: 14px;
    padding: 5px 12px;
    margin-bottom: 16px;
  }

  .phone-mockup {
    max-width: 280px;
  }

  .phone-copy h3 {
    font-size: 24px;
  }

  .phone-copy p {
    font-size: 14px;
  }

  .phone-option {
    min-height: 48px;
    font-size: 15px;
  }

  .bento-card {
    padding: 20px 16px 0;
  }

  .bento-card h3 {
    font-size: 22px;
  }

  .price-card {
    padding: 28px 20px;
  }

  .price-list {
    font-size: 16px;
  }

  .pricing-badge {
    font-size: 14px;
  }

  .site-header .container {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

/* Extra-pequenos (≤380px) */
@media (max-width: 380px) {
  .hero-content h1 {
    font-size: 36px;
  }

  .section-head h2,
  .feature-block-text h2 {
    font-size: 28px;
  }

  .heading-lg {
    font-size: 32px;
  }

  .price-card .price strong {
    font-size: 42px;
  }

  .btn {
    padding: 11px 16px;
  }
}

/* Menu mobile: tipografia por ALTURA (produção: min-height 667px) */
@media (max-height: 666px) {
  .mobile-nav {
    padding: 16px;
  }

  .mobile-nav-head {
    margin-bottom: 20px;
  }

  .mobile-nav a {
    font-size: 24px;
    font-weight: 600;
    padding: 8px 0;
  }

  .mobile-nav .btn {
    margin-top: 20px;
  }
}

@media (min-height: 667px) {
  .mobile-nav a {
    font-size: 32px; /* produção: drawer */
    font-weight: 600;
    line-height: 1.25;
    padding: 14px 0;
  }
}

/* Hover só em dispositivos com mouse (evita hover grudado no touch) */
@media (hover: hover) and (pointer: fine) {
  .btn-primary:hover {
    background: var(--color-blue-dark);
    transform: translateY(-2px);
  }

  .btn-lime:hover {
    background: var(--color-lime-dark);
    transform: translateY(-2px);
  }

  .btn-dark:hover {
    background: #1a1d27;
    transform: translateY(-2px);
  }

  .btn-outline:hover {
    border-color: var(--color-dark);
  }

  .link-arrow:hover {
    gap: 10px;
  }

  .bento-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
  }

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

  .footer-nav a:hover {
    color: rgb(59, 130, 246);
  }

  .footer-address a:hover,
  .footer-email:hover {
    color: rgb(96, 165, 250);
  }

  .footer-bottom-links a:hover {
    color: rgb(156, 163, 175);
  }

  .footer-social a:hover {
    background: rgba(255, 255, 255, 0.1);
  }
}

/* Acessibilidade: reduz animações */
@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;
  }
}

/* Mobile nav panel */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: #fff;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
  display: flex;
  flex-direction: column;
  padding: 24px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-nav.is-open {
  transform: translateX(0);
}

.mobile-nav-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.mobile-nav-close {
  background: none;
  border: none;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav a {
  font-size: 32px; /* produção: drawer fullscreen */
  font-weight: 600;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
  display: block;
}

.mobile-nav .btn {
  margin-top: 32px;
}
