/* 
  style.css
  Главный CSS-файл для сайта "Academia de Diseño Colombia"
*/

/* ======== ПЕРЕМЕННЫЕ И СБРОС СТИЛЕЙ ======== */
:root {
  /* Триада цветовая схема */
  --primary-color: #ff6b6b;      /* Основной - теплый красный */
  --secondary-color: #4ecdc4;    /* Дополнительный - бирюзовый */
  --tertiary-color: #ffbe0b;     /* Третичный - золотисто-желтый */
  
  /* Темные варианты для ховеров */
  --primary-dark: #e74c3c;
  --secondary-dark: #3aa99f;
  --tertiary-dark: #e6a800;
  
  /* Нейтральные цвета */
  --dark: #222222;
  --medium-dark: #333333;
  --medium: #666666;
  --light-medium: #999999;
  --light: #f5f5f5;
  --white: #ffffff;
  
  /* Градиенты */
  --primary-gradient: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  --secondary-gradient: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
  --tertiary-gradient: linear-gradient(135deg, var(--tertiary-color), var(--tertiary-dark));
  
  /* Тени */
  --box-shadow-light: 0 5px 15px rgba(0, 0, 0, 0.05);
  --box-shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
  --box-shadow-heavy: 0 15px 40px rgba(0, 0, 0, 0.2);
  
  /* Типографика */
  --heading-font: 'Montserrat', sans-serif;
  --body-font: 'Merriweather', serif;
  
  /* Размеры контейнера */
  --container-width-lg: 85%;
  --container-width-md: 90%;
  --container-width-sm: 94%;
  
  /* Отступы секций */
  --section-padding: 80px 0;
  --section-padding-mobile: 60px 0;
  
  /* Радиусы */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  
  /* Переходы */
  --transition-fast: all 0.3s ease;
  --transition-medium: all 0.5s ease;
  --transition-slow: all 0.8s ease;
}

/* Общий сброс стилей */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  color: var(--medium-dark);
  line-height: 1.7;
  background-color: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 700;
  line-height: 1.3;
  color: var(--dark);
}

p {
  margin-bottom: 1.5rem;
  color: var(--medium);
}

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

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

ul {
  list-style: none;
}

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

/* ======== УТИЛИТЫ ======== */
.container {
  width: var(--container-width-lg);
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-align: center;
  position: relative;
  color: var(--dark);
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  margin: 1rem auto;
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: var(--medium);
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.btn {
  display: inline-block;
  padding: 12px 28px;
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-fast);
  border: none;
  text-align: center;
}

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

.btn-primary:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--box-shadow-medium);
}

.btn-secondary {
  background: var(--secondary-color);
  color: var(--white);
}

.btn-secondary:hover {
  background: var(--secondary-dark);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--box-shadow-medium);
}

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

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

/* ======== КОМПОНЕНТЫ ======== */
/* Карточки */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--box-shadow-light);
  transition: var(--transition-medium);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.card-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

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

.card-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

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

/* Статистические виджеты */
.stat-widget {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--box-shadow-light);
  text-align: center;
  transition: var(--transition-medium);
}

.stat-widget:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-medium);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: var(--heading-font);
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.stat-title {
  font-size: 1rem;
  color: var(--medium);
  margin-bottom: 1rem;
}

/* Прогресс-бары */
.progress-bar {
  height: 6px;
  background: var(--light-medium);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}

.progress-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: var(--primary-gradient);
  border-radius: 3px;
  animation: progress 1.5s ease-in-out forwards;
}

.progress-bar[data-percentage="100"]::after { width: 100%; }
.progress-bar[data-percentage="98"]::after { width: 98%; }
.progress-bar[data-percentage="85"]::after { width: 85%; }
.progress-bar[data-percentage="60"]::after { width: 60%; }
.progress-bar[data-percentage="50"]::after { width: 50%; }
.progress-bar[data-percentage="40"]::after { width: 40%; }

@keyframes progress {
  from { width: 0; }
  to { width: var(--width, 100%); }
}

/* Слайдеры */
.slider-container {
  display: flex;
  overflow-x: hidden;
  scroll-behavior: smooth;
  margin-bottom: 1.5rem;
}

.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

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

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--light-medium);
  cursor: pointer;
  transition: var(--transition-fast);
}

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

.prev-btn, .next-btn {
  background: transparent;
  border: none;
  color: var(--medium);
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.prev-btn:hover, .next-btn:hover {
  color: var(--dark);
}

/* Progress Indicator */
.progress-indicator {
  width: 100%;
  margin: 1.5rem 0;
}

.progress-indicator span {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: var(--medium);
}

/* ======== HEADER И НАВИГАЦИЯ ======== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

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

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

.main-nav {
  display: flex;
}

.nav-list {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-list li a {
  color: var(--dark);
  font-weight: 600;
  font-family: var(--heading-font);
  position: relative;
  padding: 0.5rem 0;
}

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

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

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

.burger-menu span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--dark);
  border-radius: 3px;
  transition: var(--transition-fast);
}

/* ======== HERO SECTION ======== */
.hero {
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  margin-bottom: 2rem;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: var(--white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

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

.stats-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

/* ======== SERVICES SECTION ======== */
.services {
  padding: var(--section-padding);
  background-color: var(--light);
}

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

.services-slider .slider-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.services-slider .card {
  margin: 0 1rem;
  flex: 0 0 auto;
  width: calc(33.333% - 2rem);
}

/* ======== TEAM SECTION ======== */
.team {
  padding: var(--section-padding);
}

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

.team .card-image {
  height: 350px;
}

.position {
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 1rem;
}

/* ======== GALLERY SECTION ======== */
.gallery {
  padding: var(--section-padding);
  background-color: var(--light);
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--box-shadow-light);
  height: 300px;
}

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-medium);
}

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

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 1.5rem;
  transform: translateY(100px);
  transition: var(--transition-medium);
  color: var(--white);
}

.gallery-item:hover .overlay {
  transform: translateY(0);
}

.overlay h3 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.overlay p {
  color: var(--light);
  font-size: 0.9rem;
}

/* ======== HISTORY SECTION ======== */
.history {
  padding: var(--section-padding);
}

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

.history-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--box-shadow-medium);
}

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

/* ======== RESOURCES SECTION ======== */
.resources {
  padding: var(--section-padding);
  background-color: var(--light);
}

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

.resource-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--box-shadow-light);
  transition: var(--transition-medium);
}

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

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

.resource-card ul {
  padding-left: 1rem;
}

.resource-card ul li {
  margin-bottom: 1rem;
  position: relative;
}

.resource-card ul li:before {
  content: '•';
  color: var(--primary-color);
  font-weight: bold;
  display: inline-block;
  width: 1rem;
  margin-left: -1rem;
}

.resource-card a {
  text-decoration: underline;
  font-weight: 500;
}

/* ======== ACCOLADES SECTION ======== */
.accolades {
  padding: var(--section-padding);
}

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

.accolades-slider .slider-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.accolade-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--box-shadow-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
  transition: var(--transition-medium);
  height: 100%;
}

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

.accolade-card .image-container {
  width: 150px;
  height: 200px;
  margin-bottom: 1.5rem;
}

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

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

/* ======== PRESS SECTION ======== */
.press {
  padding: var(--section-padding);
  background-color: var(--light);
}

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

.press-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--box-shadow-light);
  transition: var(--transition-medium);
  text-align: center;
}

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

.press-logo {
  margin-bottom: 1.5rem;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.press-logo img {
  max-height: 100%;
  width: auto;
}

.press-card blockquote {
  font-style: italic;
  margin-bottom: 1rem;
  position: relative;
  padding: 0 1rem;
}

.press-card blockquote:before,
.press-card blockquote:after {
  content: '"';
  font-size: 2rem;
  color: var(--primary-color);
  position: absolute;
}

.press-card blockquote:before {
  top: -0.5rem;
  left: 0;
}

.press-card blockquote:after {
  bottom: -1.5rem;
  right: 0;
}

.press-source {
  font-size: 0.9rem;
  color: var(--medium);
  margin-top: 1.5rem;
}

/* ======== CONTACT SECTION ======== */
.contact {
  padding: var(--section-padding);
}

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

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

.info-item {
  margin-bottom: 2rem;
}

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

.info-item p {
  margin-bottom: 0.5rem;
}

.contact-form-container {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--box-shadow-medium);
}

.contact-form {
  display: grid;
  gap: 1.5rem;
}

.form-group {
  position: relative;
}

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--light-medium);
  border-radius: var(--radius-sm);
  font-family: var(--body-font);
  resize: vertical;
  transition: var(--transition-fast);
}

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

/* ======== FOOTER ======== */
.footer {
  background-color: var(--dark);
  color: var(--light);
  padding-top: 4rem;
}

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

.footer-logo {
  margin-bottom: 1.5rem;
}

.footer-logo img {
  height: 70px;
  width: auto;
  margin-bottom: 1rem;
}

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

.footer-column h3 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

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

.footer-column ul li a,
.social-links a {
  color: var(--light);
  transition: var(--transition-fast);
}

.footer-column ul li a:hover,
.social-links a:hover {
  color: var(--primary-color);
}

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

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

/* ======== SUCCESS PAGE ======== */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.success-content {
  max-width: 600px;
  background: var(--white);
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--box-shadow-medium);
}

.success-icon {
  font-size: 5rem;
  color: var(--secondary-color);
  margin-bottom: 2rem;
}

.success-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

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

/* ======== PAGES ======== */
.page-content {
  padding-top: 100px;
  padding-bottom: 4rem;
}

.page-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.about-content,
.privacy-content,
.terms-content {
  max-width: 800px;
  margin: 0 auto;
}

/* ======== АНИМАЦИИ ======== */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

@keyframes scaleIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.fade-in {
  animation: fadeIn 1s ease-out forwards;
}

.slide-up {
  animation: slideUp 1s ease-out forwards;
}

.scale-in {
  animation: scaleIn 1s ease-out forwards;
}

/* ======== МЕДИА ЗАПРОСЫ ======== */
@media (max-width: 1024px) {
  :root {
    --container-width-lg: 90%;
    --section-padding: 70px 0;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.3rem;
  }
  
  .stats-container {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .services-slider .slider-container,
  .accolades-slider .slider-container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .history-content {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --container-width-md: 94%;
    --section-padding: 60px 0;
  }
  
  .main-nav {
    display: none;
  }
  
  .burger-menu {
    display: flex;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .stats-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .services-slider .slider-container,
  .accolades-slider .slider-container {
    grid-template-columns: 1fr;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
  }
  
  .contact-info {
    grid-template-columns: 1fr;
  }
  
  .card-image {
    height: 200px;
  }
}

@media (max-width: 480px) {
  :root {
    --container-width-sm: 94%;
    --section-padding-mobile: 50px 0;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
  }
  
  .contact-form-container {
    padding: 1.5rem;
  }
}

/* Дополнительные анимации для морфинга и параллакса */
.parallax {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.morphing-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  animation: morphing 15s ease-in-out infinite alternate;
  opacity: 0.05;
  background-image: var(--primary-gradient);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

@keyframes morphing {
  0% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
  25% {
    border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
  }
  50% {
    border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
  }
  75% {
    border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
  }
  100% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
}

/* Cookie Consent стили */
#cookie-consent {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0,0,0,0.9);
  color: #fff;
  padding: 15px;
  text-align: center;
  z-index: 9999;
}

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

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

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--white);
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-medium);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
}

.mobile-menu ul li a {
  font-size: 1.5rem;
  font-weight: 700;
}

.close-menu {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 2rem;
  cursor: pointer;
  color: var(--dark);
}