/* ==========================================================================
   TVA CREATIVE — COMPLETE CLEAN LUXURY DESIGN SYSTEM
   Brand Identity: TIME • VISION • ATTENTION
   Light Palette: Warm Alabaster (#FBF9F5) • Pure White (#FFFFFF) • Terracotta (#E26715)
   Antigravity Dot Matrix • Curated Photography • Rounded Forms • Lead Management
   ========================================================================== */

:root {
  /* Typography */
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;

  /* Canvas & Surfaces */
  --bg-page: #FBF9F5;
  --bg-surface: #FFFFFF;
  --bg-surface-soft: #F6F2EA;
  --bg-subtle-tint: #F3EFE6;

  /* Signature TVA Terracotta / Amber */
  --tva-terracotta: #E26715;
  --tva-terracotta-dark: #C4530A;
  --tva-terracotta-light: #F97316;
  --tva-terracotta-soft: rgba(226, 103, 21, 0.08);
  --tva-terracotta-border: rgba(226, 103, 21, 0.22);
  --tva-terracotta-glow: rgba(226, 103, 21, 0.25);

  /* Deep Charcoal Inks */
  --text-main: #1C1B1A;
  --text-heading: #11100F;
  --text-muted: #575550;
  --text-subtle: #797670;
  --text-faint: #A8A49C;

  /* Borders */
  --border-hairline: rgba(0, 0, 0, 0.06);
  --border-soft: rgba(0, 0, 0, 0.1);
  --border-focus: rgba(226, 103, 21, 0.45);

  /* Rounded Geometry (Bordas Arredondadas em Tudo) */
  --radius-xs: 12px;
  --radius-sm: 18px;
  --radius-md: 24px;
  --radius-lg: 32px;
  --radius-xl: 40px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-subtle: 0 4px 20px -2px rgba(0, 0, 0, 0.03);
  --shadow-card: 0 12px 35px -5px rgba(28, 27, 26, 0.04), 0 0 0 1px var(--border-hairline);
  --shadow-hover: 0 22px 50px -10px rgba(28, 27, 26, 0.09), 0 0 0 1px rgba(226, 103, 21, 0.25);
  --shadow-terracotta: 0 12px 30px -5px rgba(226, 103, 21, 0.32);
}

/* ==========================================================================
   Base & Reset
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  color-scheme: light;
  background-color: var(--bg-page);
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  background-color: var(--bg-page);
  color: var(--text-main);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-page);
}
::-webkit-scrollbar-thumb {
  background: #DDD5C7;
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--tva-terracotta);
}

::selection {
  background: var(--tva-terracotta-soft);
  color: var(--tva-terracotta-dark);
}

/* ==========================================================================
   Antigravity Dot Matrix Interactive Canvas
   ========================================================================== */

#antigravity-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
}

.ambient-auras {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.aura-blob {
  position: absolute;
  border-radius: var(--radius-full);
  pointer-events: none;
  opacity: 0.6;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  animation: auraFloat 24s infinite alternate ease-in-out;
}

.aura-1 {
  width: 600px;
  height: 600px;
  top: -100px;
  right: -50px;
  background: radial-gradient(circle, rgba(226, 103, 21, 0.12) 0%, rgba(226, 103, 21, 0.05) 35%, transparent 70%);
}

.aura-2 {
  width: 700px;
  height: 700px;
  top: 35%;
  left: -200px;
  background: radial-gradient(circle, rgba(246, 236, 223, 0.9) 0%, rgba(246, 236, 223, 0.4) 40%, transparent 70%);
  animation-duration: 30s;
  animation-delay: -6s;
}

@keyframes auraFloat {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(40px, -30px, 0) scale(1.06); }
  100% { transform: translate3d(-30px, 40px, 0) scale(0.96); }
}

.site-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-wide {
  width: 100%;
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ==========================================================================
   Typography & Elements
   ========================================================================== */

h1, h2, h3, h4 {
  color: var(--text-heading);
  letter-spacing: -0.035em;
  font-weight: 700;
  line-height: 1.15;
}

.text-terracotta {
  color: var(--tva-terracotta);
}

.badge-pill-clean {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(226, 103, 21, 0.22);
  border-radius: var(--radius-full);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tva-terracotta);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.live-radar-ping {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--tva-terracotta);
  box-shadow: 0 0 0 3px rgba(226, 103, 21, 0.18);
  flex-shrink: 0;
}

/* Buttons with Clean Rounded Aesthetics */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: inherit;
  text-decoration: none;
  cursor: pointer;
  border-radius: var(--radius-full);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid transparent;
}

.btn-primary {
  background-color: var(--tva-terracotta);
  color: #FFFFFF;
  box-shadow: var(--shadow-terracotta);
}

.btn-primary:hover {
  background-color: var(--tva-terracotta-dark);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -6px rgba(226, 103, 21, 0.42);
}

.btn-secondary {
  background-color: var(--bg-surface);
  color: var(--text-main);
  border-color: var(--border-soft);
  box-shadow: var(--shadow-subtle);
}

.btn-secondary:hover {
  background-color: #FFFFFF;
  border-color: rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.08);
}

.btn-sm {
  padding: 9px 20px;
  font-size: 0.86rem;
}

.btn-lg {
  padding: 17px 34px;
  font-size: 1.02rem;
}

.icon-box-clean {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #FFFFFF;
  color: var(--text-heading);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 8px -2px rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.icon-box-clean svg {
  stroke-width: 1.4px;
  transition: all 0.3s ease;
}

.service-card:hover .icon-box-clean,
.commitment-item:hover .icon-box-clean,
.icon-box-clean:hover {
  background: #FFFFFF;
  color: var(--tva-terracotta);
  border-color: var(--tva-terracotta-border);
  box-shadow: 0 8px 24px -6px rgba(226, 103, 21, 0.22);
  transform: translateY(-2px);
}

.icon-box-clean:hover svg {
  transform: scale(1.06);
}

.section-teaser-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--tva-terracotta);
  text-decoration: none;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  background: var(--tva-terracotta-soft);
  border: 1px solid rgba(226, 103, 21, 0.2);
  transition: all 0.25s ease;
}

.section-teaser-cta:hover {
  background: var(--tva-terracotta);
  color: #FFFFFF;
  border-color: var(--tva-terracotta);
  transform: translateX(3px);
  box-shadow: 0 8px 20px -4px rgba(226, 103, 21, 0.35);
}

/* ==========================================================================
   Header / Navbar
   ========================================================================== */

.navbar-wrapper {
  position: fixed;
  top: 20px;
  left: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  justify-content: center;
  pointer-events: none;
  padding: 0 16px;
}

.navbar {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 10px 16px 10px 24px;
  border-radius: var(--radius-full);
  box-shadow: 0 12px 30px -10px rgba(0, 0, 0, 0.05);
  max-width: 1180px;
  width: 100%;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 35px -10px rgba(0, 0, 0, 0.09);
  border-color: rgba(0, 0, 0, 0.12);
}

.nav-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-brand img {
  height: 36px;
  width: auto;
  display: block;
  transition: transform 0.25s ease;
}

.nav-brand:hover img {
  transform: scale(1.02);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s ease;
  position: relative;
  padding: 4px 0;
}

.nav-links a:hover {
  color: var(--text-heading);
}

.nav-links a.active {
  color: var(--tva-terracotta);
  font-weight: 600;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--tva-terracotta);
  transition: all 0.25s ease;
  transform: translateX(-50%);
  border-radius: var(--radius-full);
}

.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-toggle-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 6px;
}

/* ==========================================================================
   Hero Section: Centered, Espaçosa e Perfeccionista
   ========================================================================== */

.hero-section {
  padding-top: 170px;
  padding-bottom: 90px;
  position: relative;
  text-align: center;
}

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

.hero-tag-wrap {
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2.6rem, 5.2vw, 4.2rem);
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 24px;
  font-weight: 800;
  color: var(--text-heading);
}

.hero-title span.terracotta {
  color: var(--tva-terracotta);
}

.hero-subtitle {
  font-size: clamp(1.08rem, 1.9vw, 1.25rem);
  color: var(--text-muted);
  max-width: 740px;
  margin-bottom: 42px;
  line-height: 1.65;
  text-align: center;
}

.hero-subtitle strong {
  color: var(--text-heading);
  font-weight: 600;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 54px;
}

.hero-stats-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px -8px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.stat-box {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 28px 24px;
  box-shadow: none;
  transition: background 0.3s ease;
  text-align: center;
  position: relative;
}

.stat-box:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 22%;
  bottom: 22%;
  right: 0;
  width: 1px;
  background: var(--border-soft);
}

.stat-box:hover {
  background: rgba(226, 103, 21, 0.03);
}

.stat-number {
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--text-heading);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 6px;
}

.stat-number.accent {
  color: var(--tva-terracotta);
}

.stat-caption {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.45;
}

/* ==========================================================================
   Storytelling Section
   ========================================================================== */

.story-section {
  padding: 90px 0;
  position: relative;
}

.story-card-wrapper {
  background: var(--bg-surface);
  border: 1px solid var(--border-hairline);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  box-shadow: var(--shadow-card);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: stretch;
}

.story-narrative {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.story-narrative h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 20px;
}

.story-narrative p {
  color: var(--text-muted);
  font-size: 1.04rem;
  line-height: 1.75;
  margin-bottom: 20px;
}

.story-commitments {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 26px;
}

.commitment-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.commitment-item h4 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.commitment-item p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.55;
}

.story-visual-side {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.story-photo-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.12);
  border: 1px solid var(--border-hairline);
  height: 100%;
  min-height: 480px;
  width: 100%;
}

.story-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.story-floating-tag {
  position: absolute;
  bottom: -20px;
  left: 30px;
  background: #FFFFFF;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ==========================================================================
   NOVA SEÇÃO: Serviços & Metodologia
   ========================================================================== */

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.service-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-hairline);
  border-radius: var(--radius-xl);
  padding: 38px 34px;
  box-shadow: var(--shadow-card);
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--tva-terracotta-border);
  box-shadow: var(--shadow-hover);
}

.service-arch-index {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--tva-terracotta);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-arch-index::after {
  content: '';
  height: 1px;
  flex-grow: 1;
  background: var(--border-soft);
  opacity: 0.6;
}

.service-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.service-header h3 {
  font-size: 1.35rem;
}

.service-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 22px;
}

.service-deliverables-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.deliverable-tag {
  background: var(--bg-subtle-tint);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--radius-full);
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-main);
}

/* ==========================================================================
   NOVA SEÇÃO: Cases de Sucesso Documentados
   ========================================================================== */

.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.case-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-hairline);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.case-card:hover {
  transform: translateY(-6px);
  border-color: var(--tva-terracotta-border);
  box-shadow: var(--shadow-hover);
}

.case-media {
  position: relative;
  aspect-ratio: 16 / 10;
  height: auto;
  min-height: 210px;
  overflow: hidden;
}

.case-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.case-metric-highlight {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.case-metric-highlight .val {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--tva-terracotta);
  line-height: 1;
}

.case-metric-highlight .lbl {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
}

.case-body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.case-niche {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--tva-terracotta);
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.case-body h4 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.case-body p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.55;
  margin-bottom: 16px;
}

.case-author {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--border-hairline);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-heading);
}

/* ==========================================================================
   Showcase Interativo com Fotos
   ========================================================================== */

.showcase-section {
  padding: 60px 0 90px;
}

.showcase-phone-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-hairline);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-card);
  max-width: 1140px;
  margin: 0 auto;
}

.showcase-nav-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.feed-filter-btn {
  background: var(--bg-subtle-tint);
  border: 1px solid transparent;
  color: var(--text-muted);
  padding: 11px 24px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.feed-filter-btn.active, .feed-filter-btn:hover {
  background: #FFFFFF;
  color: var(--tva-terracotta);
  border-color: var(--tva-terracotta-border);
  box-shadow: var(--shadow-subtle);
}

.instagram-feed-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.real-post-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-hairline);
  box-shadow: var(--shadow-subtle);
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
}

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

.post-media-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.post-media-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.real-post-card:hover .post-media-wrap img {
  transform: scale(1.04);
}

.post-niche-pill {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-heading);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.post-info-body {
  padding: 22px;
}

.post-info-body h4 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  line-height: 1.35;
}

.post-info-body p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.55;
  margin-bottom: 14px;
}

.post-footer-stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--border-hairline);
  font-size: 0.82rem;
  color: var(--text-subtle);
  font-weight: 500;
}

.post-format-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.70rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--tva-terracotta);
  background: var(--tva-terracotta-soft);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(226, 103, 21, 0.18);
}

/* ==========================================================================
   Section Layout & Headings Clean
   ========================================================================== */

.section-clean {
  padding: 90px 0;
  position: relative;
}

.section-header-clean {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 50px;
}

.section-header-clean .badge-pill-clean {
  margin-bottom: 16px;
}

.section-header-clean h2 {
  font-size: clamp(2rem, 3.8vw, 3rem);
  margin-bottom: 14px;
}

.section-header-clean p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ==========================================================================
   Os 4 Planos Estratégicos
   ========================================================================== */

.pricing-grid-clean {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: stretch;
}

.pricing-card-clean {
  background: var(--bg-surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 38px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  position: relative;
  box-shadow: var(--shadow-card);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.pricing-card-clean:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(226, 103, 21, 0.35);
}

.pricing-card-clean.featured {
  border: 2px solid var(--tva-terracotta);
  background: linear-gradient(180deg, #FFFFFF 0%, #FFFDFB 100%);
  box-shadow: 0 16px 38px -10px rgba(226, 103, 21, 0.2);
}

.pricing-card-clean.featured:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 48px -10px rgba(226, 103, 21, 0.3);
}

.pricing-card-clean.elite {
  background: linear-gradient(180deg, #FFFFFF 0%, #FAF8F5 100%);
  border: 1.5px solid #27272A;
  box-shadow: 0 14px 35px -10px rgba(24, 24, 27, 0.12);
}

.pricing-card-clean.elite:hover {
  transform: translateY(-5px);
  border-color: #18181B;
  box-shadow: 0 20px 45px -10px rgba(24, 24, 27, 0.22);
}

.card-top-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--tva-terracotta);
  color: #FFFFFF;
  padding: 4px 18px;
  border-radius: var(--radius-full);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(226, 103, 21, 0.35);
  white-space: nowrap;
}

.elite-top-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: #18181B;
  color: #FFFFFF;
  padding: 4px 18px;
  border-radius: var(--radius-full);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.plan-info {
  margin-bottom: 20px;
}

.plan-title-clean {
  font-size: 1.32rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 6px;
}

.plan-desc-clean {
  color: var(--text-muted);
  font-size: 0.88rem;
  min-height: 48px;
  line-height: 1.5;
}

.plan-price-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-hairline);
  font-variant-numeric: tabular-nums;
}

.plan-price-row .currency {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-muted);
}

.plan-price-row .value {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--text-heading);
  line-height: 1;
}

.plan-price-row .period {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-left: 2px;
}

.plan-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
  flex-grow: 1;
}

.plan-checklist li {
  display: grid;
  grid-template-columns: 18px 1fr;
  column-gap: 12px;
  align-items: start;
  font-size: 0.88rem;
  color: var(--text-main);
  line-height: 1.45;
}

.plan-checklist li svg {
  min-width: 16px;
  width: 16px;
  height: 16px;
  color: var(--tva-terracotta);
  margin-top: 2px;
  flex-shrink: 0;
}

.plan-checklist li.highlight-item {
  font-weight: 600;
}

.plan-btn-full {
  width: 100%;
  margin-top: auto;
}

/* ==========================================================================
   NOVA SEÇÃO: Formulário de Briefing Online Conectado ao Backend
   ========================================================================== */

.briefing-card-wrapper {
  background: var(--bg-surface);
  border: 1px solid var(--border-hairline);
  border-radius: var(--radius-xl);
  padding: 50px 44px;
  box-shadow: var(--shadow-card);
  max-width: 860px;
  margin: 0 auto;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-heading);
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-subtle-tint);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text-main);
  outline: none;
  transition: all 0.25s ease;
}

.form-control:focus {
  background: #FFFFFF;
  border-color: var(--tva-terracotta);
  box-shadow: 0 0 0 3px var(--tva-terracotta-soft);
}

.plan-radio-group {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 4px;
}

.plan-radio-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 14px 10px;
  background: var(--bg-subtle-tint);
  border: 1.5px solid var(--border-hairline);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
}

.plan-radio-label input {
  display: none;
}

.plan-radio-label .name {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-heading);
}

.plan-radio-label .price {
  font-size: 0.78rem;
  color: var(--tva-terracotta);
  font-weight: 600;
}

.plan-radio-label:has(input:checked) {
  background: #FFFFFF;
  border-color: var(--tva-terracotta);
  box-shadow: 0 4px 15px rgba(226, 103, 21, 0.2);
}

/* Toast Alert Feedback */
.tva-toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #18181B;
  color: #FFFFFF;
  padding: 16px 28px;
  border-radius: var(--radius-full);
  font-size: 0.94rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.tva-toast.active {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

/* ==========================================================================
   NOVA SEÇÃO: Blog & Insights Estratégicos
   ========================================================================== */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-hairline);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-5px);
  border-color: var(--tva-terracotta-border);
  box-shadow: var(--shadow-hover);
}

.blog-cover {
  height: 200px;
  position: relative;
  overflow: hidden;
}

.blog-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-cover img {
  transform: scale(1.04);
}

.blog-time-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-heading);
}

.blog-body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-body h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  line-height: 1.35;
}

.blog-body p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 18px;
}

.blog-read-more {
  margin-top: auto;
  color: var(--tva-terracotta);
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ==========================================================================
   PAINEL ADMINISTRATIVO DE LEADS (Modal TVA)
   ========================================================================== */

.admin-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(18, 18, 24, 0.6);
  backdrop-filter: blur(12px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.admin-modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.admin-modal-card {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  max-width: 960px;
  width: 100%;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border-soft);
  overflow: hidden;
  transform: translateY(20px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.admin-modal-backdrop.open .admin-modal-card {
  transform: translateY(0);
}

.admin-modal-header {
  padding: 24px 30px;
  border-bottom: 1px solid var(--border-hairline);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.admin-modal-body {
  padding: 30px;
  overflow-y: auto;
  flex-grow: 1;
}

.admin-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 26px;
}

.admin-stat-pill {
  background: var(--bg-subtle-tint);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  text-align: center;
}

.admin-stat-pill .num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--tva-terracotta);
}

.admin-stat-pill .txt {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
}

.admin-leads-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-leads-table th, .admin-leads-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border-hairline);
  font-size: 0.88rem;
}

.admin-leads-table th {
  font-weight: 700;
  color: var(--text-muted);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.status-badge-chip {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.74rem;
  font-weight: 700;
}

.status-novo { background: #FEF3C7; color: #B45309; }
.status-atendimento { background: #DBEAFE; color: #1D4ED8; }
.status-aprovado { background: #DCFCE7; color: #15803D; }

/* ==========================================================================
   Calculadora de Economia Clean
   ========================================================================== */

.clean-calc-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-hairline);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  box-shadow: var(--shadow-card);
}

.calc-split-clean {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.calc-filter-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.calc-filter-btn {
  background: var(--bg-subtle-tint);
  border: 1px solid transparent;
  color: var(--text-muted);
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: 0.86rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.calc-filter-btn.active, .calc-filter-btn:hover {
  background: var(--tva-terracotta);
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(226, 103, 21, 0.25);
}

.calc-display-box {
  background: var(--bg-subtle-tint);
  border-radius: var(--radius-lg);
  padding: 30px;
  border: 1px solid var(--border-hairline);
}

.calc-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 0.94rem;
}

.calc-line span:first-child {
  color: var(--text-muted);
}

.calc-line span:last-child {
  font-weight: 700;
  color: var(--text-heading);
}

.calc-savings-clean {
  background: #FFFFFF;
  border: 1px solid var(--tva-terracotta-border);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-top: 18px;
  text-align: center;
}

.calc-savings-clean .save-label {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--tva-terracotta);
  display: block;
  margin-bottom: 4px;
}

.calc-savings-clean .save-number {
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--text-heading);
  line-height: 1.1;
}

/* ==========================================================================
   Clean FAQ Accordion
   ========================================================================== */

.clean-faq-wrap {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.clean-faq-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-hairline);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-subtle);
  overflow: hidden;
  transition: all 0.3s ease;
}

.clean-faq-item.active {
  border-color: var(--tva-terracotta-border);
  box-shadow: 0 8px 25px -5px rgba(0, 0, 0, 0.05);
}

.clean-faq-btn {
  width: 100%;
  padding: 22px 26px;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--text-heading);
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-chevron {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-full);
  background: var(--bg-subtle-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: transform 0.3s ease;
}

.clean-faq-item.active .faq-chevron {
  transform: rotate(180deg);
  background: var(--tva-terracotta-soft);
  color: var(--tva-terracotta);
}

.clean-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 26px;
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.65;
}

.clean-faq-item.active .clean-faq-answer {
  max-height: 350px;
  padding-bottom: 22px;
}

/* ==========================================================================
   Clean Footer
   ========================================================================== */

.site-footer-clean {
  padding: 64px 0 32px;
  border-top: 1px solid var(--border-hairline);
  background: #FFFFFF;
}

.footer-row-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 36px;
}

.footer-nav-clean {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-nav-clean a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-nav-clean a:hover {
  color: var(--text-heading);
}

.footer-row-sub {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 26px;
  border-top: 1px solid var(--border-hairline);
  font-size: 0.84rem;
  color: var(--text-faint);
}

.footer-status-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  background: var(--tva-terracotta-soft);
  color: var(--tva-terracotta-dark);
  font-size: 0.82rem;
  font-weight: 600;
  border: 1px solid var(--tva-terracotta-border);
}

/* WhatsApp Floating Beacon */
.clean-whatsapp-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 99;
  display: flex;
  align-items: center;
  gap: 12px;
}

.whatsapp-bubble-tip {
  background: #FFFFFF;
  border: 1px solid var(--border-soft);
  color: var(--text-heading);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.84rem;
  font-weight: 600;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.08);
  pointer-events: none;
}

.whatsapp-bubble-btn {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-full);
  background: #25D366;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  text-decoration: none;
  box-shadow: 0 10px 25px -4px rgba(37, 211, 102, 0.4);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.whatsapp-bubble-btn:hover {
  transform: scale(1.08) rotate(4deg);
  box-shadow: 0 15px 35px -4px rgba(37, 211, 102, 0.55);
}

/* ==========================================================================
   Editorial Serif Typography
   ========================================================================== */

.font-serif-italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.font-serif-bold {
  font-family: var(--font-serif);
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* ==========================================================================
   Page Hero (Telas Dedicadas: Quem Somos, Serviços, Portfólio, Planos, Briefing)
   ========================================================================== */

.page-hero {
  padding: 130px 0 50px;
  text-align: center;
  position: relative;
}

.page-hero-inner {
  max-width: 820px;
  margin: 0 auto;
}

.breadcrumb-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-soft);
  margin-bottom: 24px;
  transition: all 0.25s ease;
}

.breadcrumb-back:hover {
  color: var(--tva-terracotta);
  border-color: var(--tva-terracotta-border);
  background: #FFFFFF;
  transform: translateX(-2px);
}

.page-hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 18px;
  color: var(--text-heading);
}

.page-hero p {
  font-size: clamp(1.02rem, 1.8vw, 1.18rem);
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 680px;
  margin: 0 auto;
}

/* ==========================================================================
   Production Pipeline (Esteira Técnica de 4 Etapas)
   ========================================================================== */

.pipeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 40px;
  align-items: stretch;
}

.pipeline-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: var(--shadow-subtle);
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.pipeline-card:hover {
  transform: translateY(-4px);
  border-color: var(--tva-terracotta-border);
  box-shadow: var(--shadow-hover);
}

.pipeline-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.pipeline-num-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  background: var(--tva-terracotta-soft);
  color: var(--tva-terracotta);
  border: 1px solid var(--tva-terracotta-border);
  font-weight: 800;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pipeline-time-badge {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-subtle);
  background: var(--bg-subtle-tint);
  border: 1px solid var(--border-hairline);
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.pipeline-card h4 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--text-heading);
}

.pipeline-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 0;
  flex-grow: 1;
}

/* ==========================================================================
   Pillars Grid (Quem Somos - Os 3 Pilares)
   ========================================================================== */

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  align-items: stretch;
}

.pillar-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
  height: 100%;
}

.pillar-card:hover {
  transform: translateY(-5px);
  border-color: var(--tva-terracotta-border);
  box-shadow: var(--shadow-hover);
}

.pillar-index {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--tva-terracotta);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pillar-card h4 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--text-heading);
}

.pillar-card p {
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 0.92rem;
  margin-bottom: 0;
}

/* ==========================================================================
   Plan Comparison Matrix Table (Matriz Completa dos 4 Planos)
   ========================================================================== */

.matrix-card-wrap {
  background: var(--bg-surface);
  border: 1px solid var(--border-hairline);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  box-shadow: var(--shadow-card);
  overflow-x: auto;
  margin-top: 48px;
}

.matrix-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 680px;
}

.matrix-table th, .matrix-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--border-hairline);
  font-size: 0.9rem;
}

.matrix-table th {
  font-weight: 700;
  color: var(--text-heading);
}

.matrix-table th.col-feature {
  width: 32%;
}

.matrix-table th.col-plan {
  width: 17%;
  text-align: center;
}

.matrix-table td.col-plan {
  text-align: center;
}

.matrix-table tr.highlight-row {
  background: var(--tva-terracotta-soft);
}

.matrix-check-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--tva-terracotta-soft);
  color: var(--tva-terracotta);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.matrix-check-icon svg {
  width: 13px;
  height: 13px;
}

.matrix-badge-included {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  background: var(--tva-terracotta-soft);
  border: 1px solid var(--tva-terracotta-border);
  color: var(--tva-terracotta);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.matrix-badge-spec {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background: var(--bg-surface-soft);
  color: var(--text-heading);
  font-size: 0.78rem;
  font-weight: 600;
  border: 1px solid var(--border-soft);
}

.matrix-dash {
  color: var(--text-faint);
  font-weight: 400;
  opacity: 0.6;
}

/* ==========================================================================
   Responsive Adaptations
   ========================================================================== */

@media (max-width: 1240px) {
  .pricing-card-clean {
    padding: 34px 18px;
  }
  .plan-checklist li {
    font-size: 0.84rem;
    column-gap: 8px;
  }
}

@media (max-width: 1100px) {
  .pipeline-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pillars-grid {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .cases-grid {
    grid-template-columns: 1fr;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .story-card-wrapper {
    grid-template-columns: 1fr;
  }
  .story-photo-frame {
    min-height: 340px;
  }
  .pricing-grid-clean {
    grid-template-columns: repeat(2, 1fr);
  }
  .calc-split-clean {
    grid-template-columns: 1fr;
  }
  .instagram-feed-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .plan-radio-group {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 960px) {
  .nav-links {
    display: none;
  }
  .mobile-toggle-btn {
    display: block;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 8px 14px;
  }
  .hero-section {
    padding-top: 125px;
    padding-bottom: 50px;
  }
  .hero-stats-bar {
    grid-template-columns: 1fr;
  }
  .stat-box:not(:last-child)::after {
    top: auto;
    bottom: 0;
    left: 10%;
    right: 10%;
    width: 80%;
    height: 1px;
  }
  .pipeline-grid {
    grid-template-columns: 1fr;
  }
  .form-grid-2 {
    grid-template-columns: 1fr;
  }
  .plan-radio-group {
    grid-template-columns: 1fr;
  }
  .pricing-grid-clean {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .instagram-feed-grid {
    grid-template-columns: 1fr;
  }
  .whatsapp-bubble-tip {
    display: none;
  }
  .clean-calc-card, .briefing-card-wrapper {
    padding: 30px 20px;
  }
  .footer-row-main {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ==========================================================================
   Caderno Editorial & Blog TVA Styles
   ========================================================================== */
.blog-filter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.blog-tag-pill {
  border: 1px solid var(--border-soft);
  background: #FFFFFF;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-sm);
}

.blog-tag-pill:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.blog-tag-pill.active {
  background: var(--text-main);
  color: #FFFFFF;
  border-color: var(--text-main);
  box-shadow: 0 4px 14px rgba(28, 27, 26, 0.15);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 64px;
}

.blog-card {
  background: #FFFFFF;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
  cursor: pointer;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -15px rgba(28, 27, 26, 0.08);
  border-color: var(--border-focus);
}

.blog-card-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--surface-subtle);
}

.blog-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.blog-card-category-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  border: 1px solid rgba(226, 103, 21, 0.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.blog-card-body {
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  color: var(--text-light);
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.blog-card-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.blog-card-title {
  font-family: var(--font-display);
  font-size: 1.22rem;
  line-height: 1.4;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.blog-card-excerpt {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 22px;
  flex-grow: 1;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--border-subtle);
}

.blog-author-info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}

.blog-author-avatar {
  width: 26px;
  height: 26px;
  border-radius: var(--radius-full);
  background: var(--surface-soft);
  border: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--primary);
}

.blog-read-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  transition: gap 0.2s ease;
}

.blog-card:hover .blog-read-link {
  gap: 10px;
}

/* Modal Leitor Editorial */
.blog-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(28, 27, 26, 0.68);
  backdrop-filter: blur(12px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-modal-backdrop.active {
  display: flex;
  opacity: 1;
}

.blog-modal-container {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  max-width: 820px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  border: 1px solid var(--border-soft);
  box-shadow: 0 30px 70px -10px rgba(0, 0, 0, 0.25);
  position: relative;
  transform: scale(0.96) translateY(20px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-modal-backdrop.active .blog-modal-container {
  transform: scale(1) translateY(0);
}

.blog-modal-header {
  padding: 40px 48px 24px;
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
}

.blog-modal-close-btn {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-soft);
  background: #FFFFFF;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.2s ease;
}

.blog-modal-close-btn:hover {
  background: var(--surface-soft);
  color: var(--text-main);
  border-color: var(--border-focus);
}

.blog-modal-category {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

.blog-modal-title {
  font-family: var(--font-display);
  font-size: 1.85rem;
  line-height: 1.3;
  color: var(--text-main);
  margin-bottom: 16px;
  font-weight: 600;
}

.blog-modal-meta-bar {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.84rem;
  color: var(--text-light);
  flex-wrap: wrap;
}

.blog-modal-body {
  padding: 36px 48px 48px;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.blog-modal-body p {
  margin-bottom: 20px;
}

.blog-modal-body h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--text-main);
  margin: 32px 0 14px;
  font-weight: 600;
}

.blog-modal-body blockquote {
  border-left: 3px solid var(--primary);
  padding: 16px 24px;
  margin: 28px 0;
  background: var(--surface-soft);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  color: var(--text-main);
}

.blog-modal-footer {
  padding: 24px 48px 40px;
  background: var(--surface-soft);
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
}

/* ==========================================================================
   Tabela Comparativa de Mercado (Quem Somos)
   ========================================================================== */
.market-table-card {
  background: #FFFFFF;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-top: 36px;
}

.market-table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.market-compare-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 680px;
}

.market-compare-table th,
.market-compare-table td {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.9rem;
}

.market-compare-table th {
  background: var(--surface-soft);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.market-compare-table th.col-highlight {
  background: rgba(226, 103, 21, 0.08);
  color: var(--primary);
  border-left: 2px solid var(--primary);
  border-right: 2px solid var(--primary);
}

.market-compare-table td.col-highlight {
  background: rgba(226, 103, 21, 0.02);
  border-left: 2px solid rgba(226, 103, 21, 0.3);
  border-right: 2px solid rgba(226, 103, 21, 0.3);
  font-weight: 600;
  color: var(--text-main);
}

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

.status-check {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #15803d;
  font-weight: 600;
  font-size: 0.88rem;
}

.status-cross {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #b91c1c;
  font-size: 0.88rem;
}

.status-warning {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #b45309;
  font-size: 0.88rem;
}

/* ==========================================================================
   Diagnóstico de Planos (Planos)
   ========================================================================== */
.diagnostic-box-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.diagnostic-item {
  background: #FFFFFF;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.diagnostic-item:hover {
  transform: translateY(-4px);
  border-color: var(--border-focus);
}

.diagnostic-target {
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  margin-bottom: 10px;
}

.diagnostic-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 12px;
}

.diagnostic-desc {
  font-size: 0.86rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 20px;
  flex-grow: 1;
}

.diagnostic-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  background: var(--surface-soft);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-main);
  border: 1px solid var(--border-soft);
}

/* ==========================================================================
   Galeria de Especificações Técnicas de Formatos (Portfolio)
   ========================================================================== */
.format-specs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 32px;
}

.format-spec-card {
  background: #FFFFFF;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.format-spec-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
}

.format-ratio-badge {
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--primary);
  background: rgba(226, 103, 21, 0.08);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  width: fit-content;
  margin-bottom: 12px;
}

.format-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 6px;
}

.format-dimens {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.format-details-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ==========================================================================
   Creative Stack & Protocolo de Revisões (Servicos)
   ========================================================================== */
.creative-stack-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.stack-card {
  background: #FFFFFF;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
}

.stack-icon-box {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(226, 103, 21, 0.08);
  border: 1px solid rgba(226, 103, 21, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 18px;
}

.stack-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 10px;
}

.stack-desc {
  font-size: 0.86rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .diagnostic-box-grid,
  .format-specs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .creative-stack-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .diagnostic-box-grid,
  .format-specs-grid,
  .creative-stack-grid {
    grid-template-columns: 1fr;
  }
  .blog-modal-header,
  .blog-modal-body,
  .blog-modal-footer {
    padding-left: 24px;
    padding-right: 24px;
  }
  .blog-modal-title {
    font-size: 1.4rem;
  }
}
