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

:root {
  --primary-red: #FF3333;
  --accent-purple: #8B5CF6;
  --accent-dark-red: #8B0000;
  --dark-bg: #0a0a0a;
  --dark-secondary: #1a1a1a;
  --dark-tertiary: #2a2a2a;
  --text-primary: #ffffff;
  --text-secondary: #b0b0b0;
  --text-muted: #808080;
  --gradient-red: linear-gradient(135deg, #FF3333 0%, #cc0000 100%);
  --gradient-hero: linear-gradient(135deg, #1a0a2e 0%, #16213e 50%, #0a0a0a 100%);
  --gradient-accent: linear-gradient(135deg, #FF3333 0%, #8B0000 50%, #8B5CF6 100%);
  --gradient-glow: radial-gradient(circle at 50% 50%, rgba(255, 51, 51, 0.15) 0%, rgba(139, 92, 246, 0.1) 50%, transparent 100%);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.3);
  --shadow-red: 0 8px 32px rgba(255, 51, 51, 0.3);
  --shadow-glow: 0 0 40px rgba(255, 51, 51, 0.4), 0 0 80px rgba(139, 92, 246, 0.2);
}

/* Tema Claro */
body.light-theme {
  --primary-red: #D32F2F;
  --accent-purple: #7E57C2;
  --accent-dark-red: #B71C1C;
  --dark-bg: #FFFFFF;
  --dark-secondary: #F5F5F5;
  --dark-tertiary: #EEEEEE;
  --text-primary: #2C2C2C;
  --text-secondary: #404040;
  --text-muted: #757575;
  --gradient-red: linear-gradient(135deg, #EF5350 0%, #D32F2F 100%);
  --gradient-hero: linear-gradient(135deg, #FFF5F5 0%, #FFE8E8 30%, #F8F0FF 70%, #FFFFFF 100%);
  --gradient-accent: linear-gradient(135deg, #EF5350 0%, #D32F2F 50%, #9575CD 100%);
  --gradient-glow: radial-gradient(circle at 50% 50%, rgba(211, 47, 47, 0.1) 0%, rgba(126, 87, 194, 0.08) 50%, transparent 100%);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.15);
  --shadow-red: 0 8px 32px rgba(211, 47, 47, 0.2);
  --shadow-glow: 0 0 40px rgba(211, 47, 47, 0.3), 0 0 80px rgba(126, 87, 194, 0.15);
}

body.light-theme .navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

body.light-theme .problem-card,
body.light-theme .benefit-card,
body.light-theme .testimonial-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

body.light-theme .problem-card:hover,
body.light-theme .benefit-card:hover,
body.light-theme .testimonial-card:hover {
  background: rgba(255, 255, 255, 1);
  border-color: rgba(211, 47, 47, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

body.light-theme .dashboard-mockup {
  background: linear-gradient(135deg, rgba(245, 245, 245, 0.9) 0%, rgba(238, 238, 238, 0.8) 100%);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

body.light-theme .mockup-content {
  background: #FAFAFA;
}

body.light-theme .contact-form-wrapper {
  background: #FAFAFA;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

body.light-theme .form-group input,
body.light-theme .form-group textarea {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.15);
  color: #212121;
}

body.light-theme .hero::before {
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 107, 107, 0.15) 0%, transparent 35%),
    radial-gradient(circle at 80% 60%, rgba(149, 117, 205, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 50% 80%, rgba(239, 83, 80, 0.1) 0%, transparent 45%);
}

body.light-theme .hero-title {
  background: linear-gradient(135deg, #2C2C2C 0%, #404040 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

body.light-theme .hero-subtitle {
  color: #404040;
}

body.light-theme .solution-box h3 {
  color: #FFFFFF;
}

body.light-theme .check-icon {
  color: #FFFFFF;
}

/* Botão de alternância de tema */
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-left: 0.5rem;
  position: relative;
}

.theme-toggle:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  transform: scale(1.05);
}

.theme-icon {
  width: 20px;
  height: 20px;
  fill: var(--text-primary);
  transition: all 0.3s ease;
  position: absolute;
}

.sun-icon {
  opacity: 0;
  transform: rotate(-90deg) scale(0.8);
}

.moon-icon {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

body.light-theme .sun-icon {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

body.light-theme .moon-icon {
  opacity: 0;
  transform: rotate(90deg) scale(0.8);
}

body.light-theme .theme-toggle {
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

body.light-theme .theme-toggle:hover {
  background: rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.15);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--dark-bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  z-index: 1000;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.875rem 0;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  position: relative;
  padding: 0.25rem 0;
}

.logo img {
  height: 76px;
  width: auto;
}

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

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.625rem 1rem;
  border-radius: 10px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links a:not(.cta-nav):hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

.nav-links a:not(.cta-nav)::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 20px;
  height: 2px;
  background: var(--primary-red);
  border-radius: 2px;
  transition: transform 0.3s ease;
}

.nav-links a:not(.cta-nav):hover::after {
  transform: translateX(-50%) scaleX(1);
}

.cta-nav {
  background: var(--gradient-red);
  color: #ffffff !important;
  padding: 0.625rem 1.25rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  transition: all 0.3s ease;

  box-shadow: 0 2px 8px rgba(255, 51, 51, 0.25);
  position: relative;
  overflow: hidden;
  margin-left: 0.5rem;
}

.cta-nav::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.cta-nav:hover::before {
  left: 100%;
}

.cta-nav:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(255, 51, 51, 0.4);
  color: white !important;
}

.support-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  margin-top: 1.25rem;
  padding: 0.625rem 1.125rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 4px 12px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.support-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s ease;
}

.support-badge:hover::before {
  left: 100%;
}

.support-badge:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  box-shadow: 
    0 8px 24px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.support-badge-icon {
  font-size: 1rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.2) 0%, rgba(255, 51, 51, 0.15) 100%);
  border-radius: 50%;
  animation: iconPulse 2.5s ease-in-out infinite;
}

@keyframes iconPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

.support-badge-text {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0.01em;
}

body.light-theme .support-badge {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 250, 250, 0.9) 100%);
  border: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: 
    0 4px 12px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

body.light-theme .support-badge::before {
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.03), transparent);
}

body.light-theme .support-badge:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(248, 248, 248, 0.95) 100%);
  border-color: rgba(0, 0, 0, 0.18);
  box-shadow: 
    0 8px 24px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

body.light-theme .support-badge-icon {
  background: linear-gradient(135deg, rgba(211, 47, 47, 0.15) 0%, rgba(211, 47, 47, 0.1) 100%);
}

body.light-theme .support-badge-text {
  color: rgba(60, 60, 60, 0.9);
}

/* Hero Section */
.hero {
  position: relative;
  padding: 120px 0 100px;
  overflow: hidden;
  background: var(--gradient-hero);
  margin-top: 0;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 51, 51, 0.15) 0%, transparent 30%),
    radial-gradient(circle at 80% 60%, rgba(139, 92, 246, 0.12) 0%, transparent 35%),
    radial-gradient(circle at 50% 80%, rgba(139, 0, 0, 0.1) 0%, transparent 40%);
  animation: gradientShift 20s ease infinite;
  z-index: 0;
}

@keyframes gradientShift {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(-5%, -5%) rotate(5deg); }
  66% { transform: translate(5%, 5%) rotate(-5deg); }
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at 10% 20%, rgba(255, 51, 51, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 90% 80%, rgba(139, 92, 246, 0.06) 0%, transparent 50%);
  z-index: 1;
}

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

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-image {
  width: 100%;
  max-width: 100%;
  overflow: visible;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.highlight {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}

.highlight::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-accent);
  border-radius: 2px;
  opacity: 0.5;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.btn {
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: var(--gradient-accent);
  color: white;
  box-shadow: 0 4px 20px rgba(255, 51, 51, 0.4);
  position: relative;
  overflow: hidden;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  font-weight: 600;
}

.btn-secondary:hover {
  border-color: var(--primary-red);
  background: rgba(255, 51, 51, 0.15);
  box-shadow: 0 4px 20px rgba(255, 51, 51, 0.2);
}

.btn-block {
  width: 100%;
}

.trust-indicators {
  display: flex;
  gap: 3rem;
}

.trust-item {
  display: flex;
  flex-direction: column;
}

.trust-number {
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.trust-label {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Dashboard Mockup */
.dashboard-mockup {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(42, 42, 42, 0.8) 100%);
  border-radius: 20px;
  padding: 1rem;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  max-width: 100%;
  width: 100%;
}

.dashboard-mockup::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: radial-gradient(circle at 50% 0%, rgba(255, 51, 51, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.mockup-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mockup-dots {
  display: flex;
  gap: 0.5rem;
}

.mockup-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--text-muted);
}

.mockup-content {
  background: var(--dark-tertiary);
  border-radius: 8px;
  height: 320px;
  max-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
  position: relative;
}

.carousel-container {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.erp-screenshot {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 8px;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transform: scale(0.95);
}

.erp-screenshot.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.dashboard-mockup:hover .erp-screenshot.active {
  transform: scale(1.02);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: white;
  font-size: 2rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.carousel-btn:hover {
  background: rgba(255, 51, 51, 0.8);
  transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
  left: 10px;
}

.carousel-next {
  right: 10px;
}

.carousel-indicators {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.carousel-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.carousel-indicator.active {
  background: var(--primary-red);
  border-color: white;
  transform: scale(1.2);
}

body.light-theme .carousel-btn {
  background: rgba(255, 255, 255, 0.8);
  color: var(--text-primary);
}

body.light-theme .carousel-btn:hover {
  background: var(--primary-red);
  color: white;
}

body.light-theme .carousel-indicator {
  background: rgba(0, 0, 0, 0.3);
}

body.light-theme .carousel-indicator.active {
  background: var(--primary-red);
  border-color: rgba(0, 0, 0, 0.5);
}

.chart-placeholder {
  width: 80%;
  height: 80%;
  background: linear-gradient(135deg, rgba(255, 51, 51, 0.2) 0%, rgba(255, 51, 51, 0.05) 100%);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.chart-placeholder::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 51, 51, 0.3);
}

.chart-placeholder::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20%;
  width: 60%;
  height: 60%;
  background: linear-gradient(to top, rgba(255, 51, 51, 0.4) 0%, transparent 100%);
  clip-path: polygon(0% 100%, 20% 60%, 40% 70%, 60% 30%, 80% 50%, 100% 20%, 100% 100%);
}

/* Problem Section */
.problem-section {
  padding: 100px 0;
  background: var(--dark-secondary);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.problem-card {
  background: rgba(26, 26, 26, 0.6);
  padding: 2rem 1.75rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 51, 51, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.problem-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

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

.problem-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 51, 51, 0.4);
  box-shadow: 
    0 20px 40px rgba(255, 51, 51, 0.25),
    0 0 0 1px rgba(255, 51, 51, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  background: rgba(255, 51, 51, 0.05);
}

.problem-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-accent);
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 4px 16px rgba(255, 51, 51, 0.3);
  transition: all 0.3s ease;
}

.problem-icon svg {
  width: 100%;
  height: 100%;
  fill: white;
}

.problem-card:hover .problem-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 24px rgba(255, 51, 51, 0.5);
}

.problem-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--primary-red);
}

.problem-card p {
  color: var(--text-secondary);
}

.solution-box {
  background: var(--gradient-accent);
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 
    0 20px 60px rgba(255, 51, 51, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.solution-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
  animation: rotate 10s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.solution-box h3 {
  position: relative;
  z-index: 1;
}

.solution-box h3 {
  font-size: 1.8rem;
  font-weight: 700;
}

/* Benefits Section */
.benefits-section {
  padding: 100px 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.benefit-card {
  background: rgba(26, 26, 26, 0.6);
  padding: 2rem 1.75rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

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

.benefit-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 51, 51, 0.3);
  background: rgba(255, 51, 51, 0.05);
  box-shadow: 
    0 20px 40px rgba(255, 51, 51, 0.25),
    0 0 0 1px rgba(255, 51, 51, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.benefit-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-accent);
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 4px 16px rgba(255, 51, 51, 0.3);
  transition: all 0.3s ease;
}

.benefit-icon svg {
  width: 100%;
  height: 100%;
  fill: white;
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.15) rotate(-5deg);
  box-shadow: 0 8px 24px rgba(255, 51, 51, 0.5);
}

.benefit-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: var(--primary-red);
}

.benefit-card p {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Testimonials */
.testimonials-section {
  padding: 100px 0;
  background: var(--dark-secondary);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: rgba(42, 42, 42, 0.6);
  padding: 2rem 1.75rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

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

.testimonial-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 51, 51, 0.3);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 51, 51, 0.2);
}

.testimonial-stars {
  color: var(--primary-red);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.testimonial-author strong {
  color: var(--text-primary);
  font-weight: 600;
}

.testimonial-author span {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Contact Section */
.contact-section {
  padding: 100px 0;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.contact-subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.contact-benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-benefit {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.check-icon {
  background: var(--gradient-red);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
}

.contact-form-wrapper {
  background: var(--dark-secondary);
  padding: 2.5rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-lg);
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.9rem;
  background: var(--dark-tertiary);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-red);
  box-shadow: 0 0 0 3px rgba(255, 51, 51, 0.1);
}

.form-group textarea {
  resize: vertical;
}

/* Form validation states */
.form-group.error input,
.form-group.error textarea {
  border-color: #ef4444;
  background: rgba(239, 68, 68, 0.05);
}

.form-group.success input,
.form-group.success textarea {
  border-color: #10b981;
  background: rgba(16, 185, 129, 0.05);
}

.error-message {
  display: block;
  color: #ef4444;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  padding: 0.5rem;
  background: rgba(239, 68, 68, 0.1);
  border-radius: 6px;
  border-left: 3px solid #ef4444;
}

/* Form status messages */
.form-status-message {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  animation: slideDown 0.3s ease;
}

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

.form-status-message.success {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #10b981;
}

.form-status-message.error {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
}

.status-icon {
  font-size: 1.5rem;
  font-weight: bold;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.form-status-message.success .status-icon {
  background: rgba(16, 185, 129, 0.2);
}

.form-status-message.error .status-icon {
  background: rgba(239, 68, 68, 0.2);
}

.status-text {
  flex: 1;
  line-height: 1.6;
}

/* Loading spinner */
.spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  top: 90px;
  right: 20px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 420px;
}

.toast {
  background: rgba(26, 26, 26, 0.98);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  animation: slideInRight 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s ease;
}

.toast.removing {
  animation: slideOutRight 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateX(100%);
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideOutRight {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(100%);
  }
}

body.light-theme .toast {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.toast.success {
  border-left: 4px solid #10b981;
}

.toast.error {
  border-left: 4px solid #ef4444;
}

.toast.warning {
  border-left: 4px solid #f59e0b;
}

.toast.info {
  border-left: 4px solid #3b82f6;
}

.toast-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.5rem;
  font-weight: bold;
}

.toast.success .toast-icon {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
}

.toast.error .toast-icon {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
}

.toast.warning .toast-icon {
  background: rgba(245, 158, 11, 0.15);
  color: #f59e0b;
}

.toast.info .toast-icon {
  background: rgba(59, 130, 246, 0.15);
  color: #3b82f6;
}

.toast-content {
  flex: 1;
  min-width: 0;
}

.toast-title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: var(--text-primary);
}

.toast-message {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-secondary);
  word-wrap: break-word;
}

.toast-close {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  flex-shrink: 0;
  font-size: 1.2rem;
  line-height: 1;
}

.toast-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
}

body.light-theme .toast-close:hover {
  background: rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
  .toast-container {
    top: 80px;
    right: 10px;
    left: 10px;
    max-width: none;
  }

  .toast {
    padding: 1rem 1.25rem;
  }

  .toast-icon {
    width: 36px;
    height: 36px;
    font-size: 1.25rem;
  }

  .toast-title {
    font-size: 0.95rem;
  }

  .toast-message {
    font-size: 0.85rem;
  }
}

/* Input placeholders */
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

/* Footer */
.footer {
  background: var(--dark-secondary);
  padding: 60px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-logo img {
  height: 50px;
  margin-bottom: 1rem;
}

.footer-logo p {
  color: var(--text-secondary);
  line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
  margin-bottom: 1rem;
  color: var(--primary-red);
}

.footer-links a {
  display: block;
  color: var(--text-secondary);
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

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

.footer-contact p {
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
}

/* Mobile Menu Toggle - Removido */

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(30px);
  border-top: 2px solid rgba(255, 51, 51, 0.3);
  padding: 1.5rem;
  z-index: 10000;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
              opacity 0.4s ease;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.6);
}

.cookie-banner.show {
  transform: translateY(0);
  opacity: 1;
}

body.light-theme .cookie-banner {
  background: rgba(255, 255, 255, 0.98);
  border-top: 2px solid rgba(211, 47, 47, 0.3);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.15);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cookie-text h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cookie-text p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
}

.cookie-link {
  color: var(--primary-red);
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.3s ease;
}

.cookie-link:hover {
  color: var(--accent-purple);
}

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

.btn-cookie {
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
  white-space: nowrap;
}

/* Responsive */
@media (max-width: 768px) {
  .navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .nav-content {
    padding: 0.75rem 0;
  }

  .logo img {
    height: 62px;
  }

  .hero {
    padding: 80px 0 40px;
  }

  .hero-image {
    width: 100%;
    max-width: 100%;
    overflow: visible;
    order: -1;
    margin: 0;
    padding: 0 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .mockup-content {
    height: auto;
    min-height: 200px;
    max-height: 270px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .dashboard-mockup {
    padding: 0.5rem;
    margin: 0 auto;
    max-width: 100%;
    width: 100%;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(42, 42, 42, 0.8) 100%);
    box-shadow: 
      0 0 0 1px rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .mockup-header {
    padding-bottom: 0.25rem;
    margin-bottom: 0.5rem;
  }

  .mockup-dots span {
    width: 8px;
    height: 8px;
  }

  .erp-screenshot {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
  }

  .carousel-btn {
    width: 32px;
    height: 32px;
    font-size: 1.5rem;
  }

  .carousel-prev {
    left: 5px;
  }

  .carousel-next {
    right: 5px;
  }

  .carousel-indicators {
    bottom: 10px;
    gap: 6px;
  }

  .carousel-indicator {
    width: 8px;
    height: 8px;
  }

  .nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .nav-links {
    display: flex;
    gap: 0;
  }

  .nav-links a {
    display: none;
  }

  .theme-toggle {
    display: flex;
    margin-left: auto;
    margin-right: 0;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-top: 1rem;
  }

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

  .hero-title {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }

  .hero-subtitle {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
  }

  .hero-cta {
    flex-direction: column;
    gap: 0.75rem;
  }

  .btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
  }

  .trust-indicators {
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
  }

  .trust-item {
    min-width: 100px;
    text-align: center;
  }

  .trust-number {
    font-size: 1.75rem;
  }

  .trust-label {
    font-size: 0.85rem;
  }

  .support-badge {
    padding: 0.4rem 0.75rem;
    gap: 0.4rem;
  }

  .support-badge-text {
    font-size: 0.65rem;
  }

  .support-badge-icon {
    font-size: 0.85rem;
  }

  .problem-section,
  .benefits-section,
  .testimonials-section,
  .contact-section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 2rem;
    line-height: 1.25;
  }

  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .contact-info h2 {
    font-size: 2rem;
  }

  .contact-subtitle {
    font-size: 1rem;
  }

  .contact-form-wrapper {
    padding: 2rem 1.5rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .problems-grid,
  .benefits-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .problem-card,
  .benefit-card,
  .testimonial-card {
    padding: 1.75rem 1.5rem;
  }

  .problem-card h3,
  .benefit-card h3 {
    font-size: 1.2rem;
  }

  .solution-box {
    padding: 2rem 1.5rem;
  }

  .solution-box h3 {
    font-size: 1.5rem;
    line-height: 1.4;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero {
    padding: 70px 0 30px;
  }

  .hero-image {
    margin: 0;
    padding: 0 1rem;
  }

  .hero-title {
    font-size: 1.75rem;
    letter-spacing: -0.01em;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
  }

  .dashboard-mockup {
    padding: 0.4rem;
    border-radius: 10px;
    max-width: 100%;
    width: 100%;
  }

  .mockup-content {
    min-height: 160px;
    max-height: 230px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .erp-screenshot {
    object-fit: contain;
    object-position: center center;
  }

  .section-title {
    font-size: 1.75rem;
    line-height: 1.3;
  }

  .section-subtitle {
    font-size: 0.95rem;
  }

  .trust-indicators {
    flex-wrap: wrap;
    gap: 1.25rem;
  }

  .trust-number {
    font-size: 1.5rem;
  }

  .trust-label {
    font-size: 0.8rem;
  }

  .logo img {
    height: 50px;
  }

  .nav-links a {
    font-size: 0.95rem;
    padding: 0.9rem 1rem;
  }

  .mockup-content {
    height: 200px;
    max-height: 35vh;
  }

  .problem-card,
  .benefit-card,
  .testimonial-card {
    padding: 1.5rem 1.25rem;
  }

  .problem-icon,
  .benefit-icon {
    width: 56px;
    height: 56px;
    padding: 12px;
  }

  .solution-box {
    padding: 1.75rem 1.25rem;
  }

  .solution-box h3 {
    font-size: 1.35rem;
  }

  .contact-info h2 {
    font-size: 1.75rem;
  }

  .contact-form-wrapper {
    padding: 1.75rem 1.25rem;
  }

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

  .form-group input,
  .form-group textarea {
    padding: 0.8rem;
    font-size: 0.95rem;
  }

  .footer {
    padding: 40px 0 20px;
  }

  .footer-content {
    gap: 1.5rem;
  }

  .cookie-content {
    flex-direction: column;
    gap: 1.5rem;
    align-items: stretch;
  }

  .cookie-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn-cookie {
    width: 100%;
  }

  .cookie-text h4 {
    font-size: 1.05rem;
  }

  .cookie-text p {
    font-size: 0.875rem;
    line-height: 1.5;
  }

  .privacy-content {
    padding: 2rem 1.25rem;
  }

  .privacy-title {
    font-size: 2rem;
  }

  .privacy-section-block h2 {
    font-size: 1.5rem;
  }
}

/* Privacy Policy Page */
.privacy-section {
  padding: 140px 0 80px;
  min-height: 100vh;
}

.privacy-content {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(26, 26, 26, 0.6);
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

body.light-theme .privacy-content {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.privacy-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  background: var(--gradient-red);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.privacy-update {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

body.light-theme .privacy-update {
  border-bottom-color: rgba(0, 0, 0, 0.1);
}

.privacy-intro {
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  background: rgba(255, 51, 51, 0.05);
  border-left: 4px solid var(--primary-red);
  border-radius: 8px;
}

.privacy-intro p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin: 0;
}

.privacy-section-block {
  margin-bottom: 2.5rem;
}

.privacy-section-block h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary-red);
}

.privacy-section-block h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.privacy-section-block p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.privacy-section-block ul {
  list-style: none;
  padding-left: 0;
  margin: 1rem 0;
}

.privacy-section-block ul li {
  color: var(--text-secondary);
  line-height: 1.8;
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
}

.privacy-section-block ul li::before {
  content: '•';
  color: var(--primary-red);
  font-weight: bold;
  position: absolute;
  left: 0;
  font-size: 1.2rem;
}

.privacy-section-block ul li strong {
  color: var(--text-primary);
  font-weight: 600;
}

.privacy-section-block a {
  color: var(--primary-red);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.privacy-section-block a:hover {
  color: var(--accent-purple);
}

.contact-list {
  background: rgba(255, 51, 51, 0.05);
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 1rem;
}

.contact-list li::before {
  content: '';
}

.contact-list li {
  padding-left: 0;
}

.privacy-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

body.light-theme .privacy-footer {
  border-top-color: rgba(0, 0, 0, 0.1);
}

body.light-theme .privacy-section {
  background: var(--gradient-hero);
}

body.light-theme .privacy-section::before {
  background: 
    radial-gradient(circle at 20% 30%, rgba(211, 47, 47, 0.08) 0%, transparent 35%),
    radial-gradient(circle at 80% 60%, rgba(126, 87, 194, 0.06) 0%, transparent 40%);
}

body.light-theme .privacy-intro {
  background: rgba(211, 47, 47, 0.08);
  border-left-color: var(--primary-red);
}

body.light-theme .contact-list {
  background: rgba(211, 47, 47, 0.08);
}

@media (max-width: 768px) {
  .privacy-section {
    padding: 100px 0 60px;
  }

  .privacy-content {
    padding: 2rem 1.5rem;
  }

  .privacy-title {
    font-size: 2rem;
  }

  .privacy-section-block h2 {
    font-size: 1.5rem;
  }

  .privacy-section-block h3 {
    font-size: 1.1rem;
  }
}