:root {
  /* Основные цвета (монохромная схема) */
  --primary-color: #2c3e50;
  --primary-light: #3a5066;
  --primary-dark: #1a2530;
  --accent-color: #3498db;
  --accent-light: #5dade2;
  --accent-dark: #2980b9;
  
  /* Нейтральные цвета */
  --neutral-100: #ffffff;
  --neutral-200: #f8f9fa;
  --neutral-300: #e9ecef;
  --neutral-400: #dee2e6;
  --neutral-500: #adb5bd;
  --neutral-600: #6c757d;
  --neutral-700: #495057;
  --neutral-800: #343a40;
  --neutral-900: #212529;
  
  /* Функциональные цвета */
  --success-color: #2ecc71;
  --warning-color: #f39c12;
  --danger-color: #e74c3c;
  --info-color: #3498db;
  
  /* Градиенты */
  --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  --gradient-accent: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
  --gradient-overlay: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7));
  --gradient-light-overlay: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.5));
  
  /* Тени */
  --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-xl: 0 12px 24px rgba(0,0,0,0.2);
  
  /* Радиусы */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 50%;
  
  /* Типография */
  --font-heading: 'Manrope', sans-serif;
  --font-body: 'Rubik', sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-md: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;
  
  /* Переходы */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Размеры контейнера */
  --container-padding: 2rem;
  --container-max-width: 1200px;
  
  /* Z-индексы */
  --z-header: 1000;
  --z-modal: 2000;
  --z-tooltip: 3000;
  --z-cookie: 9999;
}

/* Базовые стили */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  font-size: var(--font-size-md);
  line-height: 1.6;
  color: var(--neutral-800);
  background-color: var(--neutral-200);
  overflow-x: hidden;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: color var(--transition-normal);
}

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

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

h1 {
  font-size: var(--font-size-5xl);
}

h2 {
  font-size: var(--font-size-4xl);
}

h3 {
  font-size: var(--font-size-3xl);
}

h4 {
  font-size: var(--font-size-2xl);
}

h5 {
  font-size: var(--font-size-xl);
}

h6 {
  font-size: var(--font-size-lg);
}

p {
  margin-bottom: 1rem;
}

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

ul, ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

/* Утилиты */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-right: auto;
  margin-left: auto;
  padding-right: var(--container-padding);
  padding-left: var(--container-padding);
}

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

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

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

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

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 1rem;
}

.mb-4 {
  margin-bottom: 1.5rem;
}

.mb-5 {
  margin-bottom: 3rem;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-3 {
  margin-top: 1rem;
}

.mt-4 {
  margin-top: 1.5rem;
}

.mt-5 {
  margin-top: 3rem;
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-3 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-4 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.py-5 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
  font-weight: 800;
  color: var(--primary-color);
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--gradient-accent);
  margin: 1rem auto 0;
  border-radius: var(--radius-full);
}

.section-description {
  text-align: center;
  max-width: 800px;
  margin: -1.5rem auto 3rem;
  color: var(--neutral-600);
  font-size: var(--font-size-lg);
}

/* Кнопки */
.btn {
  display: inline-block;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  border: 2px solid transparent;
  padding: 0.75rem 1.5rem;
  font-size: var(--font-size-md);
  line-height: 1.5;
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
  cursor: pointer;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: var(--shadow-sm);
}

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

.btn:active {
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--neutral-100);
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--neutral-100);
}

.btn-secondary {
  background-color: var(--accent-color);
  color: var(--neutral-100);
  border-color: var(--accent-color);
}

.btn-secondary:hover {
  background-color: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--neutral-100);
}

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

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--neutral-100);
}

.btn-text {
  background-color: transparent;
  color: var(--accent-color);
  border: none;
  padding: 0.5rem 0;
  font-weight: 600;
  text-transform: none;
  box-shadow: none;
  position: relative;
  overflow: hidden;
}

.btn-text::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--accent-color);
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s ease-out;
}

.btn-text:hover {
  color: var(--accent-dark);
  transform: none;
  box-shadow: none;
}

.btn-text:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

button, input[type='submit'] {
  cursor: pointer;
  font-family: var(--font-heading);
}

/* Хедер */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
  z-index: var(--z-header);
  transition: all var(--transition-normal);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: var(--font-size-xl);
}

.logo a {
  color: var(--primary-color);
  text-decoration: none;
}

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

.logo span {
  color: var(--accent-color);
}

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

.main-nav li {
  margin: 0 1rem;
}

.main-nav a {
  color: var(--primary-color);
  font-weight: 600;
  font-size: var(--font-size-md);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding: 0.5rem 0;
}

.main-nav a::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--accent-color);
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s ease-out;
}

.main-nav a:hover {
  color: var(--accent-color);
  text-decoration: none;
}

.main-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: var(--radius-full);
  transition: all var(--transition-normal);
}

/* Hero Section */
.hero {
  position: relative;
  padding: 8rem 0 6rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: var(--neutral-100);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-overlay);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero-content h2 {
  font-size: var(--font-size-5xl);
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--neutral-100);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-out;
}

.hero-content p {
  font-size: var(--font-size-xl);
  margin-bottom: 2.5rem;
  color: var(--neutral-100);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-out 0.2s backwards;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  animation: fadeInUp 1s ease-out 0.4s backwards;
}

/* Servicios Section */
.servicios {
  padding: 5rem 0;
  background-color: var(--neutral-100);
}

.carousel-container {
  position: relative;
  overflow: hidden;
  margin: 0 -1rem;
}

.carousel-track {
  display: flex;
  transition: transform var(--transition-slow);
  padding: 1rem;
}

.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  background-color: var(--neutral-100);
  color: var(--primary-color);
  border: none;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  z-index: 2;
  opacity: 0.8;
  transition: all var(--transition-normal);
}

.carousel-button:hover {
  opacity: 1;
  background-color: var(--primary-color);
  color: var(--neutral-100);
}

.carousel-button.prev {
  left: 20px;
}

.carousel-button.next {
  right: 20px;
}

.card {
  flex: 0 0 calc(33.333% - 2rem);
  margin: 0 1rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-color: var(--neutral-100);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.card-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.card:hover .card-image img {
  transform: scale(1.05);
}

.card-content {
  padding: 1.5rem;
  flex-grow: 1;
  text-align: center;
}

.card-content h3 {
  margin-bottom: 1rem;
  color: var(--primary-color);
  font-size: var(--font-size-xl);
}

.card-content p {
  color: var(--neutral-700);
  margin-bottom: 1.5rem;
}

/* Clientes Section */
.clientele {
  padding: 5rem 0;
  background-color: var(--neutral-200);
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.client-card {
  background-color: var(--neutral-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.client-card:hover {
  transform: translateY(-10px);
}

.image-container {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.client-card:hover .image-container img {
  transform: scale(1.05);
}

.client-card h3 {
  margin: 1.5rem 0 0.5rem;
  padding: 0 1.5rem;
  color: var(--primary-color);
  text-align: center;
}

.client-card p {
  padding: 0 1.5rem 1.5rem;
  color: var(--neutral-700);
  text-align: center;
}

/* Recursos Externos Section */
.recursos-externos {
  padding: 5rem 0;
  background: var(--gradient-primary);
  color: var(--neutral-100);
}

.recursos-externos .section-title,
.recursos-externos .section-description {
  color: var(--neutral-100);
}

.recursos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
}

.recurso-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), background-color var(--transition-normal);
  text-align: center;
}

.recurso-card:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.15);
}

.recurso-card h3 {
  color: var(--neutral-100);
  margin-bottom: 1rem;
}

.recurso-card p {
  color: var(--neutral-300);
  margin-bottom: 1.5rem;
}

.recurso-card .btn-outline {
  color: var(--neutral-100);
  border-color: var(--neutral-100);
}

.recurso-card .btn-outline:hover {
  background-color: var(--neutral-100);
  color: var(--primary-color);
}

/* Testimonios Section */
.testimonios {
  padding: 5rem 0;
  background-color: var(--neutral-100);
}

.testimonials-carousel {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-item {
  display: none;
  padding: 2rem;
  background-color: var(--neutral-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.testimonial-item.active {
  display: flex;
  animation: fadeIn 0.5s ease-out;
}

.testimonial-image {
  flex-shrink: 0;
}

.testimonial-image img {
  width: 120px;
  height: 120px;
  border-radius: var(--radius-full);
  object-fit: cover;
  border: 4px solid var(--primary-light);
}

.testimonial-content {
  flex-grow: 1;
}

.testimonial-text {
  font-style: italic;
  color: var(--neutral-700);
  font-size: var(--font-size-lg);
  margin-bottom: 1.5rem;
  position: relative;
}

.testimonial-text::before {
  content: '"';
  font-family: Georgia, serif;
  font-size: 5rem;
  position: absolute;
  left: -1.5rem;
  top: -2rem;
  opacity: 0.2;
  color: var(--primary-color);
}

.testimonial-content h4 {
  margin-bottom: 0.25rem;
  color: var(--primary-color);
  font-size: var(--font-size-xl);
}

.testimonial-position {
  color: var(--neutral-600);
  font-size: var(--font-size-md);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: var(--radius-full);
  background-color: var(--neutral-400);
  cursor: pointer;
  transition: background-color var(--transition-normal);
}

.dot.active {
  background-color: var(--primary-color);
  transform: scale(1.2);
}

/* Prensa Section */
.prensa {
  padding: 5rem 0;
  background-color: var(--neutral-200);
}

.press-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.press-card {
  background-color: var(--neutral-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.press-card:hover {
  transform: translateY(-10px);
}

.press-card .card-image {
  width: 100%;
  height: 220px;
}

.press-card .card-content {
  padding: 1.5rem;
  flex-grow: 1;
  width: 100%;
  text-align: center;
}

.press-card h3 {
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.press-date {
  color: var(--neutral-600);
  font-size: var(--font-size-sm);
  margin-bottom: 1rem;
}

/* Careers Section */
.careers {
  padding: 5rem 0;
  background-color: var(--neutral-100);
}

.careers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}

.career-card {
  background-color: var(--neutral-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.career-card:hover {
  transform: translateY(-10px);
}

.career-card .card-image {
  width: 100%;
  height: 200px;
}

.career-card .card-content {
  padding: 1.5rem;
  flex-grow: 1;
  text-align: center;
}

.career-card h3 {
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.career-card p {
  margin-bottom: 1.5rem;
  color: var(--neutral-700);
}

/* FAQ Section */
.faq {
  padding: 5rem 0;
  background-color: var(--neutral-200);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-color: var(--neutral-100);
  box-shadow: var(--shadow-md);
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--neutral-100);
  transition: background-color var(--transition-normal);
}

.faq-question:hover {
  background-color: var(--neutral-300);
}

.faq-question h3 {
  margin: 0;
  font-size: var(--font-size-lg);
  color: var(--primary-color);
}

.faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-color);
  transition: transform var(--transition-normal);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal), padding var(--transition-normal);
}

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

.faq-item.active .faq-answer {
  padding: 0 1.5rem 1.5rem;
  max-height: 1000px;
}

/* Contacto Section */
.contacto {
  padding: 5rem 0;
  background-color: var(--neutral-100);
}

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

.contact-info {
  padding-right: 2rem;
}

.contact-info h2 {
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.contact-info p {
  margin-bottom: 2rem;
  color: var(--neutral-700);
}

.contact-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.contact-item h3 {
  font-size: var(--font-size-lg);
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.contact-item p {
  color: var(--neutral-700);
  margin-bottom: 0;
}

.contact-form-container {
  background-color: var(--neutral-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

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

.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--primary-color);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--neutral-400);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: var(--font-size-md);
  transition: border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

.contact-form .checkbox-container {
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  font-size: var(--font-size-md);
  user-select: none;
}

.contact-form .checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.contact-form .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: var(--neutral-100);
  border: 2px solid var(--neutral-400);
  border-radius: var(--radius-sm);
}

.contact-form .checkbox-container:hover input ~ .checkmark {
  border-color: var(--accent-color);
}

.contact-form .checkbox-container input:checked ~ .checkmark {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.contact-form .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.contact-form .checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

.contact-form .checkbox-container .checkmark:after {
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* Footer */
.footer {
  padding: 5rem 0 2rem;
  background: var(--gradient-primary);
  color: var(--neutral-100);
}

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

.footer-info h3 {
  color: var(--neutral-100);
  margin-bottom: 1.5rem;
  font-size: var(--font-size-2xl);
}

.footer-info p {
  color: var(--neutral-300);
  max-width: 400px;
}

.footer-links h4,
.footer-legal h4,
.footer-social h4 {
  color: var(--neutral-100);
  margin-bottom: 1.5rem;
  font-size: var(--font-size-lg);
}

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

.footer-links li,
.footer-legal li {
  margin-bottom: 0.75rem;
}

.footer-links a,
.footer-legal a {
  color: var(--neutral-300);
  text-decoration: none;
  transition: color var(--transition-normal);
}

.footer-links a:hover,
.footer-legal a:hover {
  color: var(--neutral-100);
  text-decoration: none;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.social-links a {
  color: var(--neutral-300);
  text-decoration: none;
  transition: color var(--transition-normal);
  display: inline-block;
}

.social-links a:hover {
  color: var(--neutral-100);
  text-decoration: none;
  transform: translateX(5px);
}

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

.footer-bottom p {
  color: var(--neutral-400);
  margin-bottom: 0;
}

/* About Page */
.about-hero,
.contact-hero,
.privacy-hero,
.terms-hero {
  position: relative;
  padding: 10rem 0 6rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--neutral-100);
}

.about-hero::before,
.contact-hero::before,
.privacy-hero::before,
.terms-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-overlay);
  z-index: 1;
}

.about-hero-content,
.contact-hero-content,
.privacy-hero-content,
.terms-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.about-hero-content h2,
.contact-hero-content h2,
.privacy-hero-content h2,
.terms-hero-content h2 {
  font-size: var(--font-size-4xl);
  color: var(--neutral-100);
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.about-hero-content p,
.contact-hero-content p,
.privacy-hero-content p,
.terms-hero-content p {
  font-size: var(--font-size-xl);
  color: var(--neutral-100);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.historia {
  padding: 5rem 0;
  background-color: var(--neutral-100);
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: var(--gradient-accent);
  transform: translateX(-50%);
  border-radius: var(--radius-full);
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  display: flex;
}

.timeline-item:nth-child(odd) {
  justify-content: flex-start;
}

.timeline-item:nth-child(even) {
  justify-content: flex-end;
}

.timeline-date {
  position: absolute;
  top: 0;
  width: 120px;
  text-align: center;
}

.timeline-item:nth-child(odd) .timeline-date {
  right: calc(50% + 30px);
}

.timeline-item:nth-child(even) .timeline-date {
  left: calc(50% + 30px);
}

.timeline-date h3 {
  background-color: var(--primary-color);
  color: var(--neutral-100);
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  margin: 0;
}

.timeline-content {
  width: calc(50% - 50px);
  background-color: var(--neutral-200);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  position: relative;
}

.timeline-content::before {
  content: '';
  position: absolute;
  top: 20px;
  width: 20px;
  height: 20px;
  background-color: var(--neutral-200);
  transform: rotate(45deg);
}

.timeline-item:nth-child(odd) .timeline-content::before {
  right: -10px;
}

.timeline-item:nth-child(even) .timeline-content::before {
  left: -10px;
}

.timeline-content h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.valores {
  padding: 5rem 0;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--neutral-100);
}

.valores::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-overlay);
  z-index: 1;
}

.valores .container {
  position: relative;
  z-index: 2;
}

.valores .section-title {
  color: var(--neutral-100);
}

.valores-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
}

.valor-card {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: transform var(--transition-normal);
}

.valor-card:hover {
  transform: translateY(-10px);
}

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

.valor-icon img {
  width: 80px;
  height: 80px;
  margin: 0 auto;
}

.valor-card h3 {
  color: var(--neutral-100);
  margin-bottom: 1rem;
}

.valor-card p {
  color: var(--neutral-300);
}

.equipo {
  padding: 5rem 0;
  background-color: var(--neutral-100);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 3rem;
}

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

.team-image {
  width: 300px;
  height: 300px;
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-lg);
  border: 5px solid var(--neutral-100);
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.team-card:hover .team-image img {
  transform: scale(1.05);
}

.team-info h3 {
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.team-position {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.certificaciones {
  padding: 5rem 0;
  background-color: var(--neutral-200);
}

.certificaciones-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2rem;
  justify-items: center;
}

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

.certificacion-card img {
  width: 150px;
  height: 150px;
  margin: 0 auto 1.5rem;
  border-radius: var(--radius-full);
  border: 5px solid var(--neutral-100);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal);
}

.certificacion-card:hover img {
  transform: scale(1.1);
}

.certificacion-card h3 {
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.certificacion-card p {
  color: var(--neutral-700);
}

/* Contact Page */
.contact-main {
  padding: 5rem 0;
  background-color: var(--neutral-100);
}

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

.office-locations {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.office {
  background-color: var(--neutral-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
}

.office h3 {
  margin-bottom: 1rem;
  color: var(--primary-color);
  font-size: var(--font-size-xl);
}

.office p {
  margin-bottom: 0.5rem;
  color: var(--neutral-700);
}

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

.contact-channels h3 {
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.channel-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.channel {
  display: flex;
  align-items: center;
  gap: 1rem;
  background-color: var(--neutral-200);
  border-radius: var(--radius-lg);
  padding: 1rem;
  box-shadow: var(--shadow-md);
}

.channel-icon img {
  width: 50px;
  height: 50px;
}

.channel-info h4 {
  margin-bottom: 0.25rem;
  color: var(--primary-color);
}

.channel-info p {
  margin-bottom: 0;
  color: var(--neutral-700);
  font-size: var(--font-size-sm);
}

.mapa-section {
  padding: 5rem 0;
  background-color: var(--neutral-200);
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.map-container img {
  width: 100%;
  height: auto;
  display: block;
}

/* Privacy & Terms Pages */
.privacy-content,
.terms-content {
  padding: 5rem 0;
  background-color: var(--neutral-100);
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.last-updated {
  color: var(--neutral-600);
  font-style: italic;
  margin-bottom: 2rem;
}

.policy-section,
.terms-section {
  margin-bottom: 2.5rem;
}

.policy-section h3,
.terms-section h3 {
  margin-bottom: 1rem;
  color: var(--primary-color);
  border-bottom: 1px solid var(--neutral-400);
  padding-bottom: 0.5rem;
}

.policy-section p,
.terms-section p {
  margin-bottom: 1rem;
  color: var(--neutral-700);
}

.policy-section ul,
.terms-section ul {
  margin-bottom: 1.5rem;
  color: var(--neutral-700);
}

.policy-section li,
.terms-section li {
  margin-bottom: 0.5rem;
}

/* Success Page */
.success-message {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  padding: 5rem 0;
}

.success-message::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-overlay);
  z-index: 1;
}

.success-content {
  position: relative;
  z-index: 2;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 3rem;
  border-radius: var(--radius-lg);
  max-width: 700px;
  margin: 0 auto;
}

.success-icon {
  margin-bottom: 2rem;
}

.success-icon img {
  width: 100px;
  height: 100px;
  margin: 0 auto;
}

.success-content h2 {
  color: var(--neutral-100);
  margin-bottom: 1.5rem;
  font-size: var(--font-size-3xl);
}

.success-content p {
  color: var(--neutral-100);
  margin-bottom: 2rem;
  font-size: var(--font-size-lg);
}

.success-details {
  margin-bottom: 2rem;
}

.success-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.servicios-destacados {
  padding: 5rem 0;
  background-color: var(--neutral-100);
}

.destacados-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}

.destacado-card {
  background-color: var(--neutral-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.destacado-card:hover {
  transform: translateY(-10px);
}

.destacado-card .card-image {
  width: 100%;
  height: 200px;
}

.destacado-card .card-content {
  padding: 1.5rem;
  text-align: center;
}

.destacado-card h3 {
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.destacado-card p {
  margin-bottom: 1.5rem;
  color: var(--neutral-700);
}

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

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

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

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

/* Responsive */
@media (max-width: 1200px) {
  :root {
    --container-padding: 1.5rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  
  .footer-info {
    grid-column: 1 / -1;
  }
}

@media (max-width: 992px) {
  :root {
    --font-size-5xl: 2.5rem;
    --font-size-4xl: 2rem;
    --font-size-3xl: 1.75rem;
  }
  
  .contact-wrapper,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact-info {
    padding-right: 0;
  }
  
  .timeline-item {
    flex-direction: column;
    margin-left: 20px;
  }
  
  .timeline::before {
    left: 0;
  }
  
  .timeline-date {
    position: relative;
    width: auto;
    margin-bottom: 1rem;
    text-align: left;
    left: 30px !important;
    right: auto !important;
  }
  
  .timeline-content {
    width: 100%;
  }
  
  .timeline-content::before {
    display: none;
  }
}

@media (max-width: 768px) {
  :root {
    --container-padding: 1rem;
    --font-size-5xl: 2.25rem;
    --font-size-4xl: 1.75rem;
    --font-size-3xl: 1.5rem;
    --font-size-2xl: 1.25rem;
  }
  
  .main-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100vh;
    background-color: var(--neutral-100);
    box-shadow: var(--shadow-lg);
    z-index: var(--z-header);
    transition: left var(--transition-normal);
    padding: 2rem;
    overflow-y: auto;
  }
  
  .main-nav.active {
    left: 0;
  }
  
  .main-nav ul {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .main-nav li {
    margin: 0;
  }
  
  .mobile-menu-toggle {
    display: flex;
    z-index: calc(var(--z-header) + 1);
  }
  
  .mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  
  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .testimonial-item {
    flex-direction: column;
    text-align: center;
  }
  
  .testimonial-image {
    margin-bottom: 1.5rem;
  }
  
  .testimonial-text::before {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  :root {
    --font-size-5xl: 2rem;
    --font-size-4xl: 1.5rem;
    --font-size-3xl: 1.25rem;
  }
  
  .contact-details {
    grid-template-columns: 1fr;
  }
  
  .channel-list {
    grid-template-columns: 1fr;
  }
  
  .success-content {
    padding: 2rem 1rem;
  }
  
  .success-buttons {
    flex-direction: column;
    gap: 1rem;
  }
}
h1{
  font-size: 20px;
}