/* ===== VARIABLES ===== */
:root {
  /* Color Scheme - Split-Complementary */
  --primary-color: #2c6fb0;
  --primary-dark: #1c5b96;
  --primary-light: #4a8fcc;
  
  --secondary-color: #e67a22;
  --secondary-dark: #c05e12;
  --secondary-light: #f39746;
  
  --accent-color: #9c3fa4;
  --accent-dark: #7c2984;
  --accent-light: #bc5fc4;
  
  --text-dark: #333333;
  --text-medium: #555555;
  --text-light: #ffffff;
  
  --background-light: #f8f9fa;
  --background-white: #ffffff;
  --background-glass: rgba(255, 255, 255, 0.1);
  --background-glass-darker: rgba(255, 255, 255, 0.2);
  
  /* Typography */
  --heading-font: 'Inter', sans-serif;
  --body-font: 'IBM Plex Sans', sans-serif;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 3rem;
  --space-xl: 5rem;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
  --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.1);
  
  /* Glassmorphism */
  --glass-background: rgba(255, 255, 255, 0.15);
  --glass-border: rgba(255, 255, 255, 0.2);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  --glass-blur: 10px;
  
  /* Animation */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ===== RESET & BASE STYLES ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  margin-bottom: var(--space-sm);
  line-height: 1.2;
  font-weight: 700;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: var(--space-md);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--space-md);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: var(--space-sm);
}

p {
  margin-bottom: var(--space-sm);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

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

ul, ol {
  list-style-position: inside;
  margin-bottom: var(--space-md);
}

/* ===== UTILITY CLASSES ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-lg);
  position: relative;
  color: var(--text-dark);
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  margin: var(--space-sm) auto 0;
  border-radius: var(--radius-sm);
}

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

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

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

.flex {
  display: flex;
}

.flex-column {
  flex-direction: column;
}

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

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.grid {
  display: grid;
}

.hidden {
  display: none;
}

/* Glassmorphism effect */
.glassmorphism {
  background: var(--glass-background);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--glass-shadow);
  padding: var(--space-md);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.glassmorphism:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-medium) var(--transition-bounce);
  border: none;
  outline: none;
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-3px);
  text-decoration: none;
}

.btn:active {
  transform: translateY(-1px);
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--text-light);
  box-shadow: 0 4px 6px rgba(44, 111, 176, 0.3);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  color: var(--text-light);
  box-shadow: 0 6px 10px rgba(44, 111, 176, 0.4);
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: var(--text-light);
  box-shadow: 0 4px 6px rgba(230, 122, 34, 0.3);
}

.btn-secondary:hover {
  background-color: var(--secondary-dark);
  color: var(--text-light);
  box-shadow: 0 6px 10px rgba(230, 122, 34, 0.4);
}

.btn-accent {
  background-color: var(--accent-color);
  color: var(--text-light);
  box-shadow: 0 4px 6px rgba(156, 63, 164, 0.3);
}

.btn-accent:hover {
  background-color: var(--accent-dark);
  color: var(--text-light);
  box-shadow: 0 6px 10px rgba(156, 63, 164, 0.4);
}

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

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.full-width {
  width: 100%;
}

/* ===== HEADER & NAVIGATION ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all var(--transition-medium);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-sm) 0;
}

.logo {
  z-index: 1001;
}

.logo a {
  text-decoration: none;
}

.logo h1 {
  font-size: 1.8rem;
  margin: 0;
  color: var(--primary-dark);
  transition: color var(--transition-fast);
}

.logo h1:hover {
  color: var(--primary-color);
}

.main-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav li {
  margin-left: var(--space-md);
}

.main-nav a {
  font-weight: 500;
  color: var(--text-dark);
  text-decoration: none;
  position: relative;
  padding: 0.5rem 0;
  transition: color var(--transition-fast);
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width var(--transition-medium) var(--transition-bounce);
}

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

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

.burger-menu {
  display: none;
  cursor: pointer;
  z-index: 1001;
}

.burger-menu span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--text-dark);
  margin: 5px 0;
  transition: all var(--transition-medium);
}

/* ===== HERO SECTION ===== */
.hero-section {
  position: relative;
  padding: var(--space-xl) 0;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 70px; /* Account for fixed header */
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

.hero-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.hero-content {
  max-width: 700px;
  padding: var(--space-lg);
  animation: fadeInUp 1s var(--transition-bounce) both;
  background: rgba(0, 0, 0, 0.3);
}

.hero-content h1, 
.hero-content p {
  color: var(--text-light);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-content h1 {
  margin-bottom: var(--space-sm);
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: var(--space-md);
}

.hero-buttons {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

/* ===== VISION SECTION ===== */
.vision-section {
  padding: var(--space-xl) 0;
  background-color: var(--background-light);
}

.vision-content {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.vision-text {
  flex: 1;
}

.vision-image {
  flex: 1;
  text-align: center;
}

.vision-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  margin: 0 auto;
  transition: transform var(--transition-medium) var(--transition-bounce);
}

.vision-image img:hover {
  transform: scale(1.03);
}

/* ===== STATISTICS SECTION ===== */
.statistics-section {
  padding: var(--space-xl) 0;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
  color: var(--text-light);
}

.statistics-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-md);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
  font-family: var(--heading-font);
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-card p {
  font-size: 1.1rem;
  color: var(--text-light);
}

.statistics-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

/* ===== PROCESS SECTION ===== */
.process-section {
  padding: var(--space-xl) 0;
  background-color: var(--background-white);
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.process-step {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  position: relative;
}

.step-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-light);
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-content {
  flex: 2;
}

.step-content h3 {
  color: var(--primary-dark);
  margin-bottom: var(--space-xs);
}

.process-step img {
  border-radius: var(--radius-md);
  flex: 1;
  max-width: 300px;
  box-shadow: var(--shadow-md);
  object-fit: cover;
  margin: 0 auto;
}

/* ===== RECURSOS SECTION ===== */
.recursos-section {
  padding: var(--space-xl) 0;
  background-color: var(--background-light);
}

.recursos-container {
  max-width: 1000px;
  margin: 0 auto;
}

.recursos-intro {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.recursos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-md);
}

.recurso-card {
  background-color: var(--background-white);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.recurso-card h3 {
  color: var(--primary-dark);
  margin-bottom: var(--space-xs);
}

.recurso-card a {
  margin-top: auto;
  color: var(--primary-color);
  font-weight: 600;
  position: relative;
  display: inline-block;
  padding-bottom: 3px;
}

.recurso-card a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width var(--transition-medium) var(--transition-bounce);
}

.recurso-card a:hover::after {
  width: 100%;
}

/* ===== CUSTOMER STORIES SECTION ===== */
.stories-section {
  padding: var(--space-xl) 0;
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent-color) 100%);
  color: var(--text-light);
}

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

.stories-section .section-title::after {
  background: var(--text-light);
}

.stories-slider {
  position: relative;
  overflow: hidden;
}

.story-card {
  padding: var(--space-lg);
  margin: 0 var(--space-sm);
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
}

.story-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.story-content img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 0 auto var(--space-md);
  object-fit: cover;
  border: 5px solid rgba(255, 255, 255, 0.2);
}

.story-content h3 {
  color: var(--text-light);
  margin-bottom: var(--space-xs);
}

.client-position {
  font-style: italic;
  margin-bottom: var(--space-md);
  opacity: 0.8;
}

.testimonial {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.client-name {
  font-weight: 700;
}

.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: var(--space-md);
}

.prev-btn, .next-btn {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: var(--text-light);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
}

.prev-btn:hover, .next-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

.prev-btn::before {
  content: '←';
}

.next-btn::before {
  content: '→';
}

.slider-dots {
  display: flex;
  gap: 10px;
  margin: 0 var(--space-md);
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: background var(--transition-fast), transform var(--transition-medium) var(--transition-bounce);
}

.dot.active {
  background: var(--text-light);
  transform: scale(1.2);
}

/* ===== ACCOLADES SECTION ===== */
.accolades-section {
  padding: var(--space-xl) 0;
  background-color: var(--background-white);
}

.accolades-content {
  display: flex;
  gap: var(--space-lg);
  align-items: center;
}

.accolades-text {
  flex: 1;
}

.accolades-gallery {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-md);
}

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

.gallery-item img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  margin: 0 auto var(--space-sm);
  transition: transform var(--transition-medium) var(--transition-bounce);
  object-fit: cover;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item p {
  font-weight: 600;
  color: var(--primary-dark);
}

/* ===== COMMUNITY SECTION ===== */
.community-section {
  padding: var(--space-xl) 0;
  background-color: var(--background-light);
}

.community-content {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.community-image {
  flex: 1;
}

.community-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  margin: 0 auto;
}

.community-text {
  flex: 1;
}

.community-text h3 {
  color: var(--primary-dark);
  margin-bottom: var(--space-sm);
}

.community-cta {
  margin-top: var(--space-md);
}

.event-calendar {
  margin-top: var(--space-lg);
}

.event-calendar h3 {
  text-align: center;
  margin-bottom: var(--space-md);
  color: var(--primary-dark);
}

.events-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
}

.event-item {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
  background-color: var(--background-white);
  border-radius: var(--radius-md);
  padding: var(--space-sm);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  flex: 1;
  min-width: 280px;
  max-width: 350px;
}

.event-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: var(--text-light);
  border-radius: var(--radius-sm);
  padding: var(--space-xs);
  min-width: 60px;
  text-align: center;
}

.event-date .day {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.event-date .month {
  font-size: 0.8rem;
  text-transform: uppercase;
}

.event-details {
  flex: 1;
}

.event-details h4 {
  margin-bottom: var(--space-xs);
  color: var(--primary-dark);
  font-size: 1.1rem;
}

.event-details p {
  color: var(--text-medium);
  font-size: 0.9rem;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  padding: var(--space-xl) 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
  color: var(--text-light);
}

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

.contact-section .section-title::after {
  background: var(--text-light);
}

.contact-content {
  display: flex;
  gap: var(--space-lg);
}

.contact-info {
  flex: 1;
}

.contact-info h3 {
  color: var(--text-light);
  margin-bottom: var(--space-md);
}

.contact-details {
  margin-top: var(--space-lg);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--space-md);
}

.contact-item i {
  margin-right: var(--space-sm);
  font-size: 1.5rem;
  color: var(--secondary-light);
}

.contact-form-container {
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
}

.contact-form-container h3 {
  color: var(--text-light);
  margin-bottom: var(--space-md);
  text-align: center;
}

.contact-form {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.form-group {
  flex: 1 1 calc(50% - var(--space-sm));
  margin-bottom: var(--space-sm);
}

.form-group.full-width {
  flex: 1 1 100%;
}

.form-group label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  font-family: var(--body-font);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(230, 122, 34, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.checkbox-container {
  display: flex;
  align-items: flex-start;
}

.checkbox-container input[type="checkbox"] {
  width: auto;
  margin-right: var(--space-xs);
  flex-shrink: 0;
}

/* ===== FOOTER ===== */
.footer {
  background-color: var(--text-dark);
  color: var(--text-light);
  padding: var(--space-lg) 0 var(--space-sm);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.footer-logo {
  flex: 1 1 300px;
}

.footer-logo h2 {
  font-size: 1.8rem;
  margin-bottom: var(--space-xs);
  color: var(--text-light);
}

.footer-links {
  flex: 2 1 600px;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-links-column {
  flex: 1 1 200px;
}

.footer-links-column h3 {
  font-size: 1.2rem;
  margin-bottom: var(--space-sm);
  color: var(--text-light);
}

.footer-links-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-column li {
  margin-bottom: var(--space-xs);
}

.footer-links-column a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast);
  text-decoration: none;
}

.footer-links-column a:hover {
  color: var(--text-light);
  text-decoration: none;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.social-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast);
  text-decoration: none;
  margin-right: var(--space-sm);
}

.social-links a:hover {
  color: var(--text-light);
  text-decoration: none;
}

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

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ===== SUCCESS PAGE ===== */
.success-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--background-light);
  padding: var(--space-xl) var(--space-md);
}

.success-icon {
  font-size: 5rem;
  color: var(--primary-color);
  margin-bottom: var(--space-md);
}

.success-content h1 {
  color: var(--primary-dark);
  margin-bottom: var(--space-md);
}

.success-content p {
  max-width: 600px;
  margin: 0 auto var(--space-lg);
}

/* ===== PRIVACY & TERMS PAGES ===== */
.legal-page {
  padding-top: 120px;
  padding-bottom: var(--space-xl);
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--background-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
}

.legal-content h1 {
  margin-bottom: var(--space-lg);
  color: var(--primary-dark);
}

.legal-content h2 {
  color: var(--primary-color);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
  font-size: 1.5rem;
}

.legal-content p {
  margin-bottom: var(--space-md);
}

.legal-content ul {
  margin-bottom: var(--space-md);
  padding-left: var(--space-md);
}

.legal-content li {
  margin-bottom: var(--space-xs);
}

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fade-in {
  animation: fadeIn 1s var(--transition-medium) both;
}

.fade-in-up {
  animation: fadeInUp 1s var(--transition-bounce) both;
}

/* ===== RESPONSIVENESS ===== */
@media (max-width: 1024px) {
  .vision-content,
  .accolades-content,
  .community-content,
  .contact-content {
    flex-direction: column;
  }
  
  .process-step {
    flex-direction: column;
    text-align: center;
  }
  
  .step-content {
    order: 2;
  }
  
  .process-step img {
    order: 1;
    margin-bottom: var(--space-md);
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.95);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity var(--transition-medium), visibility var(--transition-medium);
    opacity: 0;
    visibility: hidden;
  }
  
  .main-nav.active {
    opacity: 1;
    visibility: visible;
  }
  
  .main-nav ul {
    flex-direction: column;
    align-items: center;
  }
  
  .main-nav li {
    margin: var(--space-sm) 0;
  }
  
  .burger-menu {
    display: block;
  }
  
  .burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .burger-menu.active span:nth-child(2) {
    opacity: 0;
  }
  
  .burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }
  
  .hero-content {
    text-align: center;
    padding: var(--space-md);
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .footer-content {
    flex-direction: column;
    gap: var(--space-md);
  }
  
  .footer-links {
    flex-direction: column;
    gap: var(--space-md);
  }
  
  .form-group {
    flex: 1 1 100%;
  }
}

@media (max-width: 480px) {
  :root {
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
  }
  
  .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }
  
  .container {
    padding: 0 var(--space-sm);
  }
  
  .event-item {
    min-width: 100%;
  }
  
  .statistics-container {
    grid-template-columns: 1fr;
  }
}

/* ===== COOKIE NOTICE ===== */
#cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  padding: 15px;
  text-align: center;
  z-index: 9999;
}

#cookie-notice p {
  margin: 0;
  padding: 10px;
}

#accept-cookies {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 8px 15px;
  border-radius: 4px;
  cursor: pointer;
  margin-left: 15px;
  transition: background-color var(--transition-fast);
}

#accept-cookies:hover {
  background: var(--primary-dark);
}

@media (max-width: 600px) {
  #cookie-notice div {
    flex-direction: column;
  }
  
  #accept-cookies {
    margin: 10px 0 0;
    width: 100%;
  }
}