:root {
  --primary: #2ecc71;
  --primary-dark: #27ae60;
  --primary-light: #a8e6cf;
  --dark: #0a1628;
  --dark2: #0f1f36;
  --dark3: #142a47;
  --text: #1a1a2e;
  --text-light: #6b7280;
  --text-white: #f0f4f8;
  --bg-light: #f8fafc;
  --bg-section: #ffffff;
  --accent: #f59e0b;
  --accent-dark: #d97706;
  --danger: #ef4444;
  --success: #10b981;
  --border: #e5e7eb;
  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --container: 1200px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

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

.section {
  padding: 100px 0;
}

.section-dark {
  background: var(--dark);
  color: var(--text-white);
}

.section-light {
  background: var(--bg-section);
}

.section-gray {
  background: var(--bg-light);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(46, 204, 113, 0.1);
  color: var(--primary-dark);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-dark .section-tag {
  background: rgba(46, 204, 113, 0.15);
  color: var(--primary);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--text);
}

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

.section-subtitle {
  font-size: 1.15rem;
  color: var(--text-light);
  max-width: 720px;
  line-height: 1.7;
}

.section-dark .section-subtitle {
  color: rgba(255,255,255,0.7);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .section-subtitle {
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  font-family: var(--font);
  line-height: 1.2;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: 0 4px 20px rgba(46, 204, 113, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(46, 204, 113, 0.45);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: #fff;
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45);
}

.btn-lg {
  padding: 20px 44px;
  font-size: 1.15rem;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.9rem;
}

.btn .icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.btn-lg .icon {
  width: 24px;
  height: 24px;
}

/* === HEADER === */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 84px;
  display: flex;
  align-items: center;
  background: transparent;
  transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              background 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Blur no pseudo-elemento: backdrop-filter no proprio .header viraria
   containing block dos filhos position:fixed (menu offcanvas e overlay) */
.header::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  opacity: 0;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.header.scrolled::before {
  opacity: 1;
}

.header.scrolled {
  height: 68px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 1px 3px rgba(0,0,0,0.02), 0 4px 24px rgba(0,0,0,0.04);
}

/* Header Inner Layout */
.header-inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 100%;
}

/* Header Left - Logo */
.header-left {
  display: flex;
  align-items: center;
  justify-self: start;
}

.header-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  padding: 4px 0;
}

.header-logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.header-logo:hover .header-logo-icon {
  transform: scale(1.06);
  box-shadow: 0 4px 16px rgba(46, 204, 113, 0.25);
}

.header-logo-icon svg {
  color: #fff;
}

.header-logo-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.3px;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.header.scrolled .header-logo-text {
  color: var(--text);
}

/* Header Center - Navigation */
.header-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.header-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.25s ease;
  white-space: nowrap;
}

.header-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 18px;
  right: 18px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-link:hover {
  color: #fff;
}

.header-link:hover::after {
  transform: scaleX(1);
}

.header.scrolled .header-link {
  color: rgba(26, 26, 46, 0.7);
}

.header.scrolled .header-link:hover {
  color: var(--primary-dark);
}

.header.scrolled .header-link::after {
  background: var(--primary);
}

/* Header Right - CTA */
.header-right {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 12px;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 26px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: var(--font);
  color: #fff;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  box-shadow: 0 2px 16px rgba(37, 211, 102, 0.25);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.35);
  background: linear-gradient(135deg, #22c35e 0%, #0f8a7a 100%);
}

.header-cta:active {
  transform: translateY(0);
}

.header-cta svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Mobile Toggle */
.header-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  background: none;
  border: none;
  z-index: 1101;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  transition: background 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.header-toggle:hover {
  background: rgba(255, 255, 255, 0.07);
}

.header.scrolled .header-toggle:hover {
  background: rgba(0, 0, 0, 0.04);
}

.header-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 4px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.header-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.header-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.header.scrolled .header-toggle span {
  background: var(--text);
}

/* Mobile-only elements (hidden on desktop) */
.header-cta-mobile {
  display: none;
}

.header-overlay {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0;
  pointer-events: none;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--dark);
  overflow: hidden;
  padding-top: 90px;
}

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

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(46, 204, 113, 0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 20%, rgba(46, 204, 113, 0.08) 0%, transparent 50%),
              radial-gradient(ellipse at 50% 80%, rgba(245, 158, 11, 0.05) 0%, transparent 40%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--primary);
  border-radius: 50%;
  opacity: 0.3;
  animation: floatParticle 20s infinite linear;
}

@keyframes floatParticle {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 0.3; }
  90% { opacity: 0.3; }
  100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
}

.hero-text {
  max-width: 640px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(46, 204, 113, 0.15);
  border: 1px solid rgba(46, 204, 113, 0.25);
  color: var(--primary);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 24px;
}

.hero-bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
}

.hero-bullets li svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
  flex-shrink: 0;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 40px;
  width: 100%;
  max-width: 480px;
}

.hero-card-title {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 24px;
  text-align: center;
}

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

.hero-stat {
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
}

.hero-stat-value {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 4px;
}

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

.hero-stat-icon {
  width: 36px;
  height: 36px;
  margin: 0 auto 8px;
  color: var(--primary);
}

/* Index nav */
.index-nav {
  position: sticky;
  top: 80px;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.index-nav ul {
  display: flex;
  gap: 8px;
  white-space: nowrap;
  padding: 4px 0;
}

.index-nav a {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-light);
  transition: var(--transition);
  border: 1px solid transparent;
}

.index-nav a:hover,
.index-nav a.active {
  background: rgba(46, 204, 113, 0.1);
  color: var(--primary-dark);
  border-color: rgba(46, 204, 113, 0.2);
}

/* Breadcrumb */
.breadcrumb {
  padding: 16px 0;
  background: var(--bg-light);
  border-bottom: 1px solid var(--border);
}

.breadcrumb ul {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-light);
}

.breadcrumb li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb li + li::before {
  content: '/';
  color: var(--text-light);
  opacity: 0.4;
}

.breadcrumb a {
  color: var(--text-light);
  transition: var(--transition);
}

.breadcrumb a:hover {
  color: var(--primary);
}

/* What is section */
.what-is-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.what-is-text p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.what-is-image {
  position: relative;
}

.what-is-card {
  background: linear-gradient(135deg, rgba(46,204,113,0.05), rgba(46,204,113,0.02));
  border: 1px solid rgba(46,204,113,0.15);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.what-is-card ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.what-is-card li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.5;
}

.what-is-card li svg {
  width: 22px;
  height: 22px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

/* How it works */
.how-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
  position: relative;
}

.how-flow::before {
  content: '';
  position: absolute;
  top: 48px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--primary));
  opacity: 0.3;
}

.how-step {
  text-align: center;
  position: relative;
}

.how-step-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(46,204,113,0.15), rgba(46,204,113,0.05));
  border: 2px solid rgba(46,204,113,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: var(--transition);
}

.how-step-icon svg {
  width: 36px;
  height: 36px;
  color: var(--primary);
}

.how-step:hover .how-step-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, rgba(46,204,113,0.25), rgba(46,204,113,0.1));
  border-color: var(--primary);
}

.how-step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.section-dark .how-step h3 {
  color: var(--text-white);
}

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

.section-dark .how-step p {
  color: rgba(255,255,255,0.65);
}

.how-step-number {
  position: absolute;
  top: -8px;
  right: 50%;
  transform: translateX(50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Compensation */
.compensation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.comp-card {
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}

.section-dark .comp-card {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
}

.comp-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(46,204,113,0.3);
}

.comp-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(46,204,113,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.comp-card-icon svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
}

.comp-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.section-dark .comp-card h3 {
  color: var(--text-white);
}

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

.section-dark .comp-card p {
  color: rgba(255,255,255,0.65);
}

/* Audience */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

.audience-item {
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
  cursor: default;
}

.audience-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(46,204,113,0.3);
}

.audience-item svg {
  width: 40px;
  height: 40px;
  color: var(--primary);
  margin-bottom: 12px;
}

.audience-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}

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

.benefit-card {
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  opacity: 0;
  transition: var(--transition);
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(46,204,113,0.2);
}

.benefit-card:hover::before {
  opacity: 1;
}

.benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(46,204,113,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.benefit-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.benefit-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

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

/* Comparison Table */
.comparison-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 600px;
}

.comparison-table th,
.comparison-table td {
  padding: 16px 24px;
  text-align: left;
  font-size: 0.95rem;
}

.comparison-table thead th {
  font-weight: 700;
  font-size: 1.05rem;
}

.comparison-table thead th:first-child {
  border-radius: var(--radius) 0 0 0;
}

.comparison-table thead th:last-child {
  border-radius: 0 var(--radius) 0 0;
}

.comparison-table th:first-child {
  background: var(--dark);
  color: #fff;
}

.comparison-table th:nth-child(2) {
  background: #fee2e2;
  color: var(--danger);
}

.comparison-table th:last-child {
  background: rgba(46,204,113,0.15);
  color: var(--primary-dark);
}

.comparison-table td:first-child {
  font-weight: 600;
  color: var(--text);
  background: var(--bg-light);
}

.comparison-table td:nth-child(2) {
  color: var(--text);
  background: #fff;
}

.comparison-table td:last-child {
  color: var(--text);
  background: rgba(46,204,113,0.04);
}

.comparison-table tbody tr {
  transition: var(--transition);
}

.comparison-table tbody tr:hover td {
  background: var(--bg-light) !important;
}

.comparison-table tbody tr:last-child td:first-child {
  border-radius: 0 0 0 var(--radius);
}

.comparison-table tbody tr:last-child td:last-child {
  border-radius: 0 0 var(--radius) 0;
}

.comparison-table .check {
  color: var(--success);
  font-weight: 700;
}

.comparison-table .cross {
  color: var(--danger);
}

/* Myths */
.myths-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.myth-item {
  display: flex;
  gap: 16px;
  padding: 20px 24px;
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}

.myth-item:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(46,204,113,0.2);
}

.myth-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
}

.myth-icon.myth {
  background: rgba(239,68,68,0.1);
  color: var(--danger);
}

.myth-icon.truth {
  background: rgba(46,204,113,0.1);
  color: var(--primary);
}

.myth-content h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text);
}

.myth-content p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--bg-section);
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(46,204,113,0.2);
}

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

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

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--primary);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* CTA Sections */
.cta-section {
  background: linear-gradient(135deg, var(--dark), var(--dark2), var(--dark3));
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(46,204,113,0.12) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 50%, rgba(245,158,11,0.06) 0%, transparent 50%);
}

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

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
  line-height: 1.7;
}

.cta-content .btn {
  font-size: 1.1rem;
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.cta-features span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}

.cta-features svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
}

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

.modal-card {
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  position: relative;
}

.modal-card.featured {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px var(--primary), var(--shadow-lg);
  transform: scale(1.03);
}

.modal-card.featured::before {
  content: 'DESTAQUE';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
  letter-spacing: 1px;
}

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

.modal-card.featured:hover {
  transform: translateY(-4px) scale(1.03);
}

.modal-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(46,204,113,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.modal-card-icon svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
}

.modal-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

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

/* Legislation */
.legislation-box {
  background: linear-gradient(135deg, rgba(46,204,113,0.05), rgba(46,204,113,0.02));
  border: 1px solid rgba(46,204,113,0.2);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.legislation-box p {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

.legislation-box p:last-child {
  margin-bottom: 0;
}

/* Footer */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 30px;
}

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

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 320px;
}

.footer h4 {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
}

/* Floating WhatsApp */
.float-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  transition: var(--transition);
  animation: pulseWhatsApp 2s infinite;
}

.float-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 36px rgba(37, 211, 102, 0.5);
}

.float-whatsapp svg {
  width: 28px;
  height: 28px;
  color: #fff;
}

.float-whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: #fff;
  color: var(--text);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.float-whatsapp:hover .float-whatsapp-tooltip {
  opacity: 1;
}

@keyframes pulseWhatsApp {
  0%, 100% { box-shadow: 0 4px 24px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 36px rgba(37, 211, 102, 0.7); }
}

/* Back to top */
.back-top {
  position: fixed;
  bottom: 96px;
  right: 24px;
  z-index: 999;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
}

.back-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-top:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-4px);
}

.back-top svg {
  width: 20px;
  height: 20px;
  color: #fff;
}

/* Section divider */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 0;
}

/* Number highlight */
.number-highlight {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Dark section adjustments */
.section-dark .comparison-table th:first-child {
  background: var(--dark3);
}

.section-dark .comparison-table td:first-child {
  background: rgba(255,255,255,0.05);
  color: var(--text-white);
}

.section-dark .comparison-table td:nth-child(2) {
  background: rgba(255,255,255,0.03);
  color: var(--text-white);
}

.section-dark .comparison-table td:last-child {
  background: rgba(46,204,113,0.08);
  color: var(--text-white);
}

.section-dark .comparison-table tbody tr:hover td {
  background: rgba(255,255,255,0.08) !important;
}

.section-dark .myth-item {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
}

.section-dark .myth-content h4 {
  color: var(--text-white);
}

.section-dark .myth-content p {
  color: rgba(255,255,255,0.65);
}

.section-dark .modal-card {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
}

.section-dark .modal-card h3 {
  color: var(--text-white);
}

.section-dark .modal-card p {
  color: rgba(255,255,255,0.65);
}

/* Gradient overlay helper */
.gradient-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* Flex helpers */
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

/* CTA Mid-Section */
.cta-mid {
  text-align: center;
  padding: 48px 0;
}

.cta-mid h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.cta-mid p {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 24px;
}

/* WhatsApp widget */
.whatsapp-widget {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.whatsapp-widget h3 {
  font-size: 1.2rem;
  font-weight: 700;
}

.whatsapp-widget p {
  font-size: 0.95rem;
  opacity: 0.9;
}

/* Law simplified box */
.law-simplified {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.law-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.law-point svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.law-point p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}
