/* ========================================
   Reset & Base Styles
   ======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Primary Colors - Tema Claro */
  --primary-color: #0066ff;
  --primary-light: #3385ff;
  --primary-dark: #0052cc;
  --secondary-color: #00c9a7;
  --accent-color: #ff6b9d;

  /* Neutral Colors */
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;

  /* Background */
  --bg-primary: #ffffff;
  --bg-secondary: #f9fafb;
  --bg-tertiary: #f3f4f6;

  /* Text Colors */
  --text-primary: #111827;
  --text-secondary: #4b5563;
  --text-muted: #6b7280;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Scroll Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

/* ========================================
   Navigation
   ======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.98);
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.logo a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo img {
  display: block;
  flex-shrink: 0;
}

.logo span {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
  margin-left: auto;
  padding-left: 2rem;
}

.nav-menu a {
  color: var(--text-secondary);
  font-weight: 500;
  position: relative;
}

.nav-menu a:hover {
  color: var(--text-primary);
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu a:hover::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s ease;
}

/* Mobile nav menu behavior */
.nav-menu.active {
  display: flex;
}

@media (max-width: 428px) {
  .nav-menu.active {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--gray-200);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .nav-menu.active li {
    border-top: 1px solid var(--gray-100);
  }

  .nav-menu.active li a {
    display: block;
    padding: 1rem 2rem;
    color: var(--text-primary);
  }

  .nav-menu.active li:last-child {
    margin: 1rem 2rem;
    border: none;
  }

  .nav-menu.active li:last-child a {
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  }

  .mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}

/* ========================================
   Buttons
   ======================================== */
.btn-primary {
  padding: 0.75rem 1.5rem;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-light)
  );
  border-radius: var(--radius-sm);
  font-weight: 600;
  color: var(--white);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 4px rgba(0, 102, 255, 0.1);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 102, 255, 0.25);
  background: linear-gradient(
    135deg,
    var(--primary-dark),
    var(--primary-color)
  );
}

.btn-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.btn-gradient {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: var(--white) !important;
  box-shadow: 0 4px 12px rgba(0, 102, 255, 0.15);
}

.nav-menu .btn-large {
  white-space: nowrap;
}

.nav-menu .btn-gradient {
  color: var(--white) !important;
}

.btn-gradient:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 24px rgba(0, 102, 255, 0.3);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--gray-300);
  color: var(--text-primary);
}

.btn-outline:hover {
  border-color: var(--primary-color);
  background: var(--gray-50);
  box-shadow: 0 4px 12px rgba(0, 102, 255, 0.1);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 50%,
      rgba(0, 102, 255, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 50%,
      rgba(0, 201, 167, 0.08) 0%,
      transparent 50%
    );
  pointer-events: none;
  animation: float 20s ease-in-out infinite;
}

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

.hero .container {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  max-width: 900px;
}

.hero-content {
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(
    135deg,
    rgba(0, 102, 255, 0.1),
    rgba(0, 201, 167, 0.1)
  );
  border: 1px solid rgba(0, 102, 255, 0.2);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 2rem;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  animation: badge-pulse 3s ease-in-out infinite;
}

@keyframes badge-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(0, 102, 255, 0.2);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(0, 102, 255, 0);
  }
}

.pulse {
  width: 8px;
  height: 8px;
  background: var(--secondary-color);
  border-radius: 50%;
  animation: pulse 2s infinite;
  box-shadow: 0 0 8px var(--secondary-color);
}

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

.hero-title {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.gradient-text {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 8s ease infinite;
  background-size: 200% 200%;
}

@keyframes gradient-shift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

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

.hero-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  width: 100%;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stat-value {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: number-fade 1s ease-out;
}

@keyframes number-fade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stat-label {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mockup {
  position: relative;
  width: 320px;
  height: 640px;
  background: linear-gradient(
    135deg,
    rgba(0, 102, 255, 0.1),
    rgba(0, 201, 167, 0.1)
  );
  border-radius: 40px;
  padding: 12px;
  box-shadow: 0 20px 60px rgba(0, 102, 255, 0.15),
    0 0 0 1px rgba(0, 102, 255, 0.1), inset 0 0 30px rgba(255, 255, 255, 0.5);
  animation: phone-float 6s ease-in-out infinite;
}

@keyframes phone-float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(2deg);
  }
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--white);
  border-radius: 32px;
  overflow: hidden;
  padding: 2rem 1rem;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.05);
}

.menu-preview {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.menu-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: var(--gray-50);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  transition: transform 0.3s ease;
}

.menu-item:hover {
  transform: translateX(4px);
}

.item-image {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: var(--radius-sm);
  animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

.item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.item-name {
  height: 12px;
  width: 80%;
  background: var(--gray-300);
  border-radius: 4px;
}

.item-price {
  height: 12px;
  width: 40%;
  background: var(--primary-color);
  opacity: 0.3;
  border-radius: 4px;
}

/* ========================================
   Section Common Styles
   ======================================== */
section {
  padding: var(--spacing-xl) 0;
}

.section-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: linear-gradient(
    135deg,
    rgba(0, 102, 255, 0.1),
    rgba(0, 201, 167, 0.1)
  );
  border: 1px solid rgba(0, 102, 255, 0.2);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.section-badge:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 102, 255, 0.2);
}

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

.section-title {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ========================================
   Features Section
   ======================================== */
.features {
  background: var(--bg-secondary);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.feature-card {
  position: relative;
  padding: 2rem;
  background: var(--bg-tertiary);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-color);
  box-shadow: 0 20px 40px rgba(0, 240, 255, 0.2);
}

.feature-card.featured {
  border-color: var(--accent-color);
  background: linear-gradient(135deg, rgba(255, 0, 229, 0.1), transparent);
}

.feature-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.25rem 0.75rem;
  background: linear-gradient(135deg, var(--accent-color), var(--accent-color));
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}

.feature-icon {
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.feature-list li {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

/* ========================================
   Benefits Section
   ======================================== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.benefit-card {
  padding: 2rem;
  background: var(--bg-tertiary);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.benefit-number {
  font-size: 3rem;
  font-weight: 900;
  opacity: 0.1;
  margin-bottom: 1rem;
}

.benefit-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.benefit-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.benefit-highlight {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(0, 240, 255, 0.05);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--primary-color);
}

.benefit-highlight span:first-child {
  font-size: 1.5rem;
}

.benefit-highlight span:last-child {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* ========================================
   About Section (Quem Somos)
   ======================================== */
.about {
  background: var(--bg-primary);
  position: relative;
}

.founders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.founder-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1rem;
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.founder-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 102, 255, 0.15);
  border-color: var(--primary-color);
}

.founder-photo {
  margin-bottom: 1.5rem;
  position: relative;
  width: 120px;
  height: 120px;
  margin-left: auto;
  margin-right: auto;
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(0, 102, 255, 0.2));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.founder-photo svg {
  display: block;
  filter: drop-shadow(0 4px 12px rgba(0, 102, 255, 0.2));
  transition: transform 0.3s ease;
}

.founder-card:hover .founder-photo img {
  transform: scale(1.05);
  filter: drop-shadow(0 6px 16px rgba(0, 102, 255, 0.3));
}

.founder-card:hover .founder-photo svg {
  transform: scale(1.1) rotate(5deg);
}

.founder-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.founder-role {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ========================================
   Pricing Section
   ======================================== */
.pricing {
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.pricing::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1400px;
  height: 100%;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 240, 255, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
}

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

.pricing-info {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 3rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
}

.pricing-feature svg {
  color: var(--secondary-color);
  flex-shrink: 0;
}

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

/* Para telas grandes (24 polegadas - 1920px+), mostrar 5 colunas */
@media (min-width: 1920px) {
  .pricing-grid {
    grid-template-columns: repeat(5, 1fr);
    max-width: 1800px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Para telas médias-grandes (13 polegadas - 1280px-1919px), 3 colunas + scroll */
@media (min-width: 1280px) and (max-width: 1919px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Para tablets (768px-1279px), 2 colunas */
@media (min-width: 768px) and (max-width: 1279px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Para mobile (iPhone 13, 13 Pro Max - até 767px), 1 coluna */
@media (max-width: 767px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

.pricing-card {
  position: relative;
  padding: 2rem;
  background: var(--bg-tertiary);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--primary-color);
  box-shadow: 0 20px 60px rgba(0, 240, 255, 0.3),
    0 0 80px rgba(0, 240, 255, 0.1);
}

.pricing-card.featured {
  border-color: var(--accent-color);
  background: linear-gradient(
    135deg,
    rgba(255, 0, 229, 0.08) 0%,
    var(--bg-tertiary) 100%
  );
  box-shadow: 0 10px 40px rgba(255, 0, 229, 0.2),
    0 0 60px rgba(255, 0, 229, 0.1);
}

.pricing-card.featured:hover {
  border-color: var(--accent-color);
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 25px 70px rgba(255, 0, 229, 0.4),
    0 0 100px rgba(255, 0, 229, 0.2);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.4rem 1.2rem;
  background: linear-gradient(135deg, var(--accent-color), var(--accent-color));
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(255, 0, 229, 0.4);
}

.pricing-header {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--gray-200);
}

.pricing-header h3 {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-color)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-description {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.pricing-price {
  text-align: center;
  margin-bottom: 1rem;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
}

.price-currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-secondary);
}

.price-value {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-color)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-period {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.pricing-condition {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  padding: 0.5rem 1rem;
  background: rgba(0, 240, 255, 0.05);
  border-radius: var(--radius-sm);
  font-weight: 500;
}

.pricing-features {
  list-style: none;
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

.pricing-features li {
  padding: 0.75rem 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
  border-bottom: 1px solid var(--gray-100);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li strong {
  color: var(--text-primary);
  font-weight: 700;
}

.btn-pricing {
  display: block;
  width: 100%;
  padding: 1rem;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  border: 2px solid var(--gray-300);
  background: transparent;
  color: var(--text-primary);
}

.btn-pricing:hover {
  border-color: var(--primary-color);
  background: rgba(0, 240, 255, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 240, 255, 0.2);
}

.btn-pricing.btn-gradient {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-color)
  );
  border-color: transparent;
}

.btn-pricing.btn-gradient:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 240, 255, 0.4);
}

.pricing-note {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
  background: rgba(0, 240, 255, 0.03);
  border: 1px solid rgba(0, 240, 255, 0.2);
  border-radius: var(--radius-lg);
  text-align: center;
}

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

.pricing-note p:last-child {
  margin-bottom: 0;
}

.pricing-note strong {
  color: var(--primary-color);
  font-weight: 700;
}

/* Responsividade específica para iPhone 13 (390px) */
@media (max-width: 428px) {
  .pricing-info {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }

  .pricing-card {
    padding: 1.5rem;
  }

  .pricing-header h3 {
    font-size: 1.5rem;
  }

  .price-value {
    font-size: 3rem;
  }

  .pricing-features li {
    font-size: 0.85rem;
    padding: 0.6rem 0;
  }

  .pricing-note {
    padding: 1.5rem;
  }

  .pricing-note p {
    font-size: 0.9rem;
  }
}

/* Ajustes para iPhone 13 Pro Max (428px) */
@media (min-width: 429px) and (max-width: 767px) {
  .pricing-card {
    padding: 1.75rem;
  }
}

/* Ajustes para telas de 13 polegadas (1280px-1440px típico) */
@media (min-width: 1280px) and (max-width: 1600px) {
  .container {
    max-width: 1280px;
    padding: 0 3rem;
  }

  .pricing-grid {
    gap: 1.5rem;
  }

  .pricing-card {
    padding: 1.75rem;
  }

  .price-value {
    font-size: 3.5rem;
  }
}

/* Ajustes para telas grandes de 24 polegadas (1920px+) */
@media (min-width: 1920px) {
  .container {
    max-width: 1800px;
    padding: 0 4rem;
  }

  .pricing-grid {
    gap: 2rem;
  }

  .section-title {
    font-size: 3.5rem;
  }

  .pricing-card {
    padding: 2.5rem;
  }

  .pricing-header h3 {
    font-size: 2rem;
  }

  .price-value {
    font-size: 4.5rem;
  }
}

/* ========================================
   Segments Section
   ======================================== */
.segments {
  background: var(--bg-primary);
}

.segments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.segment-card {
  padding: 2rem;
  background: var(--bg-tertiary);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all 0.3s ease;
}

.segment-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(0, 240, 255, 0.2);
}

.segment-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.segment-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.segment-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

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

.faq-item {
  margin-bottom: 1rem;
  background: var(--bg-tertiary);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.125rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.faq-question svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 1000px;
}

.faq-answer p,
.faq-answer ul,
.faq-answer ol {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.faq-answer ul,
.faq-answer ol {
  padding-left: 3rem;
}

.faq-answer li {
  margin-bottom: 0.5rem;
}

.faq-answer strong {
  color: var(--primary-color);
}

/* ========================================
   About Section
   ======================================== */
.about {
  background: var(--bg-secondary);
}

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

.about-description {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-stats {
  display: flex;
  gap: 3rem;
  margin: 3rem 0;
}

.about-stat {
  display: flex;
  flex-direction: column;
}

.about-stat-value {
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-color)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-stat-label {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.about-values h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.values-grid {
  display: grid;
  gap: 1rem;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: var(--bg-tertiary);
  border-radius: var(--radius-sm);
}

.value-icon {
  font-size: 1.5rem;
}

.value-item h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.value-item p {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.about-image {
  display: flex;
  justify-content: center;
}

.about-card {
  width: 100%;
  max-width: 400px;
  padding: 2rem;
  background: var(--bg-tertiary);
  border: 1px solid rgba(0, 240, 255, 0.3);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 240, 255, 0.2);
}

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

.card-badge {
  padding: 0.25rem 0.75rem;
  background: rgba(255, 0, 0, 0.2);
  border: 1px solid rgba(255, 0, 0, 0.5);
  border-radius: 50px;
  font-size: 0.75rem;
  color: #ff4444;
  font-weight: 600;
}

.card-time {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.card-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

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

.stat-label {
  color: var(--text-muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-value-anim {
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(
    135deg,
    var(--secondary-color),
    var(--primary-color)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.card-chart {
  height: 120px;
  background: linear-gradient(
    180deg,
    rgba(0, 255, 136, 0.2) 0%,
    transparent 100%
  );
  border-radius: var(--radius-sm);
  position: relative;
}

/* ========================================
   Contact Section
   ======================================== */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: flex-start;
}

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

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

.contact-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-secondary);
}

.contact-feature svg {
  color: var(--secondary-color);
}

.contact-form {
  padding: 2rem;
  background: var(--bg-tertiary);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}

.form-group label {
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  background: var(--bg-secondary);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
}

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

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.btn-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-color)
  );
  border: none;
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 1.125rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 240, 255, 0.4);
}

.form-disclaimer {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

.form-disclaimer a {
  color: var(--primary-color);
}

/* ========================================
   Footer
   ======================================== */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--gray-200);
  padding: 4rem 0 2rem;
}

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

.footer-brand p {
  color: var(--text-secondary);
  margin-top: 1rem;
  line-height: 1.6;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.footer-column h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer-column ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-column a {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-200);
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.footer-legal-link {
  color: var(--text-secondary);
  text-decoration: none;
  margin-left: 0.5rem;
  transition: color 0.3s ease;
}

.footer-legal-link:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-100);
  border-radius: 50%;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--primary-color);
  color: var(--bg-primary);
  transform: translateY(-2px);
}

/* ========================================
   Modal
   ======================================== */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: var(--bg-tertiary);
  border: 1px solid rgba(0, 240, 255, 0.3);
  border-radius: var(--radius-lg);
  padding: 3rem;
  max-width: 400px;
  text-align: center;
}

.modal-icon {
  margin-bottom: 1.5rem;
}

.modal-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.modal-content p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.btn-close-modal {
  padding: 0.75rem 2rem;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-color)
  );
  border: none;
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-close-modal:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 240, 255, 0.3);
}

/* ========================================
   Responsive Design - Multi-Device Optimization
   ======================================== */

/* iPhone 13 Pro Max e similar (390px - 428px) */
@media (max-width: 428px) {
  .container {
    padding: 0 1.25rem;
  }

  .nav-content {
    height: 70px;
  }

  .logo span {
    font-size: 1.25rem;
  }

  .logo img {
    width: 32px;
    height: 32px;
  }

  .nav-menu {
    display: none;
  }

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

  .hero {
    padding: 6rem 0 3rem;
    min-height: auto;
  }

  .hero-title {
    font-size: 2rem;
    line-height: 1.2;
  }

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

  .hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .btn-large {
    width: 100%;
    justify-content: center;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .stat-value {
    font-size: 2.5rem;
  }

  .hero-image {
    display: none;
  }

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

  .founder-card {
    padding: 1.5rem 1rem;
  }

  .section-badge {
    font-size: 0.75rem;
    padding: 0.4rem 0.875rem;
  }

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

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

  .feature-card,
  .benefit-card,
  .segment-card {
    padding: 1.5rem;
  }

  .feature-card h3,
  .benefit-card h3 {
    font-size: 1.25rem;
  }

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

  .contact-content,
  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

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

  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* iPhone 13 Pro Max específico (428px+) e tablets pequenos (429px - 767px) */
@media (min-width: 429px) and (max-width: 767px) {
  .hero-title {
    font-size: 2.25rem;
  }

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

  .hero-cta {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .btn-large {
    flex: 1;
    min-width: 200px;
  }
}

/* Tablets (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
  .container {
    padding: 0 2rem;
  }

  .nav-content {
    gap: 2rem;
  }

  .nav-menu {
    gap: 1.5rem;
    padding-left: 1.5rem;
  }

  .hero .container {
    grid-template-columns: 1fr;
  }

  .hero-image {
    display: none;
  }

  .hero-title {
    font-size: 3rem;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .founders-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  .segments-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-content,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Laptops e telas de 13 polegadas (1024px - 1439px) */
@media (min-width: 1024px) and (max-width: 1439px) {
  .container {
    max-width: 1100px;
    padding: 0 2.5rem;
  }

  .nav-content {
    gap: 2.5rem;
  }

  .nav-menu {
    gap: 1.75rem;
  }

  .hero-title {
    font-size: 3.5rem;
  }

  .section-title {
    font-size: 2.75rem;
  }

  .hero .container {
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .segments-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Monitores de 13 polegadas full (1440px - 1679px) */
@media (min-width: 1440px) and (max-width: 1679px) {
  .container {
    max-width: 1320px;
    padding: 0 3rem;
  }

  .hero .container {
    grid-template-columns: 1.3fr 1fr;
    gap: 4rem;
  }

  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

/* Telas grandes (1680px - 1919px) */
@media (min-width: 1680px) and (max-width: 1919px) {
  .container {
    max-width: 1500px;
    padding: 0 3.5rem;
  }

  .hero-title {
    font-size: 4.5rem;
  }

  .section-title {
    font-size: 3.25rem;
  }
}

/* Telas de 24 polegadas e maiores (1920px+) */
@media (min-width: 1920px) {
  .container {
    max-width: 1800px;
    padding: 0 4rem;
  }

  .hero {
    padding: 10rem 0 6rem;
  }

  .hero-title {
    font-size: 5rem;
  }

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

  .section-title {
    font-size: 3.5rem;
  }

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

  .hero .container {
    grid-template-columns: 1.4fr 1fr;
    gap: 5rem;
  }

  .features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }

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

  .segments-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }

  .feature-card,
  .benefit-card {
    padding: 2.5rem;
  }

  .feature-card h3 {
    font-size: 1.75rem;
  }

  .btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.25rem;
  }
}

/* Telas ultra-wide (2560px+) */
@media (min-width: 2560px) {
  .container {
    max-width: 2200px;
    padding: 0 5rem;
  }

  .hero-title {
    font-size: 6rem;
  }

  .section-title {
    font-size: 4rem;
  }

  .features-grid,
  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Ajustes para touch devices */
@media (hover: none) and (pointer: coarse) {
  .btn-primary:hover,
  .btn-large:hover,
  .feature-card:hover,
  .segment-card:hover,
  .pricing-card:hover {
    transform: none;
  }

  .btn-primary:active,
  .btn-large:active {
    transform: scale(0.98);
  }
}

/* ========================================
   Legal Pages (Termos e Privacidade)
   ======================================== */
.legal-page {
  padding: 8rem 0 4rem;
  background: var(--bg-primary);
  min-height: 100vh;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.legal-content h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.legal-date {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--gray-200);
}

.legal-section {
  margin-bottom: 2.5rem;
}

.legal-section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  margin-top: 2rem;
}

.legal-section h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
  margin-top: 1.5rem;
}

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

.legal-section ul,
.legal-section ol {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-section li {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.legal-section a {
  color: var(--primary-color);
  text-decoration: underline;
  font-weight: 500;
}

.legal-section a:hover {
  color: var(--primary-dark);
}

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

.legal-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid var(--gray-200);
  text-align: center;
}

/* Responsividade páginas legais */
@media (max-width: 767px) {
  .legal-page {
    padding: 6rem 0 2rem;
  }

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

  .legal-content h1 {
    font-size: 1.75rem;
  }

  .legal-section h2 {
    font-size: 1.25rem;
  }

  .legal-section h3 {
    font-size: 1rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .legal-content {
    padding: 2.5rem;
  }

  .legal-content h1 {
    font-size: 2rem;
  }
}
