/* ============================================================
   PUBLI.PT — STYLESHEET v2
   by Ruavirtual.com
   ============================================================ */

/* === 1. VARIÁVEIS CSS — CORES, TIPOGRAFIA, ESPAÇAMENTOS === */
:root {
  /* Cores principais — #FC3578 é a cor de marca Publi */
  --color-brand:        #FC3578;
  --color-brand-dark:   #d41f5e;
  --color-brand-light:  #ff6fa0;
  --color-brand-subtle: #fff0f5;

  /* Neutros */
  --color-dark:         #1a1a2e;
  --color-text:         #2d2d3a;
  --color-text-muted:   #6b6b80;
  --color-text-light:   #9898b0;
  --color-bg:           #ffffff;
  --color-bg-alt:       #f8f8fc;
  --color-bg-card:      #ffffff;
  --color-border:       #e8e8f0;

  /* Gradientes */
  --gradient-brand: linear-gradient(135deg, #FC3578 0%, #ff6fa0 100%);
  --gradient-dark:  linear-gradient(135deg, #1a1a2e 0%, #2d1f3d 100%);

  /* Tipografia */
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  /* Espaçamentos */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  /* Layout */
  --max-width:   1200px;
  --nav-height:  72px;
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-full: 9999px;

  /* Sombras */
  --shadow-sm:    0 1px 3px rgba(26,26,46,0.06);
  --shadow-md:    0 4px 16px rgba(26,26,46,0.08);
  --shadow-lg:    0 12px 40px rgba(26,26,46,0.12);
  --shadow-brand: 0 8px 32px rgba(252,53,120,0.25);
  --shadow-card:  0 4px 20px rgba(252,53,120,0.08);

  /* Transições */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
}

/* === 2. RESET E BASE === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; }

:focus-visible {
  outline: 2px solid var(--color-brand);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* === 3. TIPOGRAFIA === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; }

p { max-width: 65ch; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-brand);
  background: var(--color-brand-subtle);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-sm);
  font-family: var(--font-body);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--space-xl);
}

.section-header p {
  margin: 1rem auto 0;
  color: var(--color-text-muted);
  font-size: 1.05rem;
  max-width: 55ch;
}

/* === 4. COMPONENTES — BOTÕES, CARDS, BADGES === */

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  white-space: nowrap;
  border: 2px solid transparent;
}

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

.btn-primary:hover {
  background: var(--color-brand-dark);
  transform: scale(1.02) translateY(-1px);
  box-shadow: 0 12px 40px rgba(252,53,120,0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--color-brand);
  border-color: var(--color-brand);
}

.btn-secondary:hover {
  background: var(--color-brand-subtle);
}

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

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

.btn-ghost {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: rgba(255,255,255,0.3);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.22);
}

.btn-white {
  background: #fff;
  color: var(--color-brand-dark);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.18);
}

.btn-lg {
  font-size: 1.05rem;
  padding: 1rem 2rem;
}

/* Cards */
.card {
  background: var(--color-bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  padding: var(--space-md);
  transition: all var(--transition-base);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-brand);
  border-color: rgba(252,53,120,0.2);
}

/* Badge */
.badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  background: var(--color-brand-subtle);
  color: var(--color-brand);
  font-family: var(--font-body);
}

.badge-soon {
  background: linear-gradient(135deg, #FC3578, #ff6fa0);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  display: inline-block;
}

/* Layout */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

section { padding: var(--space-2xl) 0; }

/* === 5. NAVBAR === */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition-base), background var(--transition-base);
}

.navbar.scrolled {
  border-bottom-color: var(--color-border);
}

.navbar .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.navbar-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 2px;
  text-decoration: none;
}

.navbar-logo img {
  height: 32px;
  width: auto;
}

/* CSS text-based wordmark logo */
.logo-wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.45rem;
  color: var(--color-brand);
  letter-spacing: -0.05em;
  line-height: 1;
}

.logo-dot {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--color-brand);
  line-height: 1;
}

/* Footer logo overrides (on dark bg) */
.footer-logo-link .logo-wordmark,
.footer-logo-link .logo-dot {
  color: #ffffff;
}

/* Hide white logo in light mode (legacy) */
.navbar-logo .logo-white { display: none; }
.navbar-logo .logo-color { display: block; }

.navbar-links {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.navbar-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
  position: relative;
  padding: 0.25rem 0;
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--color-brand);
  border-radius: 2px;
  transition: width var(--transition-base);
}

.navbar-links a:hover { color: var(--color-text); }
.navbar-links a:hover::after { width: 100%; }

.navbar-actions {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.theme-toggle {
  width: 38px; height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--color-text-muted);
  transition: all var(--transition-fast);
}

.theme-toggle:hover {
  color: var(--color-text);
  background: var(--color-bg-alt);
}

.theme-toggle .icon-moon { display: block; }
.theme-toggle .icon-sun  { display: none; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 38px; height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
}

.hamburger:hover { background: var(--color-bg-alt); }

.hamburger span {
  display: block;
  width: 20px; height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.navbar-mobile {
  display: none;
  position: fixed;
  top: var(--nav-height); left: 0; right: 0;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-md);
  z-index: 99;
  flex-direction: column;
  gap: var(--space-xs);
  transform: translateY(-8px);
  opacity: 0;
  transition: all var(--transition-base);
  pointer-events: none;
}

.navbar-mobile.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.navbar-mobile a {
  font-size: 1.05rem;
  font-weight: 500;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
}

.navbar-mobile .btn {
  margin-top: var(--space-xs);
  justify-content: center;
}

/* === 6. HERO === */
.hero {
  padding-top: calc(var(--nav-height) + var(--space-2xl));
  padding-bottom: var(--space-2xl);
  background: var(--color-bg);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%; right: -10%;
  width: 700px; height: 700px;
  background: radial-gradient(ellipse, rgba(252,53,120,0.08) 0%, transparent 65%);
  pointer-events: none;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.hero-content { position: relative; z-index: 1; }

.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-brand);
  background: var(--color-brand-subtle);
  border: 1px solid rgba(252,53,120,0.2);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
  animation: fadeInDown 0.6s ease both;
}

.hero h1 {
  margin-bottom: var(--space-md);
  animation: fadeInUp 0.7s 0.1s ease both;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
}

.hero h1 .brand-word {
  color: var(--color-brand);
  position: relative;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--color-text-muted);
  max-width: 50ch;
  margin-bottom: var(--space-lg);
  animation: fadeInUp 0.7s 0.2s ease both;
}

.hero-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-bottom: var(--space-sm);
  animation: fadeInUp 0.7s 0.3s ease both;
}

.hero-micro {
  font-size: 0.8rem;
  color: var(--color-text-light);
  animation: fadeInUp 0.7s 0.35s ease both;
}

.hero-visual {
  position: relative;
  animation: fadeInUp 0.9s 0.4s ease both;
}

.hero-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.hero-image-wrap img,
.hero-device-svg {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 32px 80px rgba(26,26,46,0.2), 0 0 0 1px rgba(252,53,120,0.1);
}

/* Floating dashboard card */
.hero-dashboard-float {
  position: absolute;
  bottom: -20px;
  left: -30px;
  width: 200px;
  background: var(--color-bg-card);
  border-radius: var(--radius-md);
  padding: var(--space-sm);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
  animation: float 4s ease-in-out infinite;
}

.hero-dashboard-float img,
.hero-dashboard-float svg {
  width: 100%;
  border-radius: var(--radius-sm);
}

/* === 6b. INSTITUCIONAL === */
.institucional {
  padding: var(--space-md) 0;
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.institucional-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.institucional-inner p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin: 0 0 0.5rem;
}

.institucional-inner address {
  font-style: normal;
  font-size: 0.83rem;
  color: var(--color-text-muted);
  opacity: 0.8;
}

.institucional-inner address a {
  color: var(--color-brand);
  font-weight: 600;
  text-decoration: none;
}
.institucional-inner address a:hover { text-decoration: underline; }

/* === 7. SOCIAL PROOF BAR === */
.social-proof {
  padding: var(--space-lg) 0;
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.social-proof .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  text-align: center;
}

.social-proof-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-muted);
  letter-spacing: 0.02em;
}

.social-proof-clients {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.client-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.35rem 0.85rem;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  color: var(--color-text-muted);
  white-space: nowrap;
}

.client-tag::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--color-brand);
  flex-shrink: 0;
}

.social-proof-ruavirtual {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-brand);
  background: var(--color-brand-subtle);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(252,53,120,0.2);
}

/* === 8. COMO FUNCIONA === */
.how-it-works { background: var(--color-bg); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  position: relative;
}

/* Connector line */
.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--color-brand), var(--color-brand-light), var(--color-border));
  z-index: 0;
}

.step-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  text-align: center;
  position: relative;
  z-index: 1;
  transition: all var(--transition-base);
}

.step-card:hover {
  border-color: rgba(252,53,120,0.3);
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}

.step-number-circle {
  width: 48px; height: 48px;
  background: var(--color-brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-sm);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-brand);
}

.step-icon {
  color: var(--color-brand);
  margin: var(--space-xs) auto;
  display: flex;
  justify-content: center;
}

.step-card h3 { font-size: 1rem; margin-bottom: 0.4rem; }
.step-card p { font-size: 0.875rem; color: var(--color-text-muted); max-width: none; }

/* === 9. FUNCIONALIDADES === */
.features { background: var(--color-bg-alt); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--space-md);
}

.feature-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-slow);
}

.feature-card:hover::before { transform: scaleX(1); }

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-brand);
  border-color: rgba(252,53,120,0.2);
}

.feature-icon {
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-brand-subtle);
  border-radius: var(--radius-sm);
  color: var(--color-brand);
  margin-bottom: var(--space-sm);
  transition: all var(--transition-base);
}

.feature-card:hover .feature-icon {
  background: var(--color-brand);
  color: #fff;
}

.feature-card h3 { font-size: 1rem; margin-bottom: 0.4rem; }
.feature-card p { font-size: 0.875rem; color: var(--color-text-muted); max-width: none; }

/* === 10. SHOWCASE DO PRODUTO === */
.showcase { background: var(--color-bg); }

.showcase .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.showcase-images {
  position: relative;
}

.showcase-main-img {
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 64px rgba(26,26,46,0.15);
  width: 100%;
}

.showcase-dashboard-overlay {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 55%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--color-bg-card);
}

.showcase-content .section-label { margin-bottom: var(--space-sm); }
.showcase-content h2 { margin-bottom: var(--space-sm); }
.showcase-content p { color: var(--color-text-muted); margin-bottom: var(--space-md); }

.showcase-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.showcase-stat {
  text-align: center;
  padding: var(--space-sm);
  background: var(--color-bg-alt);
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
}

.showcase-stat-number {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-brand);
  display: block;
  line-height: 1;
}

.showcase-stat-label {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  margin-top: 0.2rem;
}

/* === 11. SETORES (TABS) === */
.sectors { background: var(--color-bg-alt); }

.tabs-nav {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: var(--space-lg);
  border-bottom: 2px solid var(--color-border);
  padding-bottom: 0;
}

.tab-btn {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-muted);
  padding: 0.65rem 1rem;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.tab-btn:hover { color: var(--color-text); }
.tab-btn.active { color: var(--color-brand); border-bottom-color: var(--color-brand); }

.tab-panel { display: none; }
.tab-panel.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.tab-content h3 { font-size: 1.4rem; margin-bottom: 0.75rem; }
.tab-content p { color: var(--color-text-muted); margin-bottom: var(--space-md); max-width: none; }

.tab-features {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.tab-feature {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.tab-feature::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--color-brand);
  flex-shrink: 0;
}

.tab-visual {
  background: var(--color-dark);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--color-border);
}

.tab-visual-label {
  position: absolute;
  bottom: var(--space-sm);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.6);
  color: rgba(255,255,255,0.8);
  border-radius: var(--radius-full);
  padding: 0.3rem 0.9rem;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
  backdrop-filter: blur(8px);
}

/* === 12. LEADS EM BREVE === */
.leads-soon {
  background: var(--gradient-dark);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.leads-soon::before {
  content: '';
  position: absolute;
  top: -50%; left: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(ellipse, rgba(252,53,120,0.2) 0%, transparent 65%);
  pointer-events: none;
}

.leads-soon::after {
  content: '';
  position: absolute;
  bottom: -40%; right: -15%;
  width: 500px; height: 500px;
  background: radial-gradient(ellipse, rgba(252,53,120,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.leads-soon .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

.leads-soon-content h2 { color: #fff; margin-bottom: var(--space-sm); }
.leads-soon-content > p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  margin-bottom: var(--space-md);
  max-width: none;
}

.leads-soon-detail {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  margin-bottom: var(--space-lg);
  max-width: 48ch;
}

.leads-soon-form {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.leads-soon-form input {
  flex: 1;
  min-width: 220px;
  padding: 0.75rem 1.25rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-full);
  color: #fff;
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition-fast);
}

.leads-soon-form input::placeholder { color: rgba(255,255,255,0.45); }
.leads-soon-form input:focus { border-color: var(--color-brand); }

.leads-soon-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.leads-teaser-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  max-width: 340px;
  width: 100%;
  backdrop-filter: blur(12px);
}

.leads-teaser-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.leads-teaser-pulse {
  width: 10px; height: 10px;
  background: var(--color-brand);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.leads-teaser-title {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
}

.leads-teaser-coming {
  text-align: center;
  padding: var(--space-md) 0;
}

.leads-teaser-icon {
  font-size: 3rem;
  margin-bottom: var(--space-sm);
}

.leads-teaser-text {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  text-align: center;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(252,53,120,0.6); }
  50%       { box-shadow: 0 0 0 8px rgba(252,53,120,0); }
}

/* === 13. PREÇOS === */
.pricing { background: var(--color-bg); }

.pricing-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.75rem var(--space-md);
  max-width: 740px;
  margin: var(--space-lg) auto var(--space-xl);
}

.pricing-help {
  text-align: center;
  width: 100%;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin: 0 auto var(--space-xl);
}
.pricing-help a {
  color: var(--color-brand);
  font-weight: 600;
  text-decoration: none;
}
.pricing-help a:hover { text-decoration: underline; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-sm);
  align-items: start;
}

.pricing-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  position: relative;
  transition: all var(--transition-base);
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.pricing-card.featured {
  border-color: var(--color-brand);
  box-shadow: 0 0 0 1px var(--color-brand), var(--shadow-brand);
}

.pricing-card.best {
  border-color: var(--color-dark);
  box-shadow: 0 0 0 1px var(--color-dark), var(--shadow-md);
}

.pricing-card-badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.85rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.pricing-card.featured .pricing-card-badge {
  background: var(--color-brand);
  color: #fff;
}

.pricing-card.best .pricing-card-badge {
  background: var(--color-dark);
  color: #fff;
}

.pricing-plan-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 0.2rem;
}

.pricing-plan-what {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
  min-height: 3em;
  max-width: none;
}

.pricing-amount {
  padding: var(--space-sm) 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: var(--space-sm);
}

.pricing-price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-text);
  line-height: 1;
}

.pricing-price sup {
  font-size: 1rem;
  font-weight: 700;
  vertical-align: super;
}

.pricing-price .period {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--color-text-muted);
}

.pricing-iva {
  font-size: 0.72rem;
  color: var(--color-text-light);
  margin-top: 0.2rem;
}

.pricing-features-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: var(--space-md);
  font-size: 0.82rem;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: var(--color-text);
}

.pricing-feature .check {
  color: var(--color-brand);
  flex-shrink: 0;
  margin-top: 1px;
}

/* === 14. TESTEMUNHOS === */
.testimonials { background: var(--color-bg-alt); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.testimonial-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  transition: all var(--transition-base);
}

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

.testimonial-stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: var(--space-sm);
  color: #f59e0b;
}

.testimonial-quote {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--color-text-muted);
  font-style: italic;
  margin-bottom: var(--space-md);
  max-width: none;
}

.testimonial-placeholder {
  font-size: 0.8rem;
  color: var(--color-text-light);
  border: 1.5px dashed var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.75rem;
  font-style: italic;
  max-width: none;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gradient-brand);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: #fff;
  font-size: 1rem;
}

.testimonial-name { font-weight: 700; font-size: 0.875rem; }
.testimonial-role { font-size: 0.78rem; color: var(--color-text-muted); }

/* === 15. FAQ === */
.faq { background: var(--color-bg); }

.faq-list { max-width: 760px; margin: 0 auto; }

.faq-item { border-bottom: 1px solid var(--color-border); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-align: left;
  padding: 1.25rem 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-text);
  background: none;
  border: none;
  cursor: pointer;
  gap: var(--space-sm);
  transition: color var(--transition-fast);
}

.faq-question:hover { color: var(--color-brand); }

.faq-chevron {
  flex-shrink: 0;
  width: 20px; height: 20px;
  color: var(--color-text-muted);
  transition: transform var(--transition-base);
}

.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-item.open .faq-question { color: var(--color-brand); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.faq-answer-inner {
  padding: 0 0 1.25rem;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
  max-width: none;
}

/* === 16. CTA FINAL + CONTACT FORM === */
.cta-final {
  background: var(--gradient-brand);
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(255,255,255,0.1) 0%, transparent 60%);
}

.cta-final .container { position: relative; z-index: 1; }

/* Contact layout: 2 columns */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-xl);
  align-items: start;
  text-align: left;
}

.contact-intro h2 {
  color: #fff;
  max-width: none;
  margin: 0 0 var(--space-sm);
}

.contact-intro > p {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  max-width: 40ch;
  margin-bottom: var(--space-md);
}

.contact-benefits {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  list-style: none;
  padding: 0;
}

.contact-benefits li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
  max-width: none;
}

.contact-benefits li svg {
  flex-shrink: 0;
  color: rgba(255,255,255,0.9);
  display: inline;
}

/* Form card */
.contact-form-wrap {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.01em;
}

.form-group label span { color: rgba(255,255,255,0.6); }

.form-group input,
.form-group select {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-sm);
  padding: 0.7rem 0.9rem;
  font-size: 0.9rem;
  color: #fff;
  transition: border-color var(--transition-fast), background var(--transition-fast);
  width: 100%;
}

.form-group input::placeholder { color: rgba(255,255,255,0.45); }
.form-group select option { color: #1a1a2e; background: #fff; }

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.22);
}

.contact-submit {
  width: 100%;
  justify-content: center;
  margin-top: 0.25rem;
}

.contact-privacy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  text-align: center;
  margin: 0;
  max-width: none;
}

.contact-privacy a { color: rgba(255,255,255,0.75); text-decoration: underline; }
.contact-privacy a:hover { color: #fff; }

/* Success state */
.contact-success {
  text-align: center;
  padding: var(--space-lg) 0;
  color: #fff;
}

.contact-success svg {
  display: block;
  margin: 0 auto var(--space-sm);
  color: rgba(255,255,255,0.9);
  height: 48px;
  width: 48px;
}

.contact-success h3 {
  color: #fff;
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
}

.contact-success p {
  color: rgba(255,255,255,0.8);
  margin: 0 auto;
  max-width: 36ch;
}

/* Error state */
.contact-error {
  margin-top: var(--space-sm);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
}
.contact-error p {
  color: rgba(255,255,255,0.9);
  font-size: 0.875rem;
  margin: 0;
}
.contact-error a { color: #fff; font-weight: 600; }

/* Campo inválido */
.field-error {
  outline: 2px solid #ff9eb5 !important;
  outline-offset: 1px;
}

/* Legacy CTA styles (kept for compatibility) */
.cta-final h2 { color: #fff; max-width: none; margin: 0 0 var(--space-sm); }
.cta-final p { color: rgba(255,255,255,0.85); font-size: 1rem; max-width: none; }

.cta-final-actions {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-sm);
}

.cta-final-note { font-size: 0.82rem; color: rgba(255,255,255,0.65); }

/* === 17. FOOTER === */
.footer {
  background: var(--color-dark);
  color: rgba(255,255,255,0.7);
  padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer-brand p {
  font-size: 0.875rem;
  margin-top: var(--space-sm);
  max-width: 28ch;
  line-height: 1.65;
}

.footer-ruavirtual {
  margin-top: var(--space-sm);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

.footer-ruavirtual a {
  color: var(--color-brand-light);
  font-weight: 600;
  transition: color var(--transition-fast);
}

.footer-ruavirtual a:hover { color: var(--color-brand); }

.footer-address {
  margin-top: var(--space-sm);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  font-style: normal;
  line-height: 1.8;
}
.footer-address a {
  color: rgba(255,255,255,0.5);
  transition: color var(--transition-fast);
}
.footer-address a:hover { color: var(--color-brand-light); }

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: var(--space-md);
}

.footer-social a {
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,0.6);
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: var(--color-brand);
  color: #fff;
}

.footer-col h4 {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-col a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition-fast);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-sm);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.footer-bottom-links {
  display: flex;
  gap: var(--space-md);
}

.footer-bottom-links a {
  color: rgba(255,255,255,0.35);
  transition: color var(--transition-fast);
}

.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* === 18. BANNER DE COOKIES === */
.cookie-banner {
  position: fixed;
  bottom: var(--space-md);
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  width: calc(100% - var(--space-lg));
  max-width: 860px;
  background: var(--color-dark);
  color: #fff;
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  z-index: 1000;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
  opacity: 0;
  transition: all var(--transition-slow);
  pointer-events: none;
}

.cookie-banner.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
}

.cookie-text {
  flex: 1;
  min-width: 200px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
  max-width: none;
}

.cookie-text a { color: var(--color-brand-light); text-decoration: underline; }

.cookie-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.cookie-btn {
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-fast);
  font-family: var(--font-body);
}

.cookie-btn-accept { background: var(--color-brand); color: #fff; border: none; }
.cookie-btn-accept:hover { background: var(--color-brand-dark); }
.cookie-btn-reject {
  background: transparent;
  color: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.25);
}
.cookie-btn-reject:hover { border-color: rgba(255,255,255,0.55); color: #fff; }
.cookie-btn-manage {
  background: transparent;
  color: rgba(255,255,255,0.4);
  border: none;
  font-size: 0.75rem;
  text-decoration: underline;
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,26,46,0.75);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.cookie-modal-overlay.open { opacity: 1; pointer-events: all; }

.cookie-modal {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  max-width: 500px;
  width: 100%;
  box-shadow: var(--shadow-lg);
}

.cookie-modal h3 { font-size: 1.1rem; margin-bottom: var(--space-sm); }

.cookie-modal-option {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--color-border);
}

.cookie-modal-option:last-of-type { border-bottom: none; }
.cookie-modal-option-info h4 { font-size: 0.875rem; }
.cookie-modal-option-info p { font-size: 0.78rem; color: var(--color-text-muted); max-width: none; margin-top: 0.2rem; }

.cookie-checkbox { position: relative; width: 44px; height: 24px; flex-shrink: 0; }
.cookie-checkbox input { opacity: 0; width: 0; height: 0; }
.cookie-checkbox-slider {
  position: absolute;
  inset: 0;
  background: var(--color-border);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background var(--transition-base);
}

.cookie-checkbox-slider::after {
  content: '';
  position: absolute;
  top: 3px; left: 3px;
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: transform var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.cookie-checkbox input:checked + .cookie-checkbox-slider { background: var(--color-brand); }
.cookie-checkbox input:checked + .cookie-checkbox-slider::after { transform: translateX(20px); }
.cookie-checkbox input:disabled + .cookie-checkbox-slider { opacity: 0.6; cursor: not-allowed; }

.cookie-modal-actions { display: flex; gap: 0.75rem; margin-top: var(--space-md); justify-content: flex-end; }

/* === 19. ANIMAÇÕES E TRANSITIONS === */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

.animate-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }
.animate-on-scroll.delay-5 { transition-delay: 0.5s; }

/* === 20. MEDIA QUERIES — MOBILE === */
@media (max-width: 1024px) {
  /* 6-column trick: cada card ocupa 2 colunas → últimos 2 ficam centrados */
  .pricing-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  .pricing-grid .pricing-card:nth-child(1) { grid-column: 1 / 3; }
  .pricing-grid .pricing-card:nth-child(2) { grid-column: 3 / 5; }
  .pricing-grid .pricing-card:nth-child(3) { grid-column: 5 / 7; }
  .pricing-grid .pricing-card:nth-child(4) { grid-column: 2 / 4; }
  .pricing-grid .pricing-card:nth-child(5) { grid-column: 4 / 6; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-lg); }
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { display: none; } /* hide on tablet — reconsider on mobile */
  .showcase .container { grid-template-columns: 1fr; }
  .leads-soon .container { grid-template-columns: 1fr; }
  .tab-panel.active { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .contact-layout { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root {
    --space-xl:  2.5rem;
    --space-2xl: 3.5rem;
    --space-3xl: 4.5rem;
  }

  section { padding: var(--space-xl) 0; }

  .navbar-links { display: none; }
  .navbar-actions .btn:not(.hamburger) { display: none; }
  .hamburger { display: flex; }

  .hero { padding-top: calc(var(--nav-height) + var(--space-lg)); }
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { display: block; margin-top: var(--space-md); }
  .hero-dashboard-float { display: none; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; max-width: 320px; justify-content: center; }

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

  .pricing-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }

  .footer-grid { grid-template-columns: 1fr; gap: var(--space-lg); }
  .footer-bottom { flex-direction: column; text-align: center; }

  .cookie-banner {
    flex-direction: column;
    bottom: 0; left: 0; right: 0;
    width: 100%;
    transform: translateY(20px);
    border-radius: var(--radius-md) var(--radius-md) 0 0;
  }

  .cookie-banner.visible { transform: translateY(0); }
  .cookie-actions { width: 100%; justify-content: stretch; }
  .cookie-btn { flex: 1; text-align: center; }

  .showcase .container { grid-template-columns: 1fr; }
  .showcase-dashboard-overlay { display: none; }

  .leads-soon .container { grid-template-columns: 1fr; }
  .leads-soon-form { flex-direction: column; }
  .leads-soon-form input { min-width: unset; width: 100%; }

  .tabs-nav { gap: 0.2rem; }
  .tab-btn { font-size: 0.78rem; padding: 0.5rem 0.65rem; }

  .contact-layout { grid-template-columns: 1fr; gap: var(--space-lg); }
  .contact-intro > p { max-width: none; }
  .form-row { grid-template-columns: 1fr; }
}

/* === 21. TEMA ESCURO [data-theme="dark"] === */
[data-theme="dark"] {
  --color-bg:         #0f0f1a;
  --color-bg-alt:     #1a1a2e;
  --color-bg-card:    #1e1e32;
  --color-border:     #2a2a3e;
  --color-text:       #f0f0f8;
  --color-text-muted: #9090a8;
  --color-text-light: #5a5a78;
  --color-brand-subtle: rgba(252,53,120,0.12);

  --shadow-sm:    0 1px 3px rgba(0,0,0,0.3);
  --shadow-md:    0 4px 16px rgba(0,0,0,0.35);
  --shadow-lg:    0 12px 40px rgba(0,0,0,0.5);
  --shadow-card:  0 4px 20px rgba(252,53,120,0.12);
}

[data-theme="dark"] .navbar {
  background: rgba(15,15,26,0.92);
}

[data-theme="dark"] .navbar-logo .logo-color { display: none; }
[data-theme="dark"] .navbar-logo .logo-white { display: block; }
[data-theme="dark"] .logo-wordmark,
[data-theme="dark"] .logo-dot { color: #ffffff; }

[data-theme="dark"] .theme-toggle .icon-moon { display: none; }
[data-theme="dark"] .theme-toggle .icon-sun  { display: block; }

[data-theme="dark"] .hero { background: var(--color-bg); }
[data-theme="dark"] .social-proof { background: var(--color-bg-alt); }
[data-theme="dark"] .features { background: var(--color-bg); }
[data-theme="dark"] .sectors { background: var(--color-bg-alt); }
[data-theme="dark"] .testimonials { background: var(--color-bg-alt); }
[data-theme="dark"] .showcase { background: var(--color-bg); }
[data-theme="dark"] .pricing { background: var(--color-bg); }
[data-theme="dark"] .faq { background: var(--color-bg); }
[data-theme="dark"] .cookie-modal { background: var(--color-bg-card); }

[data-theme="dark"] .hamburger span { background: var(--color-text); }
[data-theme="dark"] .leads-soon-form input { background: rgba(255,255,255,0.08); }

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--space-md);
}

.blog-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-brand);
  border-color: rgba(252,53,120,0.2);
}

.blog-card-image {
  aspect-ratio: 16/9;
  background: var(--color-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.blog-card-body {
  padding: var(--space-md);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
}

.blog-card-body h3 { font-size: 1.05rem; margin-bottom: 0.5rem; line-height: 1.35; }
.blog-card-body p { font-size: 0.875rem; color: var(--color-text-muted); flex: 1; max-width: none; }

.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-brand);
  margin-top: var(--space-sm);
  transition: gap var(--transition-fast);
}

.blog-card-link:hover { gap: 0.6rem; }

/* Article layout */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: var(--space-xl);
  align-items: start;
}

.article-content h2 { margin: var(--space-lg) 0 var(--space-sm); }
.article-content h3 { margin: var(--space-md) 0 var(--space-xs); }
.article-content p  { margin-bottom: var(--space-sm); color: var(--color-text-muted); line-height: 1.8; font-size: 0.975rem; }
.article-content ul { margin: var(--space-sm) 0 var(--space-sm) var(--space-md); }
.article-content li { margin-bottom: 0.4rem; color: var(--color-text-muted); font-size: 0.975rem; list-style: disc; }

.article-sidebar { position: sticky; top: calc(var(--nav-height) + var(--space-md)); }

.sidebar-cta {
  background: var(--gradient-brand);
  color: #fff;
  border-radius: var(--radius-md);
  padding: var(--space-md);
  margin-bottom: var(--space-md);
}

.sidebar-cta h3 { color: #fff; font-size: 1.05rem; margin-bottom: 0.5rem; }
.sidebar-cta p { color: rgba(255,255,255,0.8); font-size: 0.85rem; margin-bottom: var(--space-sm); max-width: none; }

.share-box {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
}

.share-box h4 { font-size: 0.85rem; margin-bottom: var(--space-sm); }
.share-buttons { display: flex; gap: 0.5rem; flex-wrap: wrap; }

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  background: none;
  color: var(--color-text);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.share-btn:hover {
  background: var(--color-brand);
  color: #fff;
  border-color: var(--color-brand);
}

@media (max-width: 900px) {
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
}

/* Pricing comparison table */
.pricing-comparison-table { overflow-x: auto; margin-top: var(--space-xl); }
.pricing-comparison-table table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
.pricing-comparison-table th,
.pricing-comparison-table td {
  padding: 0.8rem var(--space-sm);
  text-align: center;
  border-bottom: 1px solid var(--color-border);
}
.pricing-comparison-table th:first-child,
.pricing-comparison-table td:first-child { text-align: left; font-weight: 500; }
.pricing-comparison-table thead th { font-family: var(--font-display); font-weight: 700; background: var(--color-bg-alt); }
.pricing-comparison-table tbody tr:hover { background: var(--color-bg-alt); }
.check-icon { color: var(--color-brand); }
.dash-icon { color: var(--color-text-light); }

/* Privacy */
.privacy-content { max-width: 760px; margin: 0 auto; }
.privacy-content h2 { font-size: 1.25rem; margin: var(--space-lg) 0 var(--space-xs); }
.privacy-content p, .privacy-content li { font-size: 0.95rem; color: var(--color-text-muted); line-height: 1.8; margin-bottom: var(--space-xs); max-width: none; }
.privacy-content ul { margin: var(--space-xs) 0 var(--space-sm) var(--space-md); }
.privacy-content li { list-style: disc; }

/* ============================================================
   PRECOS.HTML — extra styles
   ============================================================ */

/* --- Utility --- */
.text-center { text-align: center; }
.text-brand  { color: var(--color-brand); }

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

/* Section padding helpers */
.section-padding    { padding: var(--space-2xl) 0; }
.section-padding-sm { padding: var(--space-xl) 0; }

/* Section badge (pill label above headings) */
.section-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-brand);
  background: var(--color-brand-subtle);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-sm);
  font-family: var(--font-body);
}

/* Section title & subtitle */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-sm);
}

.section-title-sm {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-sm);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  max-width: 55ch;
  margin: 0 auto var(--space-lg);
  line-height: 1.65;
}

/* --- Buttons --- */
.btn-outline {
  background: transparent;
  color: var(--color-brand);
  border: 2px solid var(--color-brand);
}

.btn-outline:hover {
  background: var(--color-brand);
  color: #fff;
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
}

.btn-sm {
  font-size: 0.82rem;
  padding: 0.5rem 1.1rem;
}

/* --- Pricing hero (precos.html) --- */
.pricing-hero {
  padding-top: calc(var(--nav-height) + var(--space-2xl));
  background: var(--color-bg);
  position: relative;
  overflow: hidden;
}

.pricing-hero::before {
  content: '';
  position: absolute;
  top: -20%; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 500px;
  background: radial-gradient(ellipse, rgba(252,53,120,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.pricing-note {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.6rem var(--space-md);
  max-width: 700px;
  margin: 0 auto;
}

/* --- Pricing card extras (precos.html) --- */
.pricing-badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.85rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
  background: var(--color-brand);
  color: #fff;
}

.pricing-badge-dark {
  background: var(--color-dark);
  color: #fff;
}

.pricing-card-header { margin-bottom: var(--space-sm); }

.pricing-desc {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  margin-top: 0.4rem;
  max-width: none;
  min-height: 2.5em;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-text);
  line-height: 1;
}

.price-period {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--color-text-muted);
  margin-left: 0.2rem;
}

/* Feature list in pricing cards */
.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: var(--space-md);
  font-size: 0.83rem;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--color-text);
}

.pricing-features li i { flex-shrink: 0; width: 16px; height: 16px; color: var(--color-brand); }

.pricing-features .feature-na { color: var(--color-text-light); }
.pricing-features .feature-na i { color: var(--color-text-light); }

.pricing-legal {
  font-size: 0.78rem;
  color: var(--color-text-light);
  text-align: center;
  margin-top: var(--space-lg);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-legal a { color: var(--color-brand); text-decoration: underline; }

/* --- Comparison table --- */
.comparison-section { background: var(--color-bg-alt); }

.comparison-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  background: var(--color-bg-card);
  margin-top: var(--space-xl);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.comparison-table th,
.comparison-table td {
  padding: 0.85rem var(--space-sm);
  text-align: center;
  border-bottom: 1px solid var(--color-border);
  vertical-align: middle;
}

.comparison-table .feature-col,
.comparison-table .feature-name {
  text-align: left;
  font-weight: 500;
  color: var(--color-text);
  min-width: 200px;
}

.comparison-table thead th {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  background: var(--color-bg-alt);
  position: sticky;
  top: 0;
}

.comparison-table thead th.col-featured {
  background: rgba(252,53,120,0.07);
  color: var(--color-brand);
}

.comparison-table thead th.col-best {
  background: rgba(26,26,46,0.05);
}

.plan-price-mini {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  display: block;
}

.comparison-table .col-featured {
  background: rgba(252,53,120,0.04);
}

.comparison-table .col-best {
  background: rgba(26,26,46,0.025);
}

.comparison-group-row td {
  background: var(--color-bg-alt);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  text-align: left !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  padding: 0.6rem var(--space-sm);
  border-top: 2px solid var(--color-border);
}

.comparison-table tbody tr:not(.comparison-group-row):hover {
  background: var(--color-bg-alt);
}

.comparison-table tfoot td {
  border-bottom: none;
  padding: var(--space-sm);
  background: var(--color-bg-alt);
}

.icon-yes { color: var(--color-brand); width: 18px; height: 18px; }
.icon-no  { color: var(--color-text-light); width: 16px; height: 16px; }

/* --- Hardware section --- */
.hardware-section { background: var(--color-bg); }

.hardware-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.hardware-content { padding: var(--space-md) 0; }
.hardware-content p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
  max-width: 50ch;
}

.hardware-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.hardware-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  transition: all var(--transition-base);
}

.hardware-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
  border-color: rgba(252,53,120,0.2);
}

.hardware-card-icon {
  width: 42px; height: 42px;
  background: var(--color-brand-subtle);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-brand);
  margin-bottom: var(--space-sm);
}

.hardware-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.hardware-card p {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  max-width: none;
}

/* --- FAQ section (precos.html reuses faq-list etc) --- */
.faq-section { background: var(--color-bg); }
.faq-container { max-width: 860px; margin: 0 auto; }
.faq-icon {
  flex-shrink: 0;
  width: 20px; height: 20px;
  color: var(--color-text-muted);
  transition: transform var(--transition-base);
}
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-answer p { padding: 0 0 1.25rem; color: var(--color-text-muted); font-size: 0.95rem; line-height: 1.75; max-width: none; }
.faq-answer a { color: var(--color-brand); text-decoration: underline; }

/* --- CTA section (precos.html) --- */
.cta-section {
  background: var(--gradient-brand);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(255,255,255,0.1) 0%, transparent 60%);
  pointer-events: none;
}

.cta-section .container { position: relative; z-index: 1; }

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: var(--space-sm);
}

.cta-subtitle {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  margin: 0 auto var(--space-lg);
  max-width: 50ch;
}

.cta-actions {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-sm);
}

.cta-legal {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  max-width: none;
}

/* --- Footer (precos.html layout) --- */
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-xl);
}

.footer-logo { display: inline-block; margin-bottom: var(--space-sm); }

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.65;
  max-width: 28ch;
}

.footer-email {
  display: inline-block;
  margin-top: var(--space-sm);
  font-size: 0.875rem;
  color: var(--color-brand-light);
  transition: color var(--transition-fast);
}

.footer-email:hover { color: var(--color-brand); }

.footer-address {
  margin-top: var(--space-sm);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  font-style: normal;
  line-height: 1.8;
}
.footer-address a {
  color: rgba(255,255,255,0.5);
  transition: color var(--transition-fast);
}
.footer-address a:hover { color: var(--color-brand-light); }

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.footer-col h3 {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-col a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition-fast);
}

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

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

/* --- Responsive — precos.html additions --- */
@media (max-width: 1024px) {
  .hardware-grid { grid-template-columns: 1fr; }
  .comparison-table { font-size: 0.78rem; }
  .comparison-table th, .comparison-table td { padding: 0.6rem 0.5rem; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-nav { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hardware-cards { grid-template-columns: 1fr 1fr; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 320px; justify-content: center; }
  .footer-nav { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .hardware-cards { grid-template-columns: 1fr; }
  .footer-nav { grid-template-columns: 1fr; }
}

/* Dark mode additions */
[data-theme="dark"] .comparison-section { background: var(--color-bg-alt); }
[data-theme="dark"] .hardware-section   { background: var(--color-bg); }
[data-theme="dark"] .faq-section        { background: var(--color-bg); }
[data-theme="dark"] .pricing-hero       { background: var(--color-bg); }
[data-theme="dark"] .comparison-table thead th  { background: var(--color-bg-card); }
[data-theme="dark"] .comparison-group-row td    { background: var(--color-bg-alt); }
[data-theme="dark"] .comparison-table-wrap      { background: var(--color-bg-card); }
[data-theme="dark"] .hardware-card             { background: var(--color-bg-card); }
[data-theme="dark"] .comparison-table thead th.col-featured { background: rgba(252,53,120,0.12); }

/* ============================================================
   BLOG.HTML — extra styles
   ============================================================ */

.blog-hero {
  padding-top: calc(var(--nav-height) + var(--space-2xl));
  background: var(--color-bg);
}

.blog-listing { background: var(--color-bg-alt); }

/* Blog grid (existing .blog-card styles apply) */
.blog-card-image {
  aspect-ratio: 16/9;
  background: var(--color-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Newsletter block */
.blog-newsletter {
  margin-top: var(--space-2xl);
  background: var(--gradient-brand);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.blog-newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  padding: var(--space-xl);
}

.blog-newsletter-text h2 {
  color: #fff;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  margin-bottom: 0.5rem;
}

.blog-newsletter-text p {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  max-width: none;
}

.blog-newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.blog-newsletter-form input[type="email"] {
  flex: 1;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-full);
  border: none;
  font-size: 0.9rem;
  font-family: var(--font-body);
  background: rgba(255,255,255,0.95);
  color: var(--color-text);
  min-width: 0;
}

.blog-newsletter-form input[type="email"]:focus {
  outline: 2px solid rgba(255,255,255,0.5);
  outline-offset: 2px;
}

.blog-newsletter-form .btn {
  background: #fff;
  color: var(--color-brand-dark);
  white-space: nowrap;
  flex-shrink: 0;
}

.blog-newsletter-form .btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
  .blog-newsletter-inner { grid-template-columns: 1fr; gap: var(--space-md); padding: var(--space-md); }
  .blog-newsletter-form { flex-direction: column; }
  .blog-newsletter-form input { width: 100%; }
}

[data-theme="dark"] .blog-hero    { background: var(--color-bg); }
[data-theme="dark"] .blog-listing { background: var(--color-bg-alt); }

/* ============================================================
   ARTIGO — extra styles
   ============================================================ */

.article-wrapper { background: var(--color-bg); }

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}

.breadcrumb a { color: var(--color-text-muted); transition: color var(--transition-fast); }
.breadcrumb a:hover { color: var(--color-brand); }
.breadcrumb i { width: 14px; height: 14px; color: var(--color-text-light); flex-shrink: 0; }
.breadcrumb span { color: var(--color-text); }

/* Article meta */
.article-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
  flex-wrap: wrap;
}

.article-meta-sep { color: var(--color-text-light); }

/* Article heading */
.article-content h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: var(--space-md);
  line-height: 1.18;
}

/* Intro paragraph */
.article-intro {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  max-width: 68ch;
  margin-bottom: var(--space-lg);
  border-left: 3px solid var(--color-brand);
  padding-left: var(--space-sm);
}

/* Cover image */
.article-cover {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: var(--space-lg);
  border: 1px solid var(--color-border);
}

/* Body content */
.article-content h2 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  margin: var(--space-lg) 0 var(--space-sm);
  color: var(--color-text);
}

.article-content p {
  font-size: 0.975rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-sm);
  max-width: 68ch;
}

/* Inline CTA inside article */
.article-cta-inline {
  background: var(--color-brand-subtle);
  border: 1px solid rgba(252,53,120,0.2);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  margin: var(--space-lg) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.article-cta-inline p {
  font-size: 0.95rem;
  color: var(--color-text);
  margin: 0;
  max-width: 50ch;
}

/* Author block */
.article-author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-border);
}

.article-author-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gradient-brand);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.article-author-info strong { font-size: 0.9rem; display: block; }
.article-author-info p { font-size: 0.82rem; color: var(--color-text-muted); margin: 0; max-width: none; }

/* Share inside article */
.article-share {
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.article-share p { font-size: 0.85rem; font-weight: 600; margin: 0; max-width: none; }

/* Sidebar extras */
.sidebar-related {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  margin-top: var(--space-sm);
}

.sidebar-related h4 { font-size: 0.85rem; margin-bottom: var(--space-sm); }

.sidebar-related ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sidebar-related a {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
  display: block;
  line-height: 1.4;
}

.sidebar-related a:hover { color: var(--color-brand); }

@media (max-width: 900px) {
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
  .article-cta-inline { flex-direction: column; align-items: flex-start; }
}

[data-theme="dark"] .article-wrapper   { background: var(--color-bg); }
[data-theme="dark"] .sidebar-related   { background: var(--color-bg-card); }
[data-theme="dark"] .article-cover     { border-color: var(--color-border); }
[data-theme="dark"] .article-cta-inline {
  background: rgba(252,53,120,0.08);
  border-color: rgba(252,53,120,0.2);
}

/* ============================================================
   POLITICA-PRIVACIDADE.HTML — extra styles
   ============================================================ */

.legal-wrapper { background: var(--color-bg); }

.legal-updated {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
  max-width: none;
}

/* Override privacy-content for h3 */
.privacy-content h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: var(--space-md) 0 var(--space-xs);
  color: var(--color-text);
}

.privacy-content a {
  color: var(--color-brand);
  text-decoration: underline;
  transition: color var(--transition-fast);
}

.privacy-content a:hover { color: var(--color-brand-dark); }

/* Legal table */
.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  margin: var(--space-sm) 0 var(--space-md);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.legal-table th,
.legal-table td {
  padding: 0.75rem var(--space-sm);
  text-align: left;
  border-bottom: 1px solid var(--color-border);
  vertical-align: top;
}

.legal-table thead th {
  background: var(--color-bg-alt);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
}

.legal-table tbody tr:hover { background: var(--color-bg-alt); }

[data-theme="dark"] .legal-wrapper { background: var(--color-bg); }
[data-theme="dark"] .legal-table thead th { background: var(--color-bg-card); }
[data-theme="dark"] .legal-table tbody tr:hover { background: var(--color-bg-alt); }
