@import url('wnx-tokens.css');

/* WNEXO Site — Identidade visual Clínica Experts (Tipografia Inter + Clean Charcoal) */

:root {
  --blue: #18181b;
  --blue-dark: #27272a;
  --blue-light: #f4f4f5;
  --ink: #18181b;
  --ink-soft: #18181b;
  --text: #52525b;
  --muted: #71717a;
  --line: #e4e4e7;
  --soft: #ffffff;
  --white: #ffffff;
  --site-bg: #f4f4f5;
  --site-bg-alt: #ffffff;
  --nav-h: 74px;
  --max: 1200px;
  --r: 20px;
  --r-pill: 9999px;
  --sh: 0 4px 20px rgba(0, 0, 0, 0.04);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  background: #f4f4f5;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: -0.015em;
  color: var(--ink);
  background: var(--site-bg);
}

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

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

ul {
  list-style: none;
}

.wrap,
.wrap-lg {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}

.tc {
  text-align: center;
}

.bg-gray,
.bg-soft {
  background: #f4f4f5 !important;
}

.bg-dark {
  background: #18181b !important;
}

/* ——— Typography (Clínica Experts escala Inter) ——— */
h1 {
  font-size: clamp(2.3rem, 4.4vw, 3.85rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--ink);
}

h1 em {
  font-style: normal;
  color: var(--ink);
}

h2 {
  font-size: clamp(1.85rem, 3.4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: var(--ink);
}

h3 {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: var(--ink);
}

.lead {
  font-size: 1.125rem;
  color: var(--text);
  line-height: 1.6;
  letter-spacing: -0.012em;
  max-width: 36em;
}

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

.section-title h2 {
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
}

.section-title p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.0625rem;
  line-height: 1.6;
  max-width: 34em;
  margin-left: auto;
  margin-right: auto;
}

.eyebrow,
.kicker {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  color: #18181b;
  background: #ffffff;
  border: 1px solid #e4e4e7;
  border-radius: 9999px;
  padding: 4px 14px;
  margin-bottom: 16px;
}

.link-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 1rem;
  font-weight: 600;
  color: #18181b;
  letter-spacing: -0.011em;
  transition: color 0.2s ease, gap 0.2s ease;
}

.link-cta:hover {
  color: #000000;
  gap: 10px;
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--r-pill);
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.011em;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.btn-lg {
  padding: 14px 28px;
  font-size: 1rem;
}

.btn-xl {
  padding: 15px 32px;
  font-size: 1.05rem;
}

.btn-primary,
.btn-blue {
  background: #18181b;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  border-radius: 9999px;
}

.btn-primary:hover,
.btn-blue:hover {
  background: #27272a;
  color: #ffffff;
  transform: translateY(-1px);
}

.btn-outline {
  background: #e4e4e7;
  color: #18181b;
  border: none;
  border-radius: 9999px;
}

.btn-outline:hover {
  background: #d4d4d8;
  color: #18181b;
  transform: translateY(-1px);
}

.btn-white {
  background: #ffffff;
  color: #18181b;
  border: 1px solid #e4e4e7;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  border-radius: 9999px;
}

.btn-white:hover {
  background: #f4f4f5;
}

.btn-ghost {
  background: transparent;
  color: #18181b;
  padding-left: 0;
  padding-right: 0;
  box-shadow: none;
  font-weight: 600;
}

.btn-ghost:hover {
  color: #000000;
}


.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

/* ——— Navbar ——— */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 900;
  background: #FFFFFF !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.navbar.scrolled {
  border-bottom-color: rgba(0, 0, 0, 0.08);
  background: #FFFFFF !important;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo img {
  height: 42px;
  width: auto;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 32px;
}

.nav-links>a,
.nav-item>a {
  font-size: 0.9375rem;
  font-weight: 400;
  letter-spacing: -0.011em;
  color: var(--text);
  transition: color 0.2s;
}

.nav-links>a:hover,
.nav-item>a:hover,
.nav-links>a.active {
  color: var(--ink);
}

.nav-item {
  position: relative;
}

.nav-caret {
  font-size: 10px;
  opacity: 0.55;
}

.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 260px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(180%) blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.12);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
}

.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
}

.dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 10px;
  font-size: 0.9375rem;
  color: var(--text);
}

.dropdown a:hover {
  background: var(--soft);
  color: var(--ink);
}

.dropdown a i {
  color: var(--blue);
  font-size: 18px;
}

.dropdown--wide {
  min-width: 520px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px 8px;
}

@media (max-width: 640px) {
  .dropdown--wide {
    min-width: 280px;
    grid-template-columns: 1fr;
  }
}

.nav-actions {
  display: none;
  align-items: center;
  gap: 12px;
}

.nav-actions .btn-outline {
  border: none;
  padding: 10px 14px;
  font-weight: 500;
}

.hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 12px;
  background: transparent;
  font-size: 24px;
  color: var(--ink);
  cursor: pointer;
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 950;
  background: var(--white);
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.mobile-nav a {
  padding: 16px 0;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

.mobile-nav-label {
  padding: 20px 0 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: none;
}

.mobile-nav-close {
  align-self: flex-end;
  width: 44px;
  height: 44px;
  border: none;
  background: var(--soft);
  border-radius: 12px;
  font-size: 22px;
  cursor: pointer;
  margin-bottom: 16px;
}

@media (min-width: 992px) {

  .nav-links,
  .nav-actions {
    display: flex;
  }

  .hamburger {
    display: none;
  }
}

/* ——— Sections ——— */
.section {
  padding: 104px 0;
}

/* ——— Hero Cinema / Subpages Clean (Sem imagens de fundo) ——— */
.hero-cinema {
  position: relative;
  min-height: auto;
  background: radial-gradient(circle at 50% -10%, #FFFFFF 0%, #F4F4F5 55%, #FAFAFA 100%);
  color: var(--ink);
  overflow: hidden;
  padding: calc(var(--nav-h) + 40px) 24px 60px;
  text-align: center;
}

.hero-cinema-media,
.hero-cinema-scrim {
  display: none !important;
}

.hero-cinema-content {
  position: relative;
  z-index: 1;
  padding: 0;
  max-width: 860px;
  margin: 0 auto;
}

.hero-cinema-content h1 {
  color: var(--ink);
  max-width: none;
  margin: 0 auto 18px;
}

.hero-cinema-content .hero-sub {
  margin: 0 auto 28px;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text);
  max-width: 36em;
}

.hero-cinema-content .btn-primary,
.hero-cinema-content .btn-blue {
  background: #18181b;
  color: #ffffff;
}

.hero-cinema-content .btn-outline {
  background: #e4e4e7;
  color: #18181b;
  border: none;
}

.hero-cinema-content .btn-outline:hover {
  background: #d4d4d8;
  color: #18181b;
}

/* Legacy hero (subpages) */
.hero {
  padding: calc(var(--nav-h) + 40px) 0 60px;
  background: radial-gradient(circle at 50% -10%, #FFFFFF 0%, #F4F4F5 55%, #FAFAFA 100%);
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.hero-sub {
  margin-top: 16px;
  font-size: 1.125rem;
  color: var(--text);
  line-height: 1.6;
}

.hero-person-shot {
  display: none !important;
}

/* ——— Clínica Experts Hero Elements & Widgets ——— */
.wnx-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid #e4e4e7;
  border-radius: 9999px;
  padding: 6px 18px;
  font-size: 13.5px;
  font-weight: 500;
  color: #27272a;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  margin-bottom: 24px;
}

.wnx-ai-sparkle {
  display: inline-block;
  font-size: 15px;
}

.wnx-hero-trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 28px 0 44px;
}

.wnx-hero-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f3e8ff;
  color: #6b21a8;
  padding: 8px 18px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 500;
}

.wnx-hero-trust-pill i {
  color: #9333ea;
  font-size: 18px;
}

.wnx-hero-preview-wrapper {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 16px;
  position: relative;
}

.wnx-hero-carousel {
  position: relative;
  width: 100%;
}

.wnx-hero-preview-frame {
  position: relative;
  background: #ffffff;
  border: 1px solid #e4e4e7;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
}

.wnx-hero-carousel-track {
  display: flex;
  width: 100%;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.wnx-hero-carousel-slide {
  min-width: 100%;
  flex: 0 0 100%;
  position: relative;
}

.wnx-hero-carousel-slide img {
  width: 100%;
  height: auto;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}

.wnx-hero-carousel-slide .wnx-slide-badge {
  position: absolute;
  top: 16px;
  left: 20px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(228, 228, 231, 0.9);
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 700;
  color: #18181b;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  pointer-events: none;
  z-index: 2;
}

.wnx-hero-carousel-slide .wnx-slide-badge i {
  color: #6366f1;
  font-size: 15px;
}

.wnx-hero-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid #e4e4e7;
  color: #18181b;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.wnx-hero-preview-frame:hover .wnx-hero-carousel-btn,
.wnx-hero-carousel-btn:focus-visible {
  opacity: 1;
  pointer-events: auto;
}

.wnx-hero-carousel-btn:hover {
  background: #ffffff;
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.14);
}

.wnx-hero-carousel-btn--prev {
  left: 18px;
}

.wnx-hero-carousel-btn--next {
  right: 18px;
}

.wnx-hero-carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 24px auto 10px;
  padding: 6px;
  max-width: fit-content;
  background: #ffffff;
  border: 1px solid #e4e4e7;
  border-radius: 9999px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.wnx-hero-carousel-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 9999px;
  border: none;
  background: transparent;
  color: #71717a;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.wnx-hero-carousel-tab i {
  font-size: 16px;
  transition: transform 0.2s ease;
}

.wnx-hero-carousel-tab:hover {
  color: #18181b;
  background: #f4f4f5;
}

.wnx-hero-carousel-tab:hover i {
  transform: scale(1.12);
}

.wnx-hero-carousel-tab.is-active {
  background: #18181b;
  color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
}

.wnx-hero-carousel-tab.is-active i {
  color: #ffffff;
}

@media (max-width: 768px) {
  .wnx-hero-carousel-btn {
    opacity: 0.85;
    pointer-events: auto;
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
  .wnx-hero-carousel-btn--prev { left: 8px; }
  .wnx-hero-carousel-btn--next { right: 8px; }

  .wnx-hero-carousel-nav {
    overflow-x: auto;
    max-width: calc(100vw - 32px);
    justify-content: flex-start;
    padding: 4px 6px;
    gap: 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .wnx-hero-carousel-nav::-webkit-scrollbar {
    display: none;
  }
  .wnx-hero-carousel-tab {
    padding: 6px 12px;
    font-size: 12px;
    gap: 5px;
  }
  .wnx-hero-carousel-slide .wnx-slide-badge {
    top: 10px;
    left: 10px;
    padding: 4px 10px;
    font-size: 11px;
  }
}

/* Seção de Impacto / Números (Clínica Experts) */
.wnx-impact-section {
  padding: 80px 0 90px;
  background: #ffffff;
  border-bottom: 1px solid #e4e4e7;
}

.wnx-impact-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  margin-top: 48px;
  text-align: center;
}

@media (max-width: 1024px) {
  .wnx-impact-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 20px;
  }
}

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

.wnx-impact-number {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 700;
  color: #18181b;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 8px;
}

.wnx-impact-label {
  font-size: 0.9375rem;
  color: #71717a;
  font-weight: 500;
}

/* Barra Fixa Inferior (Clínica Experts Bottom Bar) */
.wnx-floating-bottom-bar {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 850;
  width: min(92%, 860px);
  background: #18181b;
  color: #ffffff;
  border-radius: 18px;
  padding: 14px 24px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.wnx-floating-bottom-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 16px;
}

.wnx-floating-bottom-text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
}

.wnx-floating-bottom-text span {
  font-size: 0.85rem;
  color: #a1a1aa;
}

.wnx-floating-bottom-cta {
  white-space: nowrap;
  background: #ffffff !important;
  color: #18181b !important;
  border-radius: 9999px !important;
  padding: 10px 20px !important;
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .wnx-floating-bottom-bar {
    bottom: 12px;
    padding: 12px 16px;
  }
  .wnx-floating-bottom-text span {
    display: none;
  }
  .wnx-floating-bottom-text strong {
    font-size: 0.85rem;
  }
  .wnx-floating-bottom-cta {
    padding: 8px 14px !important;
    font-size: 0.82rem !important;
  }
}

/* Botão Flutuante WhatsApp (Clínica Experts) */
.wnx-floating-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 860;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.wnx-floating-whatsapp:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
  color: #ffffff;
}

.wnx-whatsapp-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 20px;
  height: 20px;
  background: #ef4444;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
}


/* ——— Feature rows (audience) ——— */
.feature-row+.feature-row {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.feature-row-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}

.feature-row-copy h2 {
  max-width: 18ch;
  margin-top: 4px;
}

.feature-row-copy .lead {
  margin-top: 16px;
}

.feature-row-visual {
  min-width: 0;
  overflow: hidden;
}

.feature-row-visual img {
  width: 100%;
  max-width: 100%;
  border-radius: var(--r);
  box-shadow: var(--sh);
}

.page-mockup,
.feature-row-visual img.page-mockup,
.page-hero-shot {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 10;
  max-height: min(480px, 62vh);
  object-fit: contain;
  object-position: top center;
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.module-card>.page-mockup,
.module-card>.module-card-mockup {
  width: 100%;
  aspect-ratio: 16 / 10;
  max-height: none;
  object-fit: cover;
  object-position: top center;
  border-radius: 0;
  box-shadow: none;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  background: var(--soft);
}

.module-card>.module-card-mockup.page-mockup--svg {
  object-fit: contain;
  background: #f8fafc;
  padding: 10px;
}

.audience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.audience-card {
  padding: 36px 32px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--r);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.audience-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--sh);
}

.audience-card h3 {
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.audience-card p {
  color: var(--text);
  margin-bottom: 18px;
  line-height: 1.5882352941;
}

@media (min-width: 768px) {
  .audience-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .feature-row-inner {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
  }

  .feature-row--reverse .feature-row-inner {
    direction: rtl;
  }

  .feature-row--reverse .feature-row-inner>* {
    direction: ltr;
  }
}

/* ——— Module grid ——— */
.module-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.module-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 24px 20px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--r);
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.module-card h3,
.module-card p {
  padding-left: 0;
  padding-right: 0;
}

.module-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--sh);
  border-color: rgba(0, 0, 0, 0.1);
}

.module-card i {
  font-size: 1.75rem;
  color: var(--blue);
}

.module-card h3 {
  font-size: 1.0625rem;
  font-weight: 600;
}

.module-card p {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.5294117647;
}

@media (min-width: 768px) {
  .module-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
}

/* ——— Tags ——— */
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 880px;
  margin: 0 auto;
}

.tag-cloud span,
.tag-cloud a {
  padding: 10px 18px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--r-pill);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, box-shadow 0.2s;
}

.tag-cloud a:hover {
  border-color: var(--blue);
  color: var(--ink);
  box-shadow: 0 4px 14px rgba(43, 108, 176, 0.12);
}

/* ——— Testimonials ——— */
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.testimonial {
  padding: 32px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--r);
}

.testimonial q {
  display: block;
  font-size: 1.0625rem;
  color: var(--text);
  line-height: 1.5882352941;
  quotes: none;
}

.testimonial cite {
  display: block;
  margin-top: 18px;
  font-style: normal;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--ink-soft);
}

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

/* ——— CTA ——— */
.cta-section {
  padding: 104px 0;
  color: var(--ink);
  text-align: center;
}

.cta-section h2 {
  color: var(--ink-soft);
  margin-bottom: 14px;
  font-weight: 300;
}

.cta-section p {
  color: var(--muted);
  max-width: 34em;
  margin: 0 auto 28px;
  font-size: 1.0625rem;
}

.cta-band {
  text-align: center;
  padding: 56px 28px;
}

/* ——— Page hero cinema (subpáginas) ——— */
.page-hero-cinema {
  position: relative;
  min-height: min(72vh, 760px);
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
}

.page-hero-cinema .hero-cinema-content {
  max-width: 680px;
}

.page-hero-cinema .hero-cinema-content .kicker {
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 14px;
}

.page-mockup--svg,
.page-hero-shot.is-ui {
  aspect-ratio: 16 / 10;
  max-height: min(480px, 62vh);
  object-fit: contain;
  padding: 12px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.nav-inicio {
  font-weight: 600;
}

.nav-links>a.nav-inicio.active,
.mobile-nav a.nav-inicio.active {
  color: var(--primary);
}

.page-hero-shot.is-photo {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

/* Legacy page hero (fallback) */
.page-hero {
  padding: calc(var(--nav-h) + 56px) 0 72px;
  background: var(--soft);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.page-hero-copy h1 {
  margin-bottom: 16px;
  font-weight: 700;
}

.page-hero-copy h2 {
  font-weight: 300;
}

.page-hero-shot {
  width: 100%;
  border-radius: var(--r);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--sh);
  background: var(--white);
}

.page-hero-shot.is-ui {
  aspect-ratio: 5 / 3;
  object-fit: contain;
}

@media (min-width: 992px) {
  .page-hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
  }
}

/* ——— Benefits ——— */
.benefit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.benefit-item {
  padding: 28px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--r);
}

.benefit-item i {
  font-size: 1.625rem;
  color: var(--blue);
  margin-bottom: 12px;
}

.benefit-item p {
  font-size: 0.9375rem;
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.5294117647;
}

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

/* ——— Footer (cores do botão primário — Preferências) ——— */
:root {
  --footer-bg: var(--blue, #2B6CB0);
  --footer-text: #ffffff;
  --footer-text-muted: rgba(255, 255, 255, 0.78);
  --footer-heading: #ffffff;
  --footer-border: rgba(255, 255, 255, 0.22);
}

.footer {
  padding: 64px 0 28px;
  background: var(--footer-bg) !important;
  color: var(--footer-text);
  border-top: 1px solid var(--footer-border);
}

.footer:has(.footer-inner):not(:has(.footer-grid)) {
  padding: 28px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-inner p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--footer-text);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-bottom: 40px;
}

.footer-brand img {
  height: 30px;
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 0.9375rem;
  line-height: 1.5294117647;
  max-width: 280px;
  color: var(--footer-text-muted);
}

.footer-col h5 {
  color: var(--footer-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.footer a,
.footer-col a,
.footer-links a {
  display: block;
  font-size: 0.9375rem;
  padding: 5px 0;
  color: var(--footer-text);
  transition: color 0.2s;
  text-decoration: none;
}

.footer-links a {
  display: inline-block;
  padding: 0;
  font-size: 0.875rem;
}

.footer a:hover,
.footer-col a:hover,
.footer-links a:hover {
  color: var(--footer-text);
  opacity: 0.82;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--footer-border);
  font-size: 0.8125rem;
  color: var(--footer-text-muted);
  text-align: center;
}

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

/* ——— Reveal ——— */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal.from-right {
  transform: translateX(24px);
}

.reveal.from-left {
  transform: translateX(-24px);
}

.reveal.visible.from-right,
.reveal.visible.from-left {
  transform: none;
}

.reveal.d1 {
  transition-delay: 0.08s;
}

.reveal.d2 {
  transition-delay: 0.16s;
}

/* ——— Product portfolio (ecossistema WNEXO) ——— */
.product-badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.product-badge--clinica {
  background: rgba(10, 50, 80, 0.85);
}

.product-badge--conversas {
  background: rgba(37, 211, 102, 0.85);
}

.product-badge--radar {
  background: rgba(37, 99, 235, 0.85);
}

.product-badge--capta {
  background: rgba(124, 58, 237, 0.85);
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.product-grid--compact {
  max-width: 960px;
  margin: 0 auto;
}

.product-grid--portfolio {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

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

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

  .product-grid--compact {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 992px) {
  .product-grid--portfolio {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    max-width: 1200px;
  }
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px 22px;
  border-radius: var(--r);
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: var(--white);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  min-height: 100%;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh);
}

.product-card i {
  font-size: 2rem;
  line-height: 1;
}

.product-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.product-card-badge {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(10, 50, 80, 0.1);
  color: #0A3250;
  vertical-align: middle;
}

.product-card p {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.5;
  flex: 1;
}

.product-card-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink-soft);
}

.product-card-price small {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--muted);
}

.product-card-link {
  font-size: 0.875rem;
  font-weight: 700;
  margin-top: 4px;
}

.product-card--clinica {
  border-top: 4px solid #0A3250;
}

.product-card--clinica i {
  color: #0A3250;
}

.product-card--clinica .product-card-link {
  color: #0A3250;
}

.product-card--conversas {
  border-top: 4px solid #25d366;
}

.product-card--conversas i {
  color: #25d366;
}

.product-card--conversas .product-card-link {
  color: #15803d;
}

.product-card--radar {
  border-top: 4px solid #2563eb;
}

.product-card--radar i {
  color: #2563eb;
}

.product-card--radar .product-card-link {
  color: #2563eb;
}

.product-card--capta {
  border-top: 4px solid #7c3aed;
}

.product-card--capta i {
  color: #7c3aed;
}

.product-card--capta .product-card-link {
  color: #7c3aed;
}

.product-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  flex-shrink: 0;
}

.product-card__icon i {
  font-size: 1.625rem;
  line-height: 1;
}

.product-card--clinica .product-card__icon {
  background: rgba(10, 50, 80, 0.1);
}

.product-card--conversas .product-card__icon {
  background: rgba(37, 211, 102, 0.12);
}

.product-card--radar .product-card__icon {
  background: rgba(37, 99, 235, 0.1);
}

.product-card--capta .product-card__icon {
  background: rgba(124, 58, 237, 0.1);
}

.product-grid--home {
  margin-top: 8px;
}

@media (min-width: 992px) {
  .product-grid--home {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.product-grid--home .product-card {
  text-decoration: none;
  color: inherit;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}

.product-grid--home .product-card:hover {
  border-color: rgba(15, 23, 42, 0.12);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

.product-grid-foot {
  margin-top: 28px;
  text-align: center;
}

.product-card--featured {
  grid-column: 1 / -1;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
  padding: 28px 26px;
  background: linear-gradient(135deg, #051e30, #0A3250 70%);
  color: #fff;
  border: none;
}

.product-card--featured h3,
.product-card--featured p,
.product-card--featured .product-card-price {
  color: #fff;
}

.product-card--featured p {
  opacity: 0.88;
}

.product-card--featured .product-card-price small {
  color: rgba(255, 255, 255, 0.75);
}

.product-card--featured i {
  color: #fff;
}

.product-card--featured .product-card-link {
  color: #93c5fd;
}

@media (min-width: 768px) {
  .product-card--featured {
    grid-column: span 2;
  }

  .product-grid--portfolio .product-card--featured {
    grid-column: 1 / -1;
  }
}

/* ——— Pricing strip ——— */
.pricing-strip {
  background: var(--soft);
  border-block: 1px solid rgba(0, 0, 0, 0.06);
  padding: 18px 0;
}

.pricing-strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 20px;
}

.pricing-strip-inner>div:first-child strong {
  display: block;
  font-size: 1rem;
  color: var(--ink-soft);
}

.pricing-strip-inner>div:first-child span {
  font-size: 0.8125rem;
  color: var(--muted);
}

.pricing-strip-price {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--ink-soft);
}

.pricing-strip-price span {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--muted);
}

.pricing-strip-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.pricing-strip--conversas {
  border-left: 4px solid #25d366;
}

.pricing-strip--radar {
  border-left: 4px solid #2563eb;
}

.pricing-strip--capta {
  border-left: 4px solid #7c3aed;
}

.pricing-table-wrap {
  overflow-x: auto;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--r);
  box-shadow: var(--shadow-sm, 0 4px 20px rgba(0, 0, 0, .04));
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}

.pricing-table th,
.pricing-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  vertical-align: top;
}

.pricing-table th {
  background: var(--soft);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
}

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

.pricing-table-highlight td {
  background: rgba(43, 108, 176, 0.04);
}

/* ——— Billing explainer ——— */
.billing-explainer {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}

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

.billing-explainer-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--r);
  padding: 20px 18px;
}

.billing-explainer-card h3 {
  font-size: 1.0625rem;
  margin: 8px 0 6px;
}

.billing-explainer-card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.5;
}

.billing-tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 999px;
}

.billing-tag--wnexo {
  background: #dbeafe;
  color: #1e40af;
}

.billing-tag--meta {
  background: #dcfce7;
  color: #166534;
}

.billing-tag--guide {
  background: #fef3c7;
  color: #92400e;
}

/* ——— FAQ / compare grids ——— */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 880px;
  margin: 0 auto;
}

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

.faq-card {
  margin: 0;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--r);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ink-soft);
  line-height: 1.45;
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 880px;
  margin: 0 auto;
}

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

.compare-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--r);
  padding: 22px 20px;
}

.compare-card h3 {
  margin-bottom: 8px;
}

.compare-card p {
  font-size: 0.9375rem;
  color: var(--muted);
  margin-bottom: 12px;
}

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

.compare-card li {
  font-size: 0.875rem;
  color: var(--text);
  padding: 6px 0 6px 22px;
  position: relative;
}

.compare-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
}

.cta-section--conversas,
.cta-section--radar,
.cta-section--capta {
  /* faixas alternadas em style.css */
}

.ecosystem-diagram {
  max-width: 640px;
  margin: 0 auto;
  padding: 24px 28px;
  background: #0f172a;
  color: #e2e8f0;
  border-radius: var(--r);
  font-family: ui-monospace, 'Cascadia Code', Consolas, monospace;
  font-size: 0.75rem;
  line-height: 1.5;
  text-align: center;
  white-space: pre-wrap;
}

/* ——— Páginas com fundo branco — exceto rodapé ——— */
.site-stripe-a,
#site-content>section.site-stripe-a,
.site-stripe-b,
#site-content>section.site-stripe-b,
body>section:nth-of-type(odd):not(.footer),
body>section:nth-of-type(even):not(.footer) {
  background-color: #ffffff !important;
}

main#blog-article,
.blog-article-wrap {
  background-color: var(--site-bg);
}