/* ============================================================
   ITAGENDA — Site CSS
   Versão: 1.0
   Organização:
   01. Variáveis e Design Tokens
   02. Reset e Base
   03. Tipografia
   04. Layout — Container e Utilitários
   05. Componentes — Buttons
   06. Componentes — Tags/Badges
   07. Componentes — Check-list
   08. Header e Navegação
   09. Hero Section
   10. Stats Bar
   11. Features Grid
   12. Showcase Sections
   13. Modules Section
   14. Segments Section
   15. Pricing Section
   16. Testimonials
   17. FAQ
   18. CTA Final
   19. Footer
   20. Animações
   21. Responsivo
============================================================ */

/* ============================================================
   01. VARIÁVEIS E DESIGN TOKENS
============================================================ */
:root {
  /* Cores Principais */
  --blue-50:  #eff6ff;
  --blue-100: #dbeafe;
  --blue-500: #3b82f6;
  --blue-600: #2563eb;
  --blue-700: #1d4ed8;
  --blue-800: #1e40af;
  --blue-900: #1e3a8a;

  --cyan-400: #22d3ee;
  --cyan-500: #06b6d4;
  --cyan-600: #0891b2;

  --slate-50:  #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;

  /* Tokens Semânticos */
  --color-primary:       var(--blue-600);
  --color-primary-dark:  var(--blue-700);
  --color-primary-light: var(--blue-100);
  --color-text:          var(--slate-800);
  --color-text-muted:    var(--slate-500);
  --color-bg:            #ffffff;
  --color-bg-alt:        var(--slate-50);
  --color-border:        var(--slate-200);
  --color-dark:          var(--slate-900);

  /* Tipografia */
  --font-display: 'Sora', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  /* Espaçamento */
  --space-xs:  0.375rem;
  --space-sm:  0.75rem;
  --space-md:  1rem;
  --space-lg:  1.5rem;
  --space-xl:  2rem;
  --space-2xl: 2.25rem;
  --space-3xl: 3rem;
  --space-4xl: 4.5rem;

  /* Border Radius */
  --radius-sm:  0.375rem;
  --radius-md:  0.625rem;
  --radius-lg:  0.875rem;
  --radius-xl:  1.25rem;
  --radius-2xl: 1.75rem;
  --radius-full: 9999px;

  /* Sombras */
  --shadow-xs: 0 1px 2px rgba(0,0,0,.06);
  --shadow-sm: 0 1px 4px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,.08), 0 2px 4px rgba(0,0,0,.04);
  --shadow-lg: 0 10px 30px rgba(0,0,0,.1), 0 4px 8px rgba(0,0,0,.05);
  --shadow-xl: 0 20px 50px rgba(0,0,0,.12), 0 8px 16px rgba(0,0,0,.06);

  /* Transições */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --transition: 220ms var(--ease-out);
}

/* ============================================================
   02. RESET E BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.625;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

ul { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.2;
  margin: 0;
  letter-spacing: -0.02em;
}

p { margin: 0; }

button { cursor: pointer; border: none; background: none; }

/* ============================================================
   03. TIPOGRAFIA
============================================================ */
h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); font-weight: 800; }
h2 { font-size: clamp(1.625rem, 3vw, 2.25rem); font-weight: 700; }
h3 { font-size: 1.125rem; font-weight: 600; }
h4 { font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }

/* ============================================================
   04. LAYOUT — CONTAINER E UTILITÁRIOS
============================================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.section {
  padding-block: var(--space-4xl);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: var(--space-2xl);
}

.section-header--light h2,
.section-header--light p {
  color: #fff;
}

.section-header h2 {
  margin-top: var(--space-sm);
  color: var(--slate-900);
}

.section-header p {
  margin-top: var(--space-md);
  color: var(--color-text-muted);
  font-size: 1.0625rem;
}

/* ============================================================
   05. COMPONENTES — BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6875rem 1.375rem;
  border-radius: var(--radius-lg);
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--sm   { padding: 0.5rem 1rem; font-size: 0.875rem; }
.btn--lg   { padding: 0.875rem 1.75rem; font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; }

.btn--primary {
  background: linear-gradient(135deg, var(--blue-600), var(--cyan-600));
  color: #fff;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
}
.btn--primary:hover {
  background: linear-gradient(135deg, var(--blue-700), var(--cyan-500));
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--blue-600);
  border: 1.5px solid var(--blue-200, #bfdbfe);
  box-shadow: var(--shadow-xs);
}
.btn--outline:hover {
  background: var(--blue-50);
  border-color: var(--blue-500);
}

.btn--ghost {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.9);
  border: 1.5px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.18);
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}

.btn--white {
  background: #fff;
  color: var(--blue-700);
  font-weight: 700;
}
.btn--white:hover {
  background: var(--blue-50);
  transform: translateY(-1px);
}

.btn--ghost-white {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn--ghost-white:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

/* ============================================================
   06. COMPONENTES — TAGS/BADGES
============================================================ */
.section-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.3125rem 0.875rem;
  border-radius: var(--radius-full);
  background: var(--blue-50);
  color: var(--blue-700);
  font-size: 0.8125rem;
  font-weight: 600;
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  border: 1px solid var(--blue-100);
}

.section-tag--light {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.2);
}

/* ============================================================
   07. COMPONENTES — CHECK-LIST
============================================================ */
.check-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-top: var(--space-lg);
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: var(--slate-700);
}

.check-list li::before {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  background: var(--blue-600);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 6l3 3 5-5' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* ============================================================
   08. HEADER E NAVEGAÇÃO
============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 68px;
  display: flex;
  align-items: center;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background var(--transition), box-shadow var(--transition);
}

.header.is-scrolled {
  background: rgba(15, 23, 42, 0.96);
  box-shadow: 0 1px 24px rgba(0,0,0,0.2);
}

.header.is-light {
  background: rgba(255,255,255,0.95);
  border-bottom-color: var(--slate-200);
}

.header.is-light .nav-link { color: var(--slate-800); }
.header.is-light .nav-link:hover { background: rgba(0,0,0,0.06); color: var(--slate-900); }

.header.is-light .menu-btn span { background: var(--slate-700); }

/* Logos do header */
.brand-logo {
  height: 36px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.brand-logo--color { display: none; }

.header.is-light .brand-logo--white { display: none; }
.header.is-light .brand-logo--color { display: block; }

body.page-inner .header .brand-logo--white { display: none; }
body.page-inner .header .brand-logo--color { display: block; }

.navbar {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.5625rem;
  font-family: var(--font-display);
  font-size: 1.1875rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.brand--light span { color: var(--slate-800); }

.brand-icon {
  flex-shrink: 0;
  line-height: 0;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}

.nav-link {
  display: block;
  padding: 0.4375rem 0.875rem;
  border-radius: var(--radius-md);
  color: rgba(255,255,255,0.75);
  font-size: 0.9375rem;
  font-weight: 500;
  transition: color var(--transition), background var(--transition);
}

.nav-link:hover {
  color: #fff;
  background: rgba(255,255,255,0.08);
}

.nav-link--active {
  color: #fff;
  background: rgba(255,255,255,0.1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
}

/* Estado light (fora do hero): btn login vira outline escuro */
.header.is-light .nav-btn--login {
  background: transparent;
  color: var(--slate-700);
  border-color: var(--slate-300);
}
.header.is-light .nav-btn--login:hover {
  background: var(--slate-100);
  color: var(--slate-900);
  border-color: var(--slate-400);
}

/* Hamburger */
.menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  margin-left: auto;
}

.menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,0.8);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}

.menu-btn.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-btn.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   09. HERO SECTION
============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 68px;
  background: var(--slate-900) url('../images/back.png') center / cover no-repeat;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    105deg,
    rgba(3, 7, 18, 0.90) 35%,
    rgba(3, 7, 18, 0.55) 100%
  );
}

.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.20;
}

.hero__blob--1 {
  width: 600px;
  height: 600px;
  top: -150px;
  left: -100px;
  background: radial-gradient(circle, #1e40af, transparent 70%);
  animation: blobFloat1 22s ease-in-out infinite;
}

.hero__blob--2 {
  width: 500px;
  height: 500px;
  bottom: -100px;
  right: 5%;
  background: radial-gradient(circle, #0891b2, transparent 70%);
  animation: blobFloat2 28s ease-in-out infinite;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
  animation: gridDrift 28s linear infinite;
}

/* ---- Hero animation keyframes ---- */
@keyframes blobFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(50px, -35px) scale(1.08); }
  66%       { transform: translate(-25px, 45px) scale(0.95); }
}

@keyframes blobFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  40%       { transform: translate(-55px, -25px) scale(1.07); }
  70%       { transform: translate(30px, 35px) scale(0.93); }
}

@keyframes gridDrift {
  from { background-position: 0 0; }
  to   { background-position: 60px 60px; }
}

@keyframes heroSweep {
  0%   { left: -40%; }
  100% { left: 140%; }
}

/* Sweep de luz que atravessa o hero */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: -40%;
  width: 22%;
  height: 100%;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.04),
    transparent
  );
  transform: skewX(-18deg);
  pointer-events: none;
  z-index: 2;
  animation: heroSweep 16s ease-in-out infinite;
  animation-delay: 3s;
}

@media (prefers-reduced-motion: reduce) {
  .hero__blob--1,
  .hero__blob--2,
  .hero__grid,
  .hero::before { animation: none; }
}

.hero__container {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  padding-block: var(--space-3xl);
}

/* Hero Content */
.hero__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  border-radius: var(--radius-full);
  background: rgba(37, 99, 235, 0.2);
  color: var(--cyan-400);
  font-size: 0.8125rem;
  font-weight: 600;
  font-family: var(--font-display);
  border: 1px solid rgba(37, 99, 235, 0.4);
  width: fit-content;
  letter-spacing: 0.03em;
}

.badge-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan-400);
  box-shadow: 0 0 0 0 rgba(6, 182, 212, 0.4);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(6,182,212,0.4); }
  70% { box-shadow: 0 0 0 8px rgba(6,182,212,0); }
  100% { box-shadow: 0 0 0 0 rgba(6,182,212,0); }
}

.hero__title {
  color: #fff;
  text-wrap: balance;
}

.hero__desc {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 520px;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding-top: var(--space-sm);
}

.trust-avatars {
  display: flex;
}

.avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.625rem;
  font-weight: 700;
  color: #fff;
  border: 2px solid var(--slate-900);
  margin-left: -8px;
  font-family: var(--font-display);
}

.trust-avatars .avatar:first-child { margin-left: 0; }

.hero__trust p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
}

/* Hero Visual */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-badge-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-lg);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--slate-800);
  font-family: var(--font-display);
  z-index: 10;
  animation: floatY 4s ease-in-out infinite;
}

.hero-badge-float--1 {
  top: 20px;
  left: -20px;
  animation-delay: 0s;
}

.hero-badge-float--2 {
  bottom: 50px;
  right: -15px;
  animation-delay: 2s;
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* App Window Mockup */
.app-window {
  width: 440px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255,255,255,0.1);
  background: #fff;
}

.aw-chrome {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 1rem;
  background: #f1f3f5;
  border-bottom: 1px solid #e5e7eb;
}

.aw-dots {
  display: flex;
  gap: 5px;
}

.aw-dots i {
  display: block;
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.aw-url {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  background: #fff;
  border: 1px solid #e5e7eb;
  font-size: 0.6875rem;
  color: #6b7280;
  font-family: var(--font-body);
  flex: 1;
}

.aw-url svg { color: #6b7280; }

.aw-body {
  display: flex;
  height: 380px;
}

.aw-sidebar {
  width: 52px;
  background: var(--slate-900);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.875rem 0;
  gap: 0.5rem;
  flex-shrink: 0;
}

.aw-brand {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--blue-600);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 800;
  font-family: var(--font-display);
  margin-bottom: 0.5rem;
}

.aw-icons {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.aw-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  color: rgba(255,255,255,0.4);
  transition: var(--transition);
}

.aw-icon--on {
  background: rgba(37,99,235,0.3);
  color: #60a5fa;
}

.aw-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.aw-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.625rem 0.875rem;
  border-bottom: 1px solid var(--slate-100);
  gap: 0.5rem;
  flex-shrink: 0;
}

.aw-title {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--slate-800);
  font-family: var(--font-display);
}

.aw-date {
  display: block;
  font-size: 0.6875rem;
  color: var(--slate-400);
}

.aw-tags {
  display: flex;
  gap: 0.25rem;
  flex-wrap: wrap;
}

.aw-tag {
  padding: 0.1875rem 0.5rem;
  border-radius: var(--radius-full);
  font-size: 0.6875rem;
  font-weight: 600;
  font-family: var(--font-display);
}

.aw-cal {
  flex: 1;
  display: flex;
  overflow: hidden;
  padding: 0.5rem 0.5rem 0.5rem 0;
}

.aw-times {
  width: 38px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.aw-times span {
  flex: 1;
  font-size: 0.5625rem;
  color: var(--slate-400);
  padding-right: 0.375rem;
  text-align: right;
  line-height: 1;
  display: flex;
  align-items: flex-start;
  padding-top: 2px;
}

.aw-events {
  flex: 1;
  position: relative;
  border-left: 1px solid var(--slate-100);
  overflow: hidden;
}

.aw-ev {
  position: absolute;
  left: 4px;
  right: 4px;
  border-left: 3px solid;
  border-radius: 0 6px 6px 0;
  padding: 3px 6px;
  overflow: hidden;
}

.aw-ev b {
  display: block;
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--slate-800);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.aw-ev em {
  display: block;
  font-style: normal;
  font-size: 0.5625rem;
  color: var(--slate-500);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ============================================================
   10. STATS BAR
============================================================ */
.stats-bar {
  background: linear-gradient(135deg, var(--blue-700), var(--cyan-600));
  padding: var(--space-xl) 0;
}

.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.25rem;
}

.stat-item strong {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.375rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.stat-item span {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

/* ============================================================
   11. FEATURES GRID
============================================================ */
.features {
  background: var(--slate-50);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.feat-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  border: 1px solid var(--slate-200);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}

.feat-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-100, #dbeafe);
  transform: translateY(-4px);
}

.feat-icon {
  width: 52px;
  height: 52px;
  background: var(--icon-bg, var(--blue-50));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.feat-card h3 {
  margin-bottom: 0.5rem;
  color: var(--slate-900);
}

.feat-card p {
  font-size: 0.9375rem;
  color: var(--slate-500);
  line-height: 1.65;
}

/* ============================================================
   12. SHOWCASE SECTIONS
============================================================ */
.showcase {
  background: #fff;
}

.showcase--alt {
  background: var(--slate-50);
}

.showcase__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.showcase__wrap--rev {
  direction: rtl;
}

.showcase__wrap--rev > * {
  direction: ltr;
}

.showcase__text {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.showcase__text h2 { color: var(--slate-900); }

.showcase__text p {
  font-size: 1.0rem;
  color: var(--slate-500);
  line-height: 1.7;
}

/* Showcase Card — Agenda Week View */
.showcase-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--slate-200);
  transition: box-shadow var(--transition), transform 0.1s linear;
}

.sc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: var(--font-display);
}

.sc-actions {
  display: flex;
  gap: 5px;
}

.sc-actions i {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
}

.sc-body {
  background: #fff;
  padding: 1rem;
}

.sc-week {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.5rem;
}

.sc-day {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.sc-day--today .sc-day-label {
  background: var(--blue-600);
  color: #fff;
}

.sc-day-label {
  display: block;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.375rem;
  border-radius: var(--radius-sm);
  background: var(--slate-100);
  color: var(--slate-600);
  font-family: var(--font-display);
}

.sc-ev {
  padding: 0.375rem 0.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.6875rem;
  font-weight: 600;
  line-height: 1.3;
  font-family: var(--font-display);
}

.sc-ev small {
  font-weight: 500;
  opacity: 0.8;
}

.sc-ev--blue   { background:#dbeafe; color:#1e40af; }
.sc-ev--green  { background:#dcfce7; color:#166534; }
.sc-ev--violet { background:#ede9fe; color:#5b21b6; }
.sc-ev--orange { background:#fef3c7; color:#92400e; }

.sc-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-top: 0.875rem;
  padding-top: 0.875rem;
  border-top: 1px solid var(--slate-100);
}

.sc-legend span {
  display: flex;
  align-items: center;
  gap: 0.3125rem;
  font-size: 0.6875rem;
  color: var(--slate-500);
}

.sc-legend i {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

/* Financial Card */
.fin-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--slate-200);
  background: #fff;
}

.fin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 1.125rem;
  border-bottom: 1px solid var(--slate-100);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--slate-900);
  font-family: var(--font-display);
}

.fin-period {
  color: var(--slate-400);
  font-weight: 500;
  font-size: 0.8125rem;
}

.fin-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-bottom: 1px solid var(--slate-100);
}

.fin-metric {
  padding: 0.875rem;
  display: flex;
  flex-direction: column;
  gap: 0.1875rem;
  border-right: 1px solid var(--slate-100);
}

.fin-metric:last-child { border-right: none; }

.fin-label {
  font-size: 0.6875rem;
  color: var(--slate-400);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.fin-value {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--slate-900);
}

.fin-delta {
  font-size: 0.6875rem;
  font-weight: 600;
}

.fin-metric--up   .fin-delta { color: #16a34a; }
.fin-metric--down .fin-delta { color: #dc2626; }
.fin-metric--net  .fin-delta { color: #16a34a; }
.fin-metric--net  .fin-value { color: var(--blue-700); }

.fin-chart {
  padding: 0.875rem 1.125rem;
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 0.75rem;
  height: 80px;
  border-bottom: 1px solid var(--slate-100);
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
}

.bar-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  flex: 1;
}

.bar-group > div {
  width: 100%;
  border-radius: 3px 3px 0 0;
  min-height: 4px;
}

.bar--in  { background: var(--blue-500); }
.bar--out { background: #fca5a5; }

.bar-group span {
  font-size: 0.625rem;
  color: var(--slate-400);
  text-align: center;
  font-weight: 500;
}

.chart-legend {
  display: flex;
  gap: 1rem;
}

.chart-legend span {
  display: flex;
  align-items: center;
  gap: 0.3125rem;
  font-size: 0.6875rem;
  color: var(--slate-500);
}

.chart-legend i {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 2px;
}

/* ============================================================
   13. MODULES SECTION
============================================================ */
.modules {
  background: var(--slate-900);
}

.modules__groups {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.mod-group h4 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1rem;
}

.mod-group h4 svg {
  color: rgba(255,255,255,0.3);
}

.mod-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}

.mod-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4375rem;
  padding: 0.5rem 0.9375rem;
  border-radius: var(--radius-lg);
  background: var(--pill-bg, var(--blue-50));
  color: var(--pill-color, var(--blue-700));
  font-size: 0.875rem;
  font-weight: 600;
  font-family: var(--font-display);
  transition: opacity var(--transition), transform var(--transition);
}

.mod-pill:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

/* ============================================================
   14. SEGMENTS SECTION
============================================================ */
.segments {
  background: var(--slate-50);
}

.segments__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.seg-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  border: 1px solid var(--slate-200);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}

.seg-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--seg-color, var(--blue-600));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}

.seg-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.seg-card:hover::before {
  transform: scaleX(1);
}

.seg-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-lg);
  background: color-mix(in srgb, var(--seg-color) 12%, white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--seg-color);
}

.seg-card h3 {
  color: var(--slate-900);
  font-size: 1.0625rem;
}

.seg-card p {
  font-size: 0.9rem;
  color: var(--slate-500);
  line-height: 1.6;
  flex: 1;
}

.seg-badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius-full);
  font-size: 0.6875rem;
  font-weight: 600;
  margin-top: 0.25rem;
}

/* ============================================================
   15. PRICING SECTION
============================================================ */
.pricing__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.875rem;
  margin-bottom: var(--space-2xl);
}

.toggle-label {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--slate-400);
  font-family: var(--font-display);
  transition: color var(--transition);
  cursor: pointer;
}

.toggle-label--active { color: var(--slate-800); }

.toggle-switch {
  width: 46px;
  height: 26px;
  background: var(--slate-200);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background var(--transition);
  position: relative;
  flex-shrink: 0;
}

.toggle-switch.is-on { background: var(--blue-600); }

.toggle-knob {
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 3px;
  transition: transform var(--transition);
  box-shadow: var(--shadow-sm);
}

.toggle-switch.is-on .toggle-knob { transform: translateX(20px); }

.savings-badge {
  display: inline-block;
  padding: 0.125rem 0.375rem;
  background: #dcfce7;
  color: #166534;
  border-radius: var(--radius-full);
  font-size: 0.6875rem;
  font-weight: 700;
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

.price-card {
  background: #fff;
  border-radius: var(--radius-xl);
  border: 1.5px solid var(--slate-200);
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  transition: box-shadow var(--transition);
  position: relative;
}

.price-card:hover { box-shadow: var(--shadow-lg); }

.price-card--featured {
  border-color: var(--blue-600);
  box-shadow: 0 0 0 1px var(--blue-600), var(--shadow-lg);
}

.plan-badge-top {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.25rem 0.875rem;
  background: var(--blue-600);
  color: #fff;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  font-family: var(--font-display);
  white-space: nowrap;
}

.price-card__head {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.plan-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1875rem;
  color: var(--slate-900);
}

.plan-desc {
  font-size: 0.875rem;
  color: var(--slate-500);
  line-height: 1.55;
}

.plan-price {
  display: flex;
  align-items: flex-start;
  gap: 0.25rem;
  margin-top: 0.375rem;
}

.price-unit {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--slate-500);
  margin-top: 6px;
}

.price-value {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--slate-900);
  line-height: 1;
}

.price-period {
  font-size: 0.875rem;
  color: var(--slate-400);
  align-self: flex-end;
  padding-bottom: 4px;
}

.price-note {
  font-size: 0.8125rem;
  color: var(--slate-400);
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 0.5625rem;
  flex: 1;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9rem;
  color: var(--slate-600);
}

.plan-features li::before {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  background: #dcfce7;
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 5l2 2 4-4' stroke='%2316a34a' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.pricing__note {
  text-align: center;
  margin-top: var(--space-xl);
  color: var(--slate-400);
  font-size: 0.875rem;
}

.pricing__fallback {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
  padding: var(--space-3xl) 0;
  color: var(--slate-500);
  font-size: 1.0625rem;
}

/* ---- Plano enterprise: card dark horizontal (4º plano+) ---- */
.price-card--wide {
  grid-column: 1 / -1;
  background: linear-gradient(130deg, #0f172a 0%, #1e3a8a 52%, #0c4a6e 100%);
  border-color: transparent;
  display: grid;
  grid-template-columns: 240px 1fr auto;
  gap: 0 2.5rem;
  align-items: center;
  overflow: hidden;
}

.plan-badge-enterprise {
  display: none; /* usado apenas via PHP como marcador — o visual é feito pelo CSS */
}

.price-card--wide .plan-name {
  color: #fff;
  font-size: 1.375rem;
}

.price-card--wide .plan-desc   { color: rgba(255,255,255,0.60); }
.price-card--wide .plan-price  { margin-top: 0.75rem; }
.price-card--wide .price-unit,
.price-card--wide .price-period { color: rgba(255,255,255,0.65); }
.price-card--wide .price-value  { color: #fff; font-size: 2.5rem; }
.price-card--wide .price-note   { color: rgba(255,255,255,0.35); }

.price-card--wide .plan-features {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
  align-content: center;
}

.price-card--wide .plan-features li {
  flex: 0 0 calc(50% - 1rem);
  color: rgba(255,255,255,0.82);
  font-size: 0.875rem;
}

.price-card--wide .plan-features li::before {
  background-color: rgba(22,163,74,0.25);
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 5l2 2 4-4' stroke='%2316a34a' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.price-card--wide > .btn {
  background: #fff;
  color: #0f172a;
  border-color: transparent;
  white-space: nowrap;
  min-width: 164px;
  text-align: center;
  justify-content: center;
  font-weight: 700;
  padding: 0.875rem 1.75rem;
}

.price-card--wide > .btn:hover { background: #f1f5f9; }

/* ============================================================
   16. TESTIMONIALS
============================================================ */
.testimonials {
  background: var(--slate-50);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.testi-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  border: 1.5px solid var(--slate-200);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  transition: box-shadow var(--transition);
}

.testi-card:hover { box-shadow: var(--shadow-md); }

.testi-card--highlight {
  border-color: var(--blue-200);
  background: linear-gradient(135deg, #fafcff, #f0f7ff);
}

.testi-stars {
  color: #f59e0b;
  font-size: 0.9375rem;
  letter-spacing: 2px;
}

.testi-card p {
  font-size: 0.9375rem;
  color: var(--slate-600);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: var(--space-sm);
  border-top: 1px solid var(--slate-100);
}

.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: var(--font-display);
  flex-shrink: 0;
}

.testi-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--slate-900);
  font-family: var(--font-display);
}

.testi-author span {
  display: block;
  font-size: 0.8125rem;
  color: var(--slate-400);
}

/* ============================================================
   17. FAQ
============================================================ */
.faq {
  background: #fff;
}

.faq__container {
  max-width: 780px;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid var(--slate-200);
}

.faq-item:last-child { border-bottom: none; }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.125rem 1.375rem;
  text-align: left;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--slate-800);
  transition: background var(--transition), color var(--transition);
}

.faq-question:hover { background: var(--slate-50); }
.faq-question[aria-expanded="true"] {
  color: var(--blue-700);
  background: var(--blue-50);
}

.faq-icon {
  flex-shrink: 0;
  color: var(--slate-400);
  transition: transform var(--transition);
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
  color: var(--blue-600);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 300ms var(--ease-out);
}

.faq-answer.is-open { grid-template-rows: 1fr; }

.faq-answer > div {
  overflow: hidden;
}

.faq-answer p {
  padding: 0 1.375rem 1.125rem;
  font-size: 0.9375rem;
  color: var(--slate-500);
  line-height: 1.7;
}

/* ============================================================
   18. CTA FINAL
============================================================ */
.cta-final {
  background: linear-gradient(135deg, var(--blue-800), var(--cyan-600));
  padding: var(--space-4xl) 0;
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
}

.cta-final__container {
  position: relative;
}

.cta-final__content {
  text-align: center;
  max-width: 580px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.cta-final__content h2 {
  color: #fff;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
}

.cta-final__content p {
  color: rgba(255,255,255,0.75);
  font-size: 1.0625rem;
}

.cta-final__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* ============================================================
   19. FOOTER
============================================================ */
.footer {
  background: var(--slate-900);
}

.footer__container {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--space-3xl);
  padding-block: var(--space-3xl);
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.footer__brand .brand { color: #fff; }

.footer__brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.65;
}

.footer__group {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.25rem;
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.8125rem !important;
  color: rgba(255,255,255,0.3) !important;
  line-height: 1 !important;
}

.footer__group-brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.01em;
  transition: color var(--transition);
}

.footer__group-brand:hover { color: #fff; }

.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.footer-col h5 {
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--font-display);
  margin-bottom: var(--space-md);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-col li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}

.footer-col li a:hover { color: #fff; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-block: var(--space-md);
}

.footer__bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer__bottom p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.35);
}

.footer__lgpd {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

/* ============================================================
   20. ANIMAÇÕES — Scroll Reveal
============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ============================================================
   21. RESPONSIVO
============================================================ */

/* Tablet — 1024px */
@media (max-width: 1024px) {
  .hero__container {
    grid-template-columns: 1fr;
    text-align: center;
    padding-block: var(--space-3xl) var(--space-2xl);
  }

  .hero__title { font-size: 2.25rem; }
  .hero__desc  { max-width: 100%; }
  .hero__cta   { justify-content: center; }
  .hero__trust { justify-content: center; }
  .hero__visual { display: none; }

  .features__grid     { grid-template-columns: repeat(2, 1fr); }
  .showcase__wrap     { grid-template-columns: 1fr; gap: 2.5rem; }
  .showcase__wrap--rev { direction: ltr; }
  .segments__grid     { grid-template-columns: repeat(2, 1fr); }
  .pricing__grid      { grid-template-columns: repeat(2, 1fr); }
  .price-card--wide   {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  .price-card--wide .plan-features     { flex-direction: column; }
  .price-card--wide .plan-features li  { flex: 1 1 auto; }
  .price-card--wide > .btn             { width: 100%; }
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }

  .footer__container {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
}

/* Mobile — 768px */
@media (max-width: 768px) {
  .section { padding-block: var(--space-3xl); }

  /* Header */
  .nav-actions { display: none; }
  .menu-btn    { display: flex; }

  .nav-list {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--slate-900);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    padding: 2rem;
    z-index: 99;
  }

  .nav-list.is-open  { display: flex; }

  .nav-link {
    font-size: 1.25rem;
    padding: 0.75rem 1.5rem;
    width: 100%;
    text-align: center;
    color: rgba(255,255,255,0.8);
  }

  .nav-list__cta {
    margin-top: 1rem;
    padding: 0 1.5rem;
    width: 280px;
  }

  /* hero */
  .hero__title  { font-size: 1.875rem; }
  .hero__badge  { font-size: 0.75rem; align-self: center; }

  /* Stats */
  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

  /* Features  */
  .features__grid  { grid-template-columns: 1fr; }

  /* Showcase */
  .showcase__wrap  { grid-template-columns: 1fr; gap: 2rem; }
  .showcase-card   { display: none; }
  .fin-card        { display: none; }

  /* Segments */
  .segments__grid  { grid-template-columns: 1fr; }

  /* Pricing */
  .pricing__grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-inline: auto;
  }
  .price-card--wide {
    max-width: 100%;
  }

  /* Testimonials */
  .testimonials__grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer__links { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile pequeno — 480px */
@media (max-width: 480px) {
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }

  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .pricing__grid   { max-width: 100%; }
  .footer__links   { grid-template-columns: 1fr; }

  .cta-final__actions { flex-direction: column; align-items: center; }
  .btn--lg { width: 100%; justify-content: center; }
}

/* ============================================================
   22. PAGINAS INTERNAS (body.page-inner)
============================================================ */

/* Header fixo claro em paginas sem .hero */
body.page-inner .header {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--slate-200);
  box-shadow: 0 1px 8px rgba(0,0,0,.06);
}
body.page-inner .header .nav-link {
  color: var(--slate-700);
}
body.page-inner .header .nav-link:hover {
  background: var(--slate-100);
  color: var(--slate-900);
}
body.page-inner .header .brand span {
  color: var(--slate-900);
}
body.page-inner .header .menu-btn span {
  background: var(--slate-700);
}

/* ============================================================
   Inner Hero Banner
============================================================ */
.inner-hero {
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-700) 60%, var(--cyan-600) 100%);
  padding: calc(var(--space-4xl) + 88px) 0 var(--space-4xl);
  position: relative;
  overflow: hidden;
}
.inner-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
  pointer-events: none;
}
.inner-hero .container { position: relative; z-index: 1; }
.inner-hero__content { max-width: 700px; color: #fff; }
.inner-hero__content h1 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  margin: .5rem 0 1rem;
  line-height: 1.15;
  color: #fff;
}
.inner-hero__content p {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.8);
  max-width: 560px;
  line-height: 1.7;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .375rem;
  font-size: .8125rem;
  color: rgba(255,255,255,.65);
  margin-bottom: .25rem;
}
.breadcrumb a {
  color: rgba(255,255,255,.8);
  text-decoration: none;
  transition: color var(--transition);
}
.breadcrumb a:hover { color: #fff; }
.breadcrumb svg { opacity: .5; }

/* ============================================================
   Page Content wrapper
============================================================ */
.page-content { background: #fff; }
.page-content--alt { background: var(--slate-50); }

/* ============================================================
   Prose - conteudo editorial (privacidade, termos)
============================================================ */
.prose {
  max-width: 760px;
  margin: 0 auto;
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--slate-600);
}
.prose h2 {
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--slate-900);
  margin: 2.5rem 0 .6rem;
  padding-bottom: .4rem;
  border-bottom: 2px solid var(--blue-100);
}
.prose h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--slate-800);
  margin: 1.5rem 0 .4rem;
}
.prose p { margin: 0 0 1rem; }
.prose ul {
  padding-left: 1.25rem;
  margin: 0 0 1rem;
  display: flex;
  flex-direction: column;
  gap: .375rem;
}
.prose li { color: var(--slate-600); }
.prose a {
  color: var(--blue-600);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.prose a:hover { color: var(--blue-700); }
.prose strong { color: var(--slate-800); }

/* Info box (resumo no topo) */
.info-box {
  background: var(--blue-50);
  border-left: 4px solid var(--blue-500);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1rem 1.25rem;
  margin-bottom: 2rem;
  font-size: .9rem;
  color: var(--slate-700);
  line-height: 1.65;
}
.info-box strong { color: var(--blue-700); }

/* ============================================================
   Pagina Sobre - layout
============================================================ */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.about-story__text { display: flex; flex-direction: column; gap: 1rem; }
.about-story__text h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin: .25rem 0 0; }
.about-story__text p { color: var(--slate-600); line-height: 1.75; font-size: .975rem; }

.about-numbers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--slate-50);
  border-radius: var(--radius-xl);
  border: 1px solid var(--slate-200);
}
.about-num {
  display: flex;
  flex-direction: column;
  gap: .25rem;
}
.about-num strong {
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--blue-700);
  line-height: 1;
  font-family: var(--font-display);
}
.about-num span { font-size: .8125rem; color: var(--slate-500); line-height: 1.4; }

/* Valores */
.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.value-card {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 1.75rem 1.5rem;
  transition: box-shadow var(--transition), transform var(--transition);
}
.value-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.value-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.value-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--slate-900);
  margin: 0 0 .5rem;
}
.value-card p { font-size: .875rem; color: var(--slate-500); line-height: 1.65; margin: 0; }

/* ============================================================
   Pagina Contato - layout
============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-form-wrap h2 { font-size: 1.5rem; font-weight: 700; color: var(--slate-900); margin: 0 0 .25rem; }
.contact-form-wrap .subtitle { color: var(--slate-500); margin-bottom: 1.75rem; font-size: .9375rem; }

/* Form elements */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .375rem; margin-bottom: 1rem; }
.form-label {
  font-size: .8125rem;
  font-weight: 600;
  color: var(--slate-700);
  letter-spacing: .01em;
}
.form-label span { color: var(--blue-600); }
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: .6875rem .875rem;
  font-size: .9375rem;
  font-family: var(--font-body);
  color: var(--slate-900);
  background: #fff;
  border: 1.5px solid var(--slate-300);
  border-radius: var(--radius-md);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  box-sizing: border-box;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, .15);
}
.form-input.is-invalid,
.form-textarea.is-invalid {
  border-color: #ef4444;
}
.form-textarea {
  min-height: 140px;
  resize: vertical;
}
.form-select { cursor: pointer; }
.field-error { font-size: .8rem; color: #ef4444; }

/* Success alert */
.form-alert {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: .875rem 1rem;
  border-radius: var(--radius-md);
  margin-bottom: 1.25rem;
  font-size: .9rem;
  line-height: 1.55;
}
.form-alert--success {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #166534;
}

/* Contact info cards */
.contact-info-cards { display: flex; flex-direction: column; gap: 1rem; margin-top: 3.5rem; }
.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: .875rem;
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 1.125rem 1.25rem;
}
.contact-info-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.contact-info-card h4 { font-size: .875rem; font-weight: 700; color: var(--slate-900); margin: 0 0 .2rem; }
.contact-info-card a { font-size: .875rem; color: var(--blue-600); text-decoration: none; }
.contact-info-card a:hover { text-decoration: underline; }
.contact-info-card p { font-size: .8125rem; color: var(--slate-500); margin: 0; line-height: 1.5; }

/* ============================================================
   Responsivo - paginas internas
============================================================ */
@media (max-width: 900px) {
  .about-story { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-values { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info-cards { margin-top: 0; }
}

@media (max-width: 600px) {
  .inner-hero { padding: calc(var(--space-3xl) + 72px) 0 var(--space-3xl); }
  .about-numbers { grid-template-columns: 1fr 1fr; gap: 1rem; padding: 1.25rem; }
  .about-num strong { font-size: 1.5rem; }
  .about-values { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .prose h2 { font-size: 1.0625rem; }
}
