/* ========================================
   PESSOA PÚBLICA — DESIGN SYSTEM
   ======================================== */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400;1,700&family=Inter:wght@300;400;500;600;700&display=swap');

/* --- CSS Variables --- */
:root {
  --color-dark: #0f0f1a;
  --color-navy: #1a1a2e;
  --color-navy-light: #252545;
  --color-orange: #f38000;
  --color-orange-dark: #d97000;
  --color-orange-light: rgba(243, 128, 0, 0.15);
  --color-white: #ffffff;
  --color-cream: #faf8f5;
  --color-gray-light: #f5f5f5;
  --color-text-dark: #1a1a2e;
  --color-text-mid: #505050;
  --color-text-light: #787878;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, sans-serif;
  --container-max: 1200px;
  --container-pad: clamp(1rem, 5vw, 2rem);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
  --shadow-orange: 0 8px 32px rgba(243, 128, 0, 0.25);
  --transition: all 0.25s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background: var(--color-white);
  color: var(--color-text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

button { border: none; background: none; cursor: pointer; font-family: inherit; }

ul { list-style: none; }

/* --- Layout Utilities --- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.section-pad { padding: clamp(4rem, 8vw, 6rem) 0; }

/* --- Typography --- */
.label-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-orange);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-text-dark);
}

.section-title .highlight {
  color: var(--color-orange);
}

.section-title.light { color: var(--color-white); }

.section-subtitle {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--color-text-light);
  line-height: 1.7;
  max-width: 600px;
}

/* ========================================
   NAVIGATION
   ======================================== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
}

#navbar.scrolled {
  background: rgba(15, 15, 26, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.75rem 0;
  box-shadow: 0 1px 0 rgba(255,255,255,0.05), 0 4px 24px rgba(0,0,0,0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav-logo {
  font-family: var(--font-sans);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--color-white);
  white-space: nowrap;
}

.nav-logo span {
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--color-orange);
  text-underline-offset: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  padding: 0.4rem 0.875rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--color-white);
  background: rgba(255,255,255,0.07);
}

.nav-actions { display: flex; align-items: center; gap: 0.75rem; }

.btn-nav-cta {
  background: var(--color-orange);
  color: var(--color-white);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}

.btn-nav-cta:hover {
  background: var(--color-orange-dark);
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  padding: 6px;
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: var(--transition);
}

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

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 999;
  background: var(--color-navy);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 2rem;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-white);
  padding: 0.75rem 2rem;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.mobile-menu a:hover {
  color: var(--color-orange);
  background: rgba(255,255,255,0.05);
}

.mobile-menu .btn-nav-cta {
  font-size: 1rem;
  padding: 0.875rem 2rem;
  margin-top: 1rem;
  border-radius: var(--radius-md);
}

.mobile-close {
  position: absolute;
  top: 1.25rem; right: 1.5rem;
  font-size: 2rem;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  line-height: 1;
  transition: var(--transition);
}

.mobile-close:hover { color: var(--color-white); }

/* ========================================
   HERO SECTION
   ======================================== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-overlay-1 {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(15,15,26,0.95) 35%, rgba(15,15,26,0.65) 65%, rgba(15,15,26,0.35) 100%);
}

.hero-overlay-2 {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,15,26,0.7) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: 7rem;
  padding-bottom: 4rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(243, 128, 0, 0.18);
  border: 1px solid rgba(243, 128, 0, 0.4);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  margin-bottom: 1.5rem;
}

.badge-dot {
  width: 8px; height: 8px;
  background: var(--color-orange);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.hero-badge span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-orange);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.1;
  max-width: 660px;
  margin-bottom: 1.5rem;
}

.hero-title .highlight { color: var(--color-orange); }

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--color-orange);
  color: var(--color-white);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  box-shadow: var(--shadow-orange);
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--color-orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(243,128,0,0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--color-white);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  padding: 1rem 2rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.3);
  transition: var(--transition);
  white-space: nowrap;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.hero-stat { display: flex; flex-direction: column; gap: 0.2rem; }

.stat-value {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-orange);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(255,255,255,0.4);
  font-size: 1.5rem;
  animation: bounce 2s ease-in-out infinite;
  cursor: pointer;
  transition: var(--transition);
}
.hero-scroll:hover { color: rgba(255,255,255,0.7); }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ========================================
   PROBLEMA SECTION
   ======================================== */
#problema {
  background: var(--color-dark);
  padding: clamp(4rem, 8vw, 6rem) 0;
}

#problema .section-header { text-align: center; margin-bottom: 4rem; }
#problema .section-title { color: var(--color-white); }
#problema .section-subtitle { color: rgba(255,255,255,0.55); margin: 0 auto; }

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.problem-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  transition: var(--transition);
}

.problem-card:hover {
  border-color: rgba(243,128,0,0.35);
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}

.problem-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(243, 128, 0, 0.15);
  border-radius: 12px;
  font-size: 1.375rem;
  color: var(--color-orange);
  margin-bottom: 1.25rem;
}

.problem-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 0.75rem;
}

.problem-card p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

/* Alert Banner */
.problem-alert {
  background: linear-gradient(135deg, rgba(243,128,0,0.2) 0%, rgba(243,128,0,0.07) 100%);
  border: 1px solid rgba(243,128,0,0.3);
  border-radius: var(--radius-xl);
  padding: 2.5rem 3rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.alert-icon {
  width: 72px; height: 72px;
  min-width: 72px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(243,128,0,0.2);
  border-radius: 50%;
  font-size: 2rem;
  color: var(--color-orange);
}

.problem-alert h3 {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 0.6rem;
}

.problem-alert p {
  color: rgba(255,255,255,0.75);
  font-size: 1.0625rem;
  line-height: 1.65;
}

.problem-alert p strong { color: var(--color-orange); }

/* ========================================
   SOLUÇÃO SECTION
   ======================================== */
#solucao {
  background: var(--color-white);
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.solucao-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.solucao-content .label-tag { color: var(--color-orange); }

.solucao-content .section-title { margin-bottom: 1.5rem; }

.solucao-content .section-title .highlight {
  color: var(--color-orange);
  font-style: italic;
}

.solucao-content > p {
  color: var(--color-text-mid);
  font-size: 1.0625rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.solucao-content > p:last-of-type { color: var(--color-text-light); }

.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.feature-icon {
  width: 34px; height: 34px;
  min-width: 34px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(243,128,0,0.1);
  border-radius: 8px;
  font-size: 1.05rem;
  color: var(--color-orange);
}

.feature-item span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-mid);
}

/* Laptop Mockup */
.solucao-visual { position: relative; }

.mockup-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid #e8e8e8;
  box-shadow: var(--shadow-lg);
}

.mockup-wrapper::before {
  content: '';
  position: absolute;
  inset: -2rem;
  background: linear-gradient(135deg, rgba(243,128,0,0.12) 0%, transparent 70%);
  z-index: -1;
  border-radius: var(--radius-xl);
}

.mockup-wrapper img { width: 100%; height: auto; }

.mockup-badge {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  background: var(--color-orange);
  color: var(--color-white);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.5rem;
  box-shadow: var(--shadow-orange);
  text-align: center;
  line-height: 1.3;
}

.mockup-badge .big { font-size: 2rem; font-weight: 800; display: block; }
.mockup-badge .small { font-size: 0.8rem; }

/* ========================================
   COMO FUNCIONA SECTION
   ======================================== */
#como-funciona {
  background: var(--color-cream);
  padding: clamp(4rem, 8vw, 6rem) 0;
}

#como-funciona .section-header { text-align: center; margin-bottom: 4.5rem; }
#como-funciona .section-subtitle { margin: 0 auto; }

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

.steps-grid::before {
  content: '';
  position: absolute;
  top: 2.5rem;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(243,128,0,0.25), transparent);
  pointer-events: none;
}

.step-card { display: flex; flex-direction: column; }

.step-icon {
  position: relative;
  width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center;
  background: var(--color-orange);
  border-radius: 18px;
  font-size: 1.5rem;
  color: var(--color-white);
  margin: 0 auto 1.5rem;
  box-shadow: 0 6px 24px rgba(243,128,0,0.3);
}

.step-number {
  position: absolute;
  top: -10px; right: -10px;
  width: 26px; height: 26px;
  background: var(--color-navy);
  color: var(--color-white);
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

.step-body {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  border: 1px solid #efefef;
  flex: 1;
}

.step-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.step-body p {
  font-size: 0.875rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

.steps-cta {
  margin-top: 3rem;
  background: var(--color-navy);
  border-radius: var(--radius-xl);
  padding: 2.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.steps-cta h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 0.35rem;
}

.steps-cta p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9375rem;
}

/* ========================================
   BENEFÍCIOS SECTION
   ======================================== */
#beneficios {
  background: var(--color-white);
  padding: clamp(4rem, 8vw, 6rem) 0;
}

#beneficios .section-header { text-align: center; margin-bottom: 4rem; }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.benefit-card {
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid #eee;
  transition: var(--transition);
}

.benefit-card:hover:not(.featured) {
  border-color: rgba(243,128,0,0.25);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.benefit-card.featured {
  background: var(--color-orange);
  border-color: var(--color-orange);
}

.benefit-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  font-size: 1.375rem;
  margin-bottom: 1.25rem;
  background: rgba(243,128,0,0.1);
  color: var(--color-orange);
}

.benefit-card.featured .benefit-icon {
  background: rgba(255,255,255,0.2);
  color: var(--color-white);
}

.benefit-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 0.625rem;
}

.benefit-card.featured h3 { color: var(--color-white); }

.benefit-card p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.65;
}

.benefit-card.featured p { color: rgba(255,255,255,0.85); }

/* Stats Row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}

.stat-box {
  background: var(--color-cream);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  border: 1px solid #eee;
  text-align: center;
}

.stat-box .num {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-orange);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-box .desc { font-size: 0.85rem; color: var(--color-text-light); }

/* ========================================
   DEPOIMENTOS SECTION
   ======================================== */
#depoimentos {
  background: var(--color-cream);
  padding: clamp(4rem, 8vw, 6rem) 0;
}

#depoimentos .section-header { text-align: center; margin-bottom: 4rem; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  border: 1px solid #efefef;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  border-color: rgba(243,128,0,0.2);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.stars { display: flex; gap: 3px; margin-bottom: 1.25rem; color: var(--color-orange); font-size: 1.0625rem; }

.testimonial-text {
  font-size: 0.9375rem;
  color: var(--color-text-mid);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
  margin-bottom: 1.5rem;
}

.testimonial-footer {
  border-top: 1px solid #f0f0f0;
  padding-top: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 1rem;
}

.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: #e0e0e0;
}

.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }

.testimonial-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-text-dark);
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--color-text-light);
}

.testimonial-result {
  background: rgba(243,128,0,0.1);
  border-radius: var(--radius-sm);
  padding: 0.45rem 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-orange);
}

/* Social Proof Bar */
.proof-bar {
  background: var(--color-navy);
  border-radius: var(--radius-xl);
  padding: 2.5rem 3rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.proof-item { text-align: center; }

.proof-item .proof-icon {
  font-size: 1.25rem;
  color: var(--color-orange);
  margin-bottom: 0.5rem;
}

.proof-item .proof-num {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.proof-item .proof-desc { font-size: 0.8rem; color: rgba(255,255,255,0.5); }

/* ========================================
   COMPARAÇÃO SECTION
   ======================================== */
#comparacao {
  background: var(--color-white);
  padding: clamp(4rem, 8vw, 6rem) 0;
}

#comparacao .section-header { text-align: center; margin-bottom: 4rem; }

.comparison-table {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid #ebebeb;
}

.comparison-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--color-navy);
}

.comparison-header-cell {
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.comparison-header-cell:first-child {
  border-right: 1px solid rgba(255,255,255,0.08);
}

.col-icon {
  width: 30px; height: 30px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.875rem;
}

.col-icon.bad { background: rgba(239, 68, 68, 0.2); color: #f87171; }
.col-icon.good { background: rgba(243,128,0,0.2); color: var(--color-orange); }

.comparison-header-cell span {
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--color-white);
}

.comparison-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.comparison-row:nth-child(even) .comparison-cell { background: var(--color-cream); }
.comparison-row:not(:last-child) { border-bottom: 1px solid #ebebeb; }

.comparison-cell {
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  background: var(--color-white);
  font-size: 0.9375rem;
}

.comparison-cell:first-child { border-right: 1px solid #ebebeb; }

.cell-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}

.cell-icon.bad { color: #f87171; }
.cell-icon.good { color: var(--color-orange); }

.comparison-cell.bad-col span { color: var(--color-text-light); }
.comparison-cell.good-col span { color: var(--color-text-mid); font-weight: 500; }

.comparison-cta { text-align: center; margin-top: 2.5rem; }

/* ========================================
   OFERTA SECTION
   ======================================== */
#oferta {
  background: var(--color-dark);
  padding: clamp(4rem, 8vw, 6rem) 0;
}

#oferta .section-header { text-align: center; margin-bottom: 4rem; }
#oferta .section-title { color: var(--color-white); }
#oferta .section-subtitle { color: rgba(255,255,255,0.5); margin: 0 auto; }

.oferta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

/* Pricing Card */
.pricing-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
}

.pricing-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.plan-name {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 0.25rem;
}

.plan-billing {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}

.badge-popular {
  background: var(--color-orange);
  color: var(--color-white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-value {
  margin-bottom: 2rem;
}

.old-price {
  font-size: 1rem;
  color: rgba(255,255,255,0.4);
  text-decoration: line-through;
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.discount-badge {
  color: var(--color-orange);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
}

.current-price {
  display: flex;
  align-items: flex-end;
  gap: 0.4rem;
}

.price-from { font-size: 0.925rem; color: rgba(255,255,255,0.5); margin-bottom: 4px; }

.price-amount {
  font-size: 3.25rem;
  font-weight: 800;
  color: var(--color-white);
  line-height: 1;
}

.price-period { font-size: 1rem; color: rgba(255,255,255,0.4); margin-bottom: 6px; }
.price-note { font-size: 0.75rem; color: rgba(255,255,255,0.3); margin-top: 0.5rem; }

.features-list { margin-bottom: 2rem; display: flex; flex-direction: column; gap: 0.75rem; }

.features-list li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
}

.check-icon {
  width: 20px; height: 20px;
  min-width: 20px;
  display: flex; align-items: center; justify-content: center;
  background: var(--color-orange);
  border-radius: 50%;
  font-size: 0.65rem;
  color: var(--color-white);
}

.guarantee-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.guarantee-icon {
  width: 46px; height: 46px;
  min-width: 46px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(34, 197, 94, 0.15);
  border-radius: 12px;
  font-size: 1.375rem;
  color: #4ade80;
}

.guarantee-box h4 { font-size: 0.9rem; font-weight: 600; color: var(--color-white); margin-bottom: 0.2rem; }
.guarantee-box p { font-size: 0.8rem; color: rgba(255,255,255,0.45); line-height: 1.5; }

/* Form Card */
.form-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
}

.form-card h3 {
  font-family: var(--font-serif);
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 0.35rem;
}

.form-card p { font-size: 0.875rem; color: var(--color-text-light); margin-bottom: 2rem; }

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-mid);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
  font-size: 0.9rem;
  font-family: var(--font-sans);
  color: var(--color-text-mid);
  background: var(--color-white);
  transition: border-color 0.2s;
  outline: none;
  appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: #bbb; }

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--color-orange);
  box-shadow: 0 0 0 3px rgba(243,128,0,0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.5;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23787878'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 20px;
  padding-right: 2.5rem;
  cursor: pointer;
}

.btn-submit {
  width: 100%;
  background: var(--color-orange);
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 700;
  padding: 1.1rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-orange);
}

.btn-submit:hover {
  background: var(--color-orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(243,128,0,0.35);
}

.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--color-text-light);
  margin-top: 0.75rem;
}

/* ========================================
   FAQ SECTION
   ======================================== */
#faq {
  background: var(--color-cream);
  padding: clamp(4rem, 8vw, 6rem) 0;
}

/* ========================================
   CONTATO SECTION
   ======================================== */
#contato {
  background: var(--color-cream);
  padding: clamp(6rem, 10vw, 7.5rem) 0 clamp(4.5rem, 8vw, 6rem);
}

#contato .section-header {
  text-align: center;
  margin-bottom: 3.25rem;
}

#contato .section-subtitle {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.contact-wrap {
  display: flex;
  justify-content: center;
}

#contato .form-card {
  width: 100%;
  max-width: 720px;
}

#faq .section-header { text-align: center; margin-bottom: 4rem; }

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px solid #ececec;
  overflow: hidden;
  transition: border-color 0.25s;
}

.faq-item.open { border-color: rgba(243,128,0,0.3); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  text-align: left;
  cursor: pointer;
  background: var(--color-white);
  transition: background 0.2s;
  gap: 1rem;
}

.faq-question:hover { background: #fafafa; }

.faq-question span {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-text-dark);
  line-height: 1.4;
}

.faq-toggle {
  width: 28px; height: 28px;
  min-width: 28px;
  display: flex; align-items: center; justify-content: center;
  background: #f0f0f0;
  border-radius: 50%;
  font-size: 1.1rem;
  color: var(--color-text-mid);
  transition: var(--transition);
  font-weight: 300;
  line-height: 1;
}

.faq-item.open .faq-toggle {
  background: var(--color-orange);
  color: var(--color-white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 1.5rem;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 1.5rem 1.25rem;
}

.faq-answer p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.75;
  border-top: 1px solid #f0f0f0;
  padding-top: 1rem;
}

/* ========================================
   CTA FINAL SECTION
   ======================================== */
#cta-final {
  position: relative;
  padding: clamp(5rem, 10vw, 8rem) 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.25);
}

.cta-overlay {
  position: absolute; inset: 0;
  background: rgba(15, 15, 26, 0.85);
  z-index: 1;
}

.cta-gradient {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(243,128,0,0.08) 0%, transparent 70%);
  z-index: 2;
}

.cta-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(243,128,0,0.18);
  border: 1px solid rgba(243,128,0,0.4);
  border-radius: 100px;
  padding: 0.45rem 1rem;
  margin-bottom: 2rem;
}

.cta-badge span { font-size: 0.8rem; font-weight: 600; color: var(--color-orange); }

.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.cta-title .highlight { color: var(--color-orange); }

.cta-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 3rem;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.cta-actions .btn-primary {
  font-size: 1.125rem;
  padding: 1.1rem 2.5rem;
  box-shadow: 0 12px 40px rgba(243,128,0,0.4);
}

.cta-actions .btn-secondary {
  font-size: 1.125rem;
  padding: 1.1rem 2.5rem;
}

.cta-trust {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
}

.trust-item i { font-size: 1rem; }
.trust-item i.green { color: #4ade80; }
.trust-item i.orange { color: var(--color-orange); }

/* ========================================
   FOOTER
   ======================================== */
footer {
  background: var(--color-navy);
  color: rgba(255,255,255,0.55);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .footer-logo {
  font-family: var(--font-sans);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--color-white);
  margin-bottom: 1.25rem;
}

.footer-brand .footer-logo span {
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--color-orange);
  text-underline-offset: 3px;
}

.footer-desc {
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 320px;
}

.footer-socials { display: flex; gap: 0.6rem; }

.social-link {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

.social-link:hover {
  background: var(--color-orange);
  color: var(--color-white);
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-white);
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a,
.footer-links button {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-sans);
  background: none;
  border: none;
  padding: 0;
}

.footer-links a:hover,
.footer-links button:hover { color: var(--color-orange); }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  margin-bottom: 0.625rem;
}

.contact-item i { color: var(--color-orange); margin-top: 0.1rem; font-size: 0.95rem; }
.contact-item a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.contact-item a:hover { color: var(--color-orange); }

.hours-box {
  background: rgba(243,128,0,0.1);
  border: 1px solid rgba(243,128,0,0.2);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  margin-top: 1rem;
}

.hours-box h5 { font-size: 0.875rem; font-weight: 600; color: var(--color-white); margin-bottom: 0.35rem; }
.hours-box p { font-size: 0.8rem; line-height: 1.6; }

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p { font-size: 0.8125rem; }

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}

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

/* ========================================
   ANIMATIONS / SCROLL REVEAL
   ======================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .solucao-grid { grid-template-columns: 1fr; gap: 3rem; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .oferta-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .btn-nav-cta.desktop { display: none; }
  .hamburger { display: flex; }

  .hero-title { font-size: clamp(2rem, 6vw, 3rem); }
  .problem-grid { grid-template-columns: 1fr; }
  .problem-alert { flex-direction: column; text-align: center; padding: 2rem; }
  .alert-icon { margin: 0 auto; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-cta { flex-direction: column; text-align: center; padding: 2rem; }
  .benefits-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .proof-bar { grid-template-columns: repeat(2, 1fr); }
  .comparison-cell { padding: 0.875rem 1rem; font-size: 0.8375rem; }
  .comparison-header-cell { padding: 1rem; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-trust { flex-direction: column; align-items: center; gap: 1rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .mockup-badge { position: static; margin-top: 1rem; display: inline-flex; gap: 0.5rem; align-items: center; border-radius: var(--radius-sm); }
  .mockup-badge .big { font-size: 1.5rem; }
  .solucao-visual { text-align: center; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-stats { gap: 1.5rem; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .proof-bar { grid-template-columns: 1fr 1fr; }
}
