* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

/* Estilos para el banner de cookies */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  color: white;
  padding: 20px;
  z-index: 1000;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  display: none;
  animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-text h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: #fff;
}

.cookie-text p {
  font-size: 0.95rem;
  line-height: 1.4;
  color: #e0e0e0;
  margin: 0;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.btn-cookie {
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-accept {
  background: #4CAF50;
  color: white;
}

.btn-accept:hover {
  background: #45a049;
  transform: translateY(-2px);
}

.btn-reject {
  background: transparent;
  color: #e0e0e0;
  border: 2px solid #666;
}

.btn-reject:hover {
  background: #666;
  color: white;
  transform: translateY(-2px);
}

.btn-settings {
  background: transparent;
  color: #2196F3;
  border: 2px solid #2196F3;
}

.btn-settings:hover {
  background: #2196F3;
  color: white;
  transform: translateY(-2px);
}

/* Modal de configuración de cookies */
.cookie-modal {
  display: none;
  position: fixed;
  z-index: 1001;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
}

.cookie-modal-content {
  background-color: white;
  margin: 5% auto;
  padding: 0;
  border-radius: 12px;
  width: 90%;
  max-width: 600px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  border-bottom: 1px solid #e0e0e0;
}

.cookie-modal-header h3 {
  margin: 0;
  font-size: 1.4rem;
  color: #333;
}

.cookie-close {
  background: none;
  border: none;
  font-size: 28px;
  font-weight: bold;
  color: #aaa;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-close:hover {
  color: #000;
}

.cookie-modal-body {
  padding: 24px;
}

.cookie-category {
  margin-bottom: 24px;
}

.cookie-category:last-child {
  margin-bottom: 0;
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.cookie-category h4 {
  margin: 0;
  font-size: 1.1rem;
  color: #333;
}

.cookie-category p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.4;
  margin: 0;
}

/* Switch de cookies */
.cookie-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.3s;
  border-radius: 24px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #4CAF50;
}

input:disabled + .slider {
  background-color: #4CAF50;
  opacity: 0.6;
  cursor: not-allowed;
}

input:checked + .slider:before {
  transform: translateX(26px);
}

.cookie-modal-footer {
  padding: 24px;
  border-top: 1px solid #e0e0e0;
  text-align: right;
}

/* Responsive para el banner de cookies */
@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  
  .cookie-buttons {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .btn-cookie {
    padding: 12px 16px;
    font-size: 0.85rem;
  }
  
  .cookie-modal-content {
    margin: 10% auto;
    width: 95%;
  }
  
  .cookie-modal-header,
  .cookie-modal-body,
  .cookie-modal-footer {
    padding: 20px;
  }
  
  .cookie-category-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 15px 0;
  transition: all 0.4s ease;
  background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.navbar.scrolled {
  padding: 10px 0;
  background-color: rgba(0, 0, 0, 0.8);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.logo img {
  height: 40px;
  width: auto;
  transition: all 0.3s ease;
}

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

.nav-item {
  color: white;
  margin-left: 30px;
  position: relative;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  padding: 5px 0;
  position: relative;
}

.nav-link:after {
  color: white;
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background: linear-gradient(to right, #8000FF, #FF3385);
  transition: width 0.3s ease;
}

.nav-link:hover:after {
  color: white;
  width: 100%;
}

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

.hamburger-menu {
  display: none;
  cursor: pointer;
  color: white;
  font-size: 1.5rem;
  z-index: 101;
}

.hamburger-menu i {
  transition: all 0.3s ease;
}

.hamburger-menu.active i {
  transform: rotate(90deg);
}

.hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  height: auto;
  background-image: url("img/estadio.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  padding: 230px 20px 120px 20px; /* Increased bottom padding */
  box-sizing: border-box; /* Ensure padding is included in height calculation */
  margin-bottom: 0;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding-top: 140px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s forwards 0.3s;
  margin-bottom: 20px;
}

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

.hero-users {
  font-size: 1.5rem;
  font-weight: 500;
  margin-top: 80px;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ffd700;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  background: linear-gradient(to right, #A366FF, #FF9FD1, #FFD166, #F9F871);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 1px rgba(255, 255, 255, 0.3);
}

.hero-description {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  line-height: 1.6;
  color: #e0e0e0;
}

.hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  transform: perspective(1000px) rotateY(0deg);
  transition: transform 0.6s ease;
  animation: float 6s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

.hero-image-buttons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
  gap: 40px;
}

.hero-image-container {
  flex: 1;
  max-width: 65%;
}

.hero-buttons {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 35%;
}

.btn {
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary {
  background: linear-gradient(to right, #8000FF, #FF3385);
  color: white;
}

.btn-secondary {
  background: linear-gradient(to right, #FFD700, #FF8C00);
  color: white;
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-secondary:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #FF8C00, #FFD700);
  z-index: -1;
  transition: opacity 0.5s ease;
  opacity: 0;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(128, 0, 255, 0.3);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 140, 0, 0.4);
}

.btn-secondary:hover:before {
  opacity: 1;
}

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

.features-section {
  padding: 120px 20px 100px;
  background: white; /* linear-gradient(135deg, #f8f9fa, #e9ecef); */
  position: relative;
  overflow: hidden;
  margin-top: 0;
  z-index: 10;
}

.features-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(128, 0, 255, 0.05) 0%, transparent 30%),
    radial-gradient(circle at 90% 80%, rgba(255, 51, 133, 0.05) 0%, transparent 30%);
  z-index: 0;
}

.features-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.features-container.visible {
  opacity: 1;
  transform: translateY(0);
}

.features-title {
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 1.5rem;
  color: #1a1a2e;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

.features-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(to right, #8000FF, #FF3385);
}

.features-subtitle {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 2.5rem;
  color: #555;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.features-subtitle:last-of-type {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.video-container {
  margin-bottom: 2.5rem;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  transition: transform 0.5s ease;
}

.video-container:hover {
  transform: scale(1.02);
}

.video-container img {
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  max-width: 100%;
  transition: all 0.5s ease;
}

.video-container a {
  position: relative;
  display: inline-block;
}

.video-container a::before {
  content: '\f144';
  font-family: 'Font Awesome 5 Free';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.8);
  z-index: 2;
  opacity: 0.9;
  transition: all 0.3s ease;
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.video-container a:hover::before {
  color: #FF3385;
  opacity: 1;
  font-size: 4.5rem;
}

.video-container iframe {
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  max-width: 100%;
  transition: all 0.5s ease;
}

.clients-section {
  padding: 100px 20px;
  background-color: #f0f4f8;
  color: #333;
  position: relative;
  overflow: hidden;
}

.clients-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(0,0,0,0.03)"/></svg>');
  background-size: 20px 20px;
  opacity: 0.5;
  z-index: 0;
}

.clients-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.clients-container.visible {
  opacity: 1;
  transform: translateY(0);
}

.clients-image {
  flex: 1;
  max-width: 500px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.5s ease;
}

.clients-image:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.clients-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  transition: transform 0.5s ease;
}

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

.clients-content {
  flex: 1;
}

.clients-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 15px;
  color: #1a1a2e;
}

.clients-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, #8000FF, #FF3385);
}

.clients-text {
  line-height: 1.8;
}

.clients-text p {
  margin-bottom: 1.2rem;
}

.clients-text strong {
  color: #8000FF;
  font-weight: 600;
}

.clients-quote {
  position: relative;
  padding: 2rem;
  font-style: italic;
  color: #1a1a2e;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  margin: 3rem auto;
  max-width: 800px;
  text-align: center;
}

.clients-quote::before {
  content: '"';
  position: absolute;
  top: -15px;
  left: 20px;
  font-size: 5rem;
  color: rgba(128, 0, 255, 0.2);
  font-family: Georgia, serif;
}

.feature-list-columns {
  list-style-type: none;
  padding: 0;
  margin-top: 1rem;
  column-count: 3;
  column-gap: 2rem;
}

.feature-list-columns li {
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
  line-height: 1.6;
  padding-left: 1.8rem;
  position: relative;
  transition: transform 0.3s ease;
}

.feature-list-columns li:hover {
  transform: translateX(5px);
}

.feature-list-columns li::before {
  content: '✓'; 
  color: #8000FF;
  position: absolute;
  left: 0;
  top: 0.1em;
  font-weight: bold;
  font-size: 1.1em;
}

.pioneering-section {
  padding: 100px 20px;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}

.pioneering-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 30%;
  height: 100%;
  background: linear-gradient(135deg, transparent, rgba(128, 0, 255, 0.05));
  z-index: 0;
}

.pioneering-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
  flex-direction: row;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.pioneering-container.visible {
  opacity: 1;
  transform: translateY(0);
}

.pioneering-image {
  flex: 1;
  max-width: 500px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.5s ease;
}

.pioneering-image:hover {
  transform: rotate3d(0, 1, 0, 5deg);
}

.pioneering-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  transition: transform 0.5s ease;
}

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

.pioneering-content {
  flex: 1;
}

.pioneering-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 15px;
  color: #1a1a2e;
}

.pioneering-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, #8000FF, #FF3385);
}

.pioneering-text {
  line-height: 1.8;
  color: #555;
}

.pioneering-text p {
  margin-bottom: 1.2rem;
}

.card {
  background-color: #1e293b;
  border-left: 6px solid;
  border-radius: 10px;
  padding: 30px 24px;
  margin-bottom: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  transition: all 0.4s ease;
  color: white;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0), rgba(255, 255, 255, 0.1));
  z-index: -1;
}

.card:hover {
  transform: translateY(-10px);
  background-color: #273549;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

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

.card .label {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #cbd5e1;
  margin-bottom: 8px;
  font-weight: 500;
  letter-spacing: 1px;
}

.card .title {
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 1.3;
}

.card .title h3 {
  margin: 0;
  transition: transform 0.3s ease;
}

.card:hover .title h3 {
  transform: translateX(10px);
}

.arrow {
  color: #60a5fa;
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}

.card:hover .arrow {
  transform: translateX(5px);
}

.blue {
  border-color: #3b82f6;
}

.purple {
  border-color: #8b5cf6;
}

.teal {
  border-color: #14b8a6;
}

@media (max-width: 992px) {
  .clients-container,
  .pioneering-container {
    flex-direction: column;
  }

  .clients-image,
  .pioneering-image {
    margin-bottom: 40px;
    max-width: 100%;
  }
  
  .feature-list-columns {
    column-count: 2;
  }

  .hero-image-buttons {
    flex-direction: column;
    gap: 30px;
  }

  .hero-image-container,
  .hero-buttons {
    max-width: 100%;
  }
}

/* Media query para pantallas grandes */
@media (min-width: 1200px) {
  .hero-content {
    padding-top: 160px;
  }
  
  .hero-users {
    margin-top: 60px;
  }
}

/* Media query para pantallas con poca altura */
@media (max-height: 700px) {
  .hero-section {
    min-height: auto;
    padding: 140px 20px 80px 20px;
  }
  
  .hero-image {
    animation: none; /* Disable float animation on short screens */
  }
}

@media (max-width: 768px) {
  .hamburger-menu {
    display: block;
  }
  
  .nav-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    padding-top: 80px;
    transition: all 0.5s ease;
    z-index: 9999;
    align-items: center;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-item {
    margin: 20px 0;
    width: 100%;
    text-align: center;
  }
  
  .hero-section {
    height: auto;
    min-height: 100vh;
    padding: 120px 20px 100px 20px; /* Increased bottom padding for mobile */
    margin-bottom: 0;
  }
  
  .hero-content {
    padding-top: 60px; /* Reduced padding for mobile */
  }
  
  .hero-image {
    max-width: 100%;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
  }
  
  .hero-buttons {
    width: 100%;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 250px;
  }
  
  .pioneering-section,
  .clients-section {
    padding: 60px 15px;
  }
  
  .pioneering-container,
  .clients-container {
    gap: 30px;
  }
  
  .pioneering-content iframe,
  .video-container iframe {
    max-width: 100%;
    height: auto;
    aspect-ratio: 16/9;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-description {
    font-size: 1rem;
  }
  
  .features-title,
  .clients-title,
  .pioneering-title {
    font-size: 2rem;
  }
  
  .features-subtitle {
    font-size: 1rem;
  }
  
  .feature-list-columns {
    column-count: 1;
  }

  /* Estilos para el submenú en móviles */
  .dropdown-menu {
    position: static;
    background-color: rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: none;
    box-shadow: none;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease, visibility 0s linear 0.3s, padding 0.3s ease;
    margin-top: 0;
    display: block;
    width: 100%;
    z-index: 9999;
  }

  .dropdown.active .dropdown-menu {
    max-height: 300px; /* Increased to accommodate more items */
    padding: 10px 0;
    opacity: 1;
    visibility: visible;
    transition: max-height 0.5s ease, opacity 0.3s ease, visibility 0s linear, padding 0.3s ease;
  }

  .dropdown-link {
    padding: 10px 20px 10px 40px;
    text-align: center;
    width: 100%;
  }
  
  .dropdown .fa-chevron-down {
    transition: transform 0.3s ease;
  }
  
  .dropdown.active .fa-chevron-down {
    transform: rotate(180deg);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

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

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

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

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

/* Footer */
.footer-section {
  background-color: #1e293b;
  padding: 70px 0;
  color: #fff;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-col {
  flex: 1;
  min-width: 250px;
  padding: 0 15px;
  margin-bottom: 30px;
}

.footer-col h4 {
  position: relative;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 30px;
  padding-bottom: 10px;
  color: #fff;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(to right, #8000FF, #FF3385);
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 15px;
}

.footer-col ul li a {
  color: #a0aec0;
  text-decoration: none;
  font-weight: 400;
  transition: all 0.4s ease;
  position: relative;
  padding-left: 15px;
}

.footer-col ul li a:before {
  content: '›';
  position: absolute;
  left: 0;
  font-size: 18px;
  line-height: 16px;
  color: #8000FF;
  transition: all 0.3s ease;
}

.footer-col ul li a:hover {
  color: #fff;
  padding-left: 20px;
}

.footer-col ul li a:hover:before {
  left: 5px;
}

.social-links {
  display: flex;
  margin-bottom: 20px;
}

.social-links a {
  background: rgba(255, 255, 255, 0.1);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  color: #fff;
  margin-right: 10px;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-links a:hover {
  transform: translateY(-5px);
  background: linear-gradient(to right, #8000FF, #FF3385);
}

.footer-brand {
  margin-top: 20px;
}

.footer-brand img {
  height: 40px;
  margin-bottom: 10px;
}

.footer-brand p {
  color: #a0aec0;
  font-size: 14px;
  margin-bottom: 10px;
}

.footer-anniversary {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.footer-anniversary span {
  margin-left: 10px;
  font-size: 14px;
  color: #cbd5e1;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .footer-col {
    min-width: 100%;
  }
}

/* Estilos para el submenú desplegable */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  padding: 10px 0;
  border-radius: 6px;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 9999;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  margin-top: 5px;
  display: block;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  display: block;
}

.dropdown-menu li {
  list-style: none;
  width: 100%;
}

.dropdown-link {
  display: block;
  padding: 8px 20px;
  color: white;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  width: 100%;
}

.dropdown-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  padding-left: 25px;
}

.dropdown .fa-chevron-down {
  font-size: 0.8rem;
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.dropdown:hover .fa-chevron-down {
  transform: rotate(180deg);
}