:root {
  --primary: #6366F1;
  --primary-dark: #4F46E5;
  --secondary: #8B5CF6;
  --accent: #06B6D4;
  --light: #F8FAFC;
  --dark: #1E293B;
  --text: #334155;
  --text-light: #64748B;
  --white: #FFFFFF;
  --gradient: linear-gradient(135deg, #6366F1 0%, #8B5CF6 50%, #06B6D4 100%);
  --gradient-dark: linear-gradient(135deg, #4F46E5 0%, #6366F1 100%);
  --shadow: 0 20px 25px -5px rgba(99, 102, 241, 0.15);
  --shadow-lg: 0 25px 50px -12px rgba(99, 102, 241, 0.25);
  --glow: 0 0 20px rgba(99, 102, 241, 0.3);
  --glow-lg: 0 0 40px rgba(99, 102, 241, 0.5);
}

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

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--white);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  box-sizing: border-box;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  z-index: 1000;
  padding: 1.5rem 0;
  transition: all 0.4s ease;
  border-bottom: 1px solid rgba(99, 102, 241, 0.2);
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.1);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
  padding: 1rem 0;
}

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

.logo {
  display: flex;
  flex-direction: row;
}

.logo-container {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
  transition: all 0.3s ease;
  box-shadow: var(--glow);
}

.logo-icon i {
  font-size: 2rem;
  color: var(--white);
}

.logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.5px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 3rem;
}

.nav-link {
  color: var(--text);
  text-decoration: none;
  opacity: 0.8;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  position: relative;
}

.nav-link:hover {
  color: var(--primary);
  background: rgba(99, 102, 241, 0.1);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  opacity: 1;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after {
  width: 80%;
}

.mobile-menu {
  display: none;
  position: relative;
}

.menu-btn {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--text);
  transition: all 0.3s ease;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
}

.menu-btn:hover {
  transform: scale(1.1);
  color: var(--primary);
  background: rgba(99, 102, 241, 0.1);
}

.menu-btn.active {
  transform: rotate(90deg);
  color: var(--primary);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text);
  position: relative;
  overflow: hidden;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gradient);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 2rem;
  animation: slideInDown 1.2s ease;
  box-shadow: var(--glow);
}

.hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 6rem;
  font-weight: 700;
  margin-bottom: 1rem;
  animation: slideInDown 1.2s ease 0.2s both;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -2px;
}

.hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  animation: slideInUp 1.2s ease 0.4s both;
  font-weight: 400;
  line-height: 1.4;
  color: var(--text-light);
}

.hero-description {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  margin-bottom: 3rem;
  animation: slideInUp 1.2s ease 0.6s both;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-light);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  animation: slideInUp 1.2s ease 0.8s both;
  margin-bottom: 4rem;
}

.hero-btn {
  padding: 1.5rem 3rem;
  font-size: 1.3rem;
  font-family: 'Inter', sans-serif;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-stats {
  display: flex;
  gap: 4rem;
  justify-content: center;
  animation: slideInUp 1.2s ease 1s both;
}

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

.hero-stat-number {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.hero-stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--text-light);
  font-weight: 500;
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-particles::before,
.hero-particles::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: var(--gradient);
  border-radius: 50%;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.hero-particles::before {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.hero-particles::after {
  top: 60%;
  right: 10%;
  animation-delay: 3s;
}

/* Section Styles */
.section {
  padding: 8rem 0;
  position: relative;
  background: var(--white);
}

.section-alt {
  background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
  position: relative;
  overflow: hidden;
}

.section-dark {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #f5576c 75%, #4facfe 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 0;
}

.section-dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.2) 0%, transparent 50%);
  animation: backgroundShift 20s ease-in-out infinite;
}

.section-dark::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
  animation: shimmer 3s ease-in-out infinite;
}

.section-dark .section-title {
  color: var(--white);
  position: relative;
  z-index: 2;
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
  animation: titleGlow 2s ease-in-out infinite alternate;
}

.section-dark .section-subtitle {
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  z-index: 2;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

/* Floating particles for section-dark */
.section-dark .floating-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.section-dark .particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  animation: floatParticle 6s ease-in-out infinite;
}

.section-dark .particle:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.section-dark .particle:nth-child(2) { top: 20%; right: 20%; animation-delay: 1s; }
.section-dark .particle:nth-child(3) { top: 60%; left: 30%; animation-delay: 2s; }
.section-dark .particle:nth-child(4) { top: 80%; right: 40%; animation-delay: 3s; }
.section-dark .particle:nth-child(5) { top: 40%; left: 60%; animation-delay: 4s; }
.section-dark .particle:nth-child(6) { top: 70%; right: 70%; animation-delay: 5s; }

/* Neural network overlay for section-dark */
.section-dark .neural-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.3;
}

.section-dark .neural-node {
  position: absolute;
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  animation: neuralPulse 4s ease-in-out infinite;
}

.section-dark .neural-connection {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: neuralFlow 3s ease-in-out infinite;
}

/* Enhanced content styling for section-dark */
.section-dark .container {
  position: relative;
  z-index: 3;
  width: 100%;
}

.section-dark .services-showcase,
.section-dark .stats-grid {
  position: relative;
  z-index: 3;
  margin-top: 4rem;
}

.section-dark .text-center {
  margin-bottom: 3rem;
}

.section-dark .section-title {
  margin-bottom: 1.5rem;
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.section-dark .section-subtitle {
  font-size: 1.25rem;
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Special styling for cards in section-dark */
.section-dark .service-highlight-item,
.section-dark .stat-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  padding: 2.5rem;
  margin: 1rem 0;
}

/* Services showcase specific styling */
.section-dark .services-showcase {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.section-dark .service-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 3rem;
}

.section-dark .service-hero-content {
  padding-right: 2rem;
}

.section-dark .service-hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.section-dark .service-hero-text {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.section-dark .service-hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.section-dark .service-stat {
  text-align: center;
  flex: 1;
}

.section-dark .service-stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.section-dark .service-stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
  font-weight: 500;
}

.section-dark .services-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.section-dark .service-highlight-item {
  text-align: center;
  padding: 2.5rem 2rem;
}

.section-dark .service-highlight-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.section-dark .service-highlight-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.section-dark .service-highlight-desc {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.section-dark .services-cta {
  text-align: center;
  margin-top: 2rem;
}

.section-dark .services-cta-btn {
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
  margin-bottom: 1rem;
}

.section-dark .services-cta-text {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Stats grid specific styling */
.section-dark .stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.section-dark .stat-card {
  text-align: center;
  padding: 3rem 2rem;
  position: relative;
}

.section-dark .stat-card::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  animation: pulse 3s ease-in-out infinite;
}

.section-dark .stat-number {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
  display: block;
  line-height: 1;
}

.section-dark .stat-label {
  font-size: 1.1rem;
  font-weight: 500;
  opacity: 0.9;
  line-height: 1.4;
}

.section-dark .service-highlight-item::before,
.section-dark .stat-card::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.6s ease;
}

.section-dark .service-highlight-item:hover::before,
.section-dark .stat-card:hover::before {
  left: 100%;
}

.section-dark .service-highlight-item:hover,
.section-dark .stat-card:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.4);
}

/* Enhanced styling for section-dark content */
.section-dark .service-hero-title,
.section-dark .service-highlight-title,
.section-dark .stat-number {
  color: var(--white);
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.section-dark .service-hero-text,
.section-dark .service-highlight-desc,
.section-dark .stat-label {
  color: rgba(255, 255, 255, 0.9);
}

.section-dark .service-highlight-tech {
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 15px;
  font-size: 0.9rem;
  backdrop-filter: blur(5px);
}

.section-dark .service-highlight-icon {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.section-dark .service-highlight-icon i {
  color: var(--white);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.section-dark .service-stat-number {
  color: var(--white);
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
  animation: numberGlow 2s ease-in-out infinite alternate;
}

@keyframes numberGlow {
  0% { text-shadow: 0 0 15px rgba(255, 255, 255, 0.6); }
  100% { text-shadow: 0 0 25px rgba(255, 255, 255, 0.8), 0 0 35px rgba(255, 255, 255, 0.4); }
}

/* Animations for section-dark */
@keyframes backgroundShift {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

@keyframes shimmer {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}

@keyframes titleGlow {
  0% { text-shadow: 0 0 30px rgba(255, 255, 255, 0.5); }
  100% { text-shadow: 0 0 50px rgba(255, 255, 255, 0.8), 0 0 100px rgba(255, 255, 255, 0.3); }
}

@keyframes floatParticle {
  0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.6; }
  50% { transform: translateY(-20px) rotate(180deg); opacity: 1; }
}

@keyframes neuralPulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.5); opacity: 1; }
}

@keyframes neuralFlow {
  0% { opacity: 0; transform: scaleX(0); }
  50% { opacity: 1; transform: scaleX(1); }
  100% { opacity: 0; transform: scaleX(0); }
}

.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 4.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--primary);
  letter-spacing: -1px;
}

.section-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

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

/* Features Section */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.feature-card {
  background: var(--white);
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 2px solid transparent;
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.1);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.1), transparent);
  transition: left 0.5s ease;
}

.feature-card:hover::before {
  left: 100%;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2rem;
  color: var(--white);
  transition: all 0.3s ease;
  box-shadow: var(--glow);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(10deg);
  animation: glow 2s infinite;
}

.feature-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.feature-text {
  font-family: 'Inter', sans-serif;
  line-height: 1.8;
  font-size: 1.1rem;
  color: var(--text-light);
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-content {
  animation: slideInLeft 1s ease forwards;
}

.about-text {
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  margin-bottom: 2.5rem;
  color: var(--text-light);
  line-height: 1.8;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(99, 102, 241, 0.05);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.about-feature:hover {
  background: rgba(99, 102, 241, 0.1);
  transform: translateX(10px);
}

.about-feature i {
  color: var(--primary);
  font-size: 1.2rem;
}

.about-feature span {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
}

.about-buttons {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
}

.about-image-container {
  position: relative;
  animation: slideInRight 1s ease forwards;
}

.about-image {
  width: 100%;
  height: 400px;
  border-radius: 30px;
  box-shadow: var(--shadow-lg);
  transition: all 0.5s ease;
  background: var(--gradient);
  position: relative;
  overflow: hidden;
}

.about-image:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

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

.neural-network {
  position: relative;
  width: 200px;
  height: 200px;
}

.node {
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: var(--glow);
  animation: pulse 2s infinite;
}

.node:nth-child(1) { top: 20%; left: 20%; animation-delay: 0s; }
.node:nth-child(2) { top: 20%; right: 20%; animation-delay: 0.5s; }
.node:nth-child(3) { top: 50%; left: 10%; animation-delay: 1s; }
.node:nth-child(4) { top: 50%; right: 10%; animation-delay: 1.5s; }
.node:nth-child(5) { bottom: 20%; left: 30%; animation-delay: 2s; }
.node:nth-child(6) { bottom: 20%; right: 30%; animation-delay: 2.5s; }

.connection {
  position: absolute;
  height: 2px;
  background: var(--white);
  opacity: 0.6;
  animation: glow 3s infinite;
}

.connection:nth-child(7) { top: 30%; left: 25%; width: 50%; transform: rotate(45deg); }
.connection:nth-child(8) { top: 30%; right: 25%; width: 50%; transform: rotate(-45deg); }
.connection:nth-child(9) { top: 60%; left: 15%; width: 70%; transform: rotate(30deg); }
.connection:nth-child(10) { top: 60%; right: 15%; width: 70%; transform: rotate(-30deg); }
.connection:nth-child(11) { bottom: 30%; left: 35%; width: 30%; transform: rotate(15deg); }
.connection:nth-child(12) { bottom: 30%; right: 35%; width: 30%; transform: rotate(-15deg); }

.about-decoration {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: var(--gradient);
  border-radius: 50%;
  opacity: 0.8;
  animation: pulse 2s infinite;
}

/* Menu Section - Completely Redesigned */
.menu-showcase {
  margin-top: 4rem;
}

.menu-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 30px;
  padding: 4rem;
  backdrop-filter: blur(10px);
}

.menu-hero-content {
  animation: slideInLeft 1s ease forwards;
}

.menu-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--accent);
}

.menu-hero-text {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  line-height: 1.8;
  margin-bottom: 3rem;
  color: var(--text-light);
}

.menu-hero-stats {
  display: flex;
  gap: 3rem;
}

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

.menu-stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.menu-stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.menu-hero-image {
  position: relative;
  animation: slideInRight 1s ease forwards;
}

.menu-hero-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  transition: all 0.5s ease;
}

.menu-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(139, 0, 0, 0.3), rgba(220, 20, 60, 0.3));
  border-radius: 20px;
}

.menu-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.menu-highlight-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-highlight-item:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent);
}

.menu-highlight-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  animation: bounce 2s infinite;
}

.menu-highlight-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--accent);
}

.menu-highlight-desc {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.menu-highlight-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
}

.menu-cta {
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  padding: 3rem;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.menu-cta-btn {
  padding: 1.5rem 3rem;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.menu-cta-text {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  color: var(--text-light);
  font-style: italic;
}

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

.stat-card {
  text-align: center;
  padding: 3rem;
  background: rgba(139, 0, 0, 0.2);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  border: 1px solid rgba(139, 0, 0, 0.3);
}

.stat-card:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 20px 40px rgba(139, 0, 0, 0.4);
  background: linear-gradient(135deg, rgba(139, 0, 0, 0.4), rgba(220, 20, 60, 0.4));
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.stat-card:hover .stat-number {
  transform: scale(1.1);
  color: var(--primary);
  animation: float 2s ease-in-out infinite;
}

.stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  color: var(--text-light);
}

/* Experiências Section */
.experiencias-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 4rem;
  margin-top: 4rem;
}

.experiencia-card {
  background: var(--light);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.experiencia-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gradient);
}

.experiencia-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.experiencia-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2rem;
  color: var(--text);
  transition: all 0.3s ease;
}

.experiencia-card:hover .experiencia-icon {
  transform: scale(1.2) rotate(10deg);
  animation: glow 2s infinite;
}

.experiencia-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--accent);
}

.experiencia-text {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: var(--text-light);
}

.experiencia-btn {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

/* Eventos Section */
.eventos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 4rem;
}

.evento-card {
  position: relative;
  overflow: hidden;
  border-radius: 25px;
  transition: all 0.4s ease;
}

.evento-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 25px 50px rgba(139, 0, 0, 0.5);
}

.evento-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: all 0.5s ease;
}

.evento-card:hover .evento-image {
  transform: scale(1.1);
}

.evento-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  padding: 2rem;
  color: white;
}

.evento-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.evento-description {
  font-family: 'Inter', sans-serif;
  opacity: 0.9;
}

/* Testimonials Section */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 4rem;
  margin-top: 4rem;
}

.testimonial-card {
  background: rgba(139, 0, 0, 0.2);
  border: 1px solid rgba(139, 0, 0, 0.3);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 25px 50px rgba(139, 0, 0, 0.5);
  background: linear-gradient(135deg, rgba(139, 0, 0, 0.3), rgba(220, 20, 60, 0.3));
  border-color: var(--accent);
}

.testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--text);
  transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-avatar {
  transform: scale(1.2) rotate(10deg);
  animation: glow 2s infinite;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 2rem;
  line-height: 1.6;
  font-size: 1.2rem;
  color: var(--text-light);
}

.testimonial-stars {
  color: var(--accent);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  font-weight: 700;
  color: var(--accent);
  font-size: 1.3rem;
  font-family: 'Playfair Display', serif;
}

/* Contact Section - Completely Redesigned */
.contact-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
  margin-bottom: 4rem;
}

.contact-hero-content {
  animation: slideInLeft 1s ease forwards;
}

.contact-hero-text {
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  color: var(--text-light);
  margin-bottom: 3rem;
  line-height: 1.8;
}

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

.contact-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.contact-feature:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(10px);
}

.contact-feature i {
  color: var(--accent);
  font-size: 1.5rem;
}

.contact-feature span {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
}

.contact-form-container {
  animation: slideInRight 1s ease forwards;
}

.contact-form {
  background: rgba(255, 255, 255, 0.05);
  padding: 3rem;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.form-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.contact-input,
.contact-textarea {
  width: 100%;
  padding: 1.2rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-family: 'Inter', sans-serif;
}

.contact-input:focus,
.contact-textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(255, 69, 0, 0.3);
  outline: none;
  transform: scale(1.02);
  background: rgba(255, 255, 255, 0.1);
}

.contact-textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-submit {
  width: 100%;
  padding: 1.5rem;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.contact-info-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
}

.contact-info-item i {
  color: var(--accent);
  font-size: 2rem;
}

.contact-info-item h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--accent);
}

.contact-info-item p {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  color: var(--text-light);
}

/* Footer */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 6rem 0 3rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-section {
  animation: fadeInUp 0.8s ease forwards;
}

.footer-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--primary);
  transition: all 0.3s ease;
}

.footer-title:hover {
  color: var(--primary);
  transform: translateX(5px);
}

.footer-description {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: var(--text-light);
}

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

.social-link {
  width: 40px;
  height: 40px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: var(--glow);
}

.social-link:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: var(--glow-lg);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-contact-item {
  font-family: 'Inter', sans-serif;
  opacity: 0.9;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
}

.footer-contact-item:hover {
  color: var(--accent);
  transform: translateX(5px);
}

.footer-contact-item i {
  color: var(--accent);
  font-size: 1.2rem;
}

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

.footer-link {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  text-decoration: none;
  opacity: 0.8;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  padding: 0.5rem;
  border-radius: 8px;
}

.footer-link:hover {
  color: var(--primary);
  transform: translateX(8px) scale(1.05);
  background: rgba(99, 102, 241, 0.2);
  padding: 0.8rem;
  border-radius: 12px;
  opacity: 1;
}

.footer-newsletter-text {
  font-family: 'Inter', sans-serif;
  margin-bottom: 2rem;
  opacity: 0.9;
  font-size: 1.1rem;
  line-height: 1.6;
}

.footer-newsletter-form {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-newsletter-input {
  flex: 1;
  min-width: 250px;
  padding: 1.2rem;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  background: rgba(99, 102, 241, 0.2);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
}

.footer-newsletter-input:focus {
  background: rgba(99, 102, 241, 0.3);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.3);
  outline: none;
}

.footer-newsletter-btn {
  padding: 1.2rem 2rem;
  font-size: 1.1rem;
  font-family: 'Inter', sans-serif;
}

.footer-copyright {
  font-family: 'Inter', sans-serif;
  text-align: center;
  padding-top: 3rem;
  border-top: 2px solid rgba(99, 102, 241, 0.3);
  opacity: 0.8;
  font-size: 1.1rem;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  max-width: 500px;
  background: var(--white);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  border: 2px solid var(--primary);
  transform: translateX(100%);
  animation: slideInRight 0.8s ease 2s forwards;
}

.cookie-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.cookie-text {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.cookie-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: flex-end;
}

.cookie-link {
  font-family: 'Inter', sans-serif;
  color: var(--primary);
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  align-self: center;
  transition: all 0.3s ease;
}

.cookie-link:hover {
  color: var(--primary);
  transform: scale(1.05);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
}

.btn::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;
}

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

.btn-primary {
  background: var(--gradient);
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  animation: glow 2s infinite;
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  position: relative;
  overflow: hidden;
}

.btn-outline::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient);
  transition: left 0.3s ease;
  z-index: -1;
}

.btn-outline:hover::after {
  left: 0;
}

.btn-outline:hover {
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

/* Animations */
@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

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

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(139, 0, 0, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(139, 0, 0, 0.6);
  }
}

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

/* Technologies Section */
.technologies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.technology-card {
  background: var(--white);
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.1);
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.technology-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.technology-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2rem;
  color: var(--white);
  transition: all 0.3s ease;
  box-shadow: var(--glow);
}

.technology-card:hover .technology-icon {
  transform: scale(1.1) rotate(10deg);
  animation: glow 2s infinite;
}

.technology-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary);
}

.technology-text {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  font-size: 1.1rem;
  color: var(--text-light);
}

/* Projects Section */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.project-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.1);
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.project-visual {
  height: 250px;
  background: var(--gradient);
  position: relative;
  overflow: hidden;
}

.project-scene {
  width: 100%;
  height: 100%;
  position: relative;
}

.project-character,
.project-world,
.project-strategy,
.project-ai,
.project-mobile,
.project-ui {
  position: absolute;
  background: var(--white);
  border-radius: 50%;
  animation: float 3s ease-in-out infinite;
}

.project-character {
  width: 60px;
  height: 60px;
  top: 20%;
  left: 20%;
  animation-delay: 0s;
}

.project-world {
  width: 40px;
  height: 40px;
  top: 60%;
  right: 30%;
  animation-delay: 1s;
}

.project-strategy {
  width: 50px;
  height: 50px;
  top: 30%;
  right: 20%;
  animation-delay: 0.5s;
}

.project-ai {
  width: 35px;
  height: 35px;
  bottom: 30%;
  left: 30%;
  animation-delay: 1.5s;
}

.project-mobile {
  width: 45px;
  height: 45px;
  top: 40%;
  left: 40%;
  animation-delay: 0.8s;
}

.project-ui {
  width: 30px;
  height: 30px;
  bottom: 20%;
  right: 20%;
  animation-delay: 2s;
}

.project-content {
  padding: 2rem;
}

.project-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary);
}

.project-description {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.project-tech {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.tech-tag {
  background: rgba(99, 102, 241, 0.1);
  color: var(--primary);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  font-family: 'JetBrains Mono', monospace;
}

/* Thank You Page Styles */
.thank-you-container {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 0;
}

.thank-you-emoji {
  font-size: 6rem;
  margin-bottom: 2rem;
  animation: bounce 2s infinite;
}

.thank-you-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--primary);
  letter-spacing: -1px;
}

.thank-you-text {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  line-height: 1.6;
  color: var(--text-light);
  margin-bottom: 4rem;
}

.thank-you-section {
  margin: 4rem 0;
}

.thank-you-section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: var(--primary);
}

.thank-you-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.thank-you-item {
  background: var(--white);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.1);
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.thank-you-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.thank-you-item-emoji {
  font-size: 3rem;
  margin-bottom: 1rem;
  animation: float 3s ease-in-out infinite;
}

.thank-you-item-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary);
}

.thank-you-item-text {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-light);
}

.thank-you-buttons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.thank-you-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.2rem 2rem;
  font-size: 1.1rem;
}

.thank-you-btn-icon {
  font-size: 1.2rem;
}

.thank-you-home-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem 3rem;
  font-size: 1.3rem;
}

.thank-you-home-icon {
  font-size: 1.4rem;
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.mobile-nav.active {
  left: 0;
}

.mobile-nav-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
  margin: 0;
  padding: 0;
}

.mobile-nav-link {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 1rem 2rem;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.mobile-nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient);
  transition: all 0.3s ease;
  z-index: -1;
}

.mobile-nav-link:hover::before {
  left: 0;
}

.mobile-nav-link:hover {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.mobile-nav-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--text);
  cursor: pointer;
  transition: all 0.3s ease;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav-close:hover {
  color: var(--primary);
  background: rgba(99, 102, 241, 0.1);
  transform: rotate(90deg);
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  
  /* Section-dark responsive styles */
  .section-dark {
    padding: 4rem 0;
  }
  
  .section-dark .section-title {
    font-size: 2.5rem;
  }
  
  .section-dark .section-subtitle {
    font-size: 1.1rem;
  }
  
  .section-dark .service-hero {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .section-dark .service-hero-content {
    padding-right: 0;
  }
  
  .section-dark .service-hero-title {
    font-size: 2rem;
  }
  
  .section-dark .service-hero-stats {
    justify-content: center;
    gap: 1.5rem;
  }
  
  .section-dark .services-highlights {
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
  
  .section-dark .service-highlight-item {
    padding: 2rem 1.5rem;
  }
  
  .section-dark .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .section-dark .stat-card {
    padding: 2rem 1rem;
  }
  
  .section-dark .stat-number {
    font-size: 2.5rem;
  }
  
  .mobile-menu {
    display: block;
  }
  
  .hero-title {
    font-size: 4rem;
  }
  
  .section-title {
    font-size: 3rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .eventos-grid {
    grid-template-columns: 1fr;
  }
  
  .about-grid,
.contato-grid,
.contact-hero {
  grid-template-columns: 1fr;
  gap: 3rem;
}
  
  .menu-hero {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
  }
  
  .menu-hero-stats {
    justify-content: center;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .about-buttons {
  flex-direction: column;
}
  
  .container {
    padding: 0 1rem;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }
  
  body {
    overflow-x: hidden;
  }
  
  .cookie-banner {
    bottom: 1rem;
    right: 1rem;
    left: 1rem;
    max-width: none;
  }
  
  .feature-card:hover {
    transform: translateY(-10px) scale(1.03);
  }
  
  .nav-link:hover {
    transform: translateY(-2px) scale(1.02);
  }
  
  .btn:hover {
    transform: translateY(-3px) scale(1.03);
  }
  
  .experiencia-card:hover {
    transform: translateY(-5px) scale(1.02);
  }
  
  .stat-card:hover {
    transform: translateY(-3px) scale(1.02);
  }
  
  .menu-highlight-item:hover {
    transform: translateY(-5px) scale(1.01);
  }
  
  .evento-card:hover {
    transform: translateY(-3px) scale(1.01);
  }
  
  .testimonial-card:hover {
    transform: translateY(-5px) scale(1.02);
  }
  
  .contact-info-item:hover {
    transform: translateY(-3px);
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .container {
    padding: 0 0.5rem;
  }
  
  .header {
    padding: 1rem 0;
  }
  
  .logo-text {
    font-size: 1.8rem;
  }
  
  .logo-icon {
    width: 50px;
    height: 50px;
  }
  
  .logo-icon i {
    font-size: 1.5rem;
  }
  
  /* Section-dark mobile styles */
  .section-dark {
    padding: 3rem 0;
  }
  
  .section-dark .section-title {
    font-size: 2rem;
  }
  
  .section-dark .service-hero-stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  .section-dark .stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .section-dark .stat-card {
    padding: 1.5rem 1rem;
  }
  
  .section-dark .stat-number {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .feature-card:hover {
    transform: translateY(-5px) scale(1.02);
  }
  
  .nav-link:hover {
    transform: translateY(-1px) scale(1.01);
  }
  
  .btn:hover {
    transform: translateY(-2px) scale(1.02);
  }
  
  .experiencia-card:hover {
    transform: translateY(-3px) scale(1.01);
  }
  
  .stat-card:hover {
    transform: translateY(-3px) scale(1.02);
  }
  
  .menu-highlight-item:hover {
    transform: translateY(-5px) scale(1.01);
  }
  
  .evento-card:hover {
    transform: translateY(-3px) scale(1.01);
  }
  
  .testimonial-card:hover {
    transform: translateY(-3px) scale(1.01);
  }
  
  .contact-info-item:hover {
    transform: translateY(-2px);
  }
  
  /* Additional mobile improvements */
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .hero-btn {
    width: 100%;
    justify-content: center;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  .hero-stat {
    text-align: center;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .technologies-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-newsletter-form {
    flex-direction: column;
    gap: 1rem;
  }
  
  .footer-newsletter-input {
    width: 100%;
  }
} 