 /* Reset y estilos base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #fff;
  background-color: #000;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh; /* Asegurar que el body ocupe al menos toda la altura de la ventana */
  cursor: none; /* Ocultar el cursor predeterminado cuando el cursor personalizado está activo */
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
  z-index: 5;
}

/* Fondo dinámico */
.dynamic-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.bg-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 2s ease-in-out, transform 20s ease-in-out;
  transform: scale(1.1);
}

.bg-slide.active {
  opacity: 1;
  z-index: 2;
}

.bg-slide.active-zoom {
  transform: scale(1.2);
}

/* Modificar la opacidad del overlay para mejorar el brillo */
.bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3));
  z-index: 3;
}

/* Líneas de conexión */
#canvas-connections {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  opacity: 0.2;
  pointer-events: none;
}

/* Main content */
.main-content {
  position: relative;
  z-index: 10;
  min-height: calc(100vh - 300px); /* Reservar espacio para el footer */
  padding-bottom: 100px; /* Espacio adicional antes del footer */
  display: flex;
  flex-direction: column;
}

/* Site navbar */
.site-navbar {
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 15px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
	min-width: 400px;
  z-index: 100;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.site-navbar.hidden {
  transform: translateY(-100%);
}

.site-navbar.scrolled {
  background-color: rgba(0, 0, 0, 0.9);
}

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

.logo {
  display: flex;
  align-items: center;
}

.logo-icon {
  color: #e53e3e;
  font-size: 24px;
}

.logo-text {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
}

/* Menú de navegación */
.nav-menu {
  display: none;
}
.menu-item {
    position: relative;
}

.mega-menu {
	display: none;
    position: absolute;
    left: 0;
    top: 100;
    background-color:rgba(0, 0, 0, 0.5); /* Color del nav oscuro */
    padding: 20px;
    grid-template-columns:repeat(3, 1fr);
    gap: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    min-width: 400px;
    border-top: 2px solid #e00000; /* línea superior opcional para detalle */
	margin-top: 0px;
	opacity: 1;
	transform: translateX(-100px);
	transition: opacity 0.4s ease, transform 0.4s ease;
}
.mega-menu active {
  opacity: 1;
  transform: translateY(0px);
}

/* Títulos */
.mega-column h3 {
    color: #fff; /* Blanco */
    margin-bottom: 0px;
    font-size: 13px;
    font-weight: bold;
}

/* Enlaces */
.mega-column a {
    display: block;
    margin: 1px 0;
    color: #ccc; /* Gris claro */
    text-decoration: none;
    transition: color 0.3s ease;
	text-align: center
}

.mega-column a:hover {
    color: #e00000; /* Color del hover */
	display: block
}

.menu-item:hover .mega-menu {
    display:grid;
}

.nav-menu ul {
  display: flex;
  gap: 30px;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s ease;
  padding: 5px 0;
  position: relative;
}

.nav-menu a:hover {
    color: #e53e3e;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #e53e3e;
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}
/* Scroll para Mega Menu */
.mega-menu {
    max-height: 400px; /* Altura máxima del mega menú */
    overflow-y: auto; /* Activa el scroll vertical si es necesario */
    scrollbar-width: thin; /* Scroll más delgado (Firefox) */
    scrollbar-color: #555 #222; /* Colores del scroll */
}

/* Personalizar Scroll (Webkit Chrome/Edge/Safari) */
.mega-menu::-webkit-scrollbar {
    width: 6px;
}

.mega-menu::-webkit-scrollbar-thumb {
    background-color: #555;
    border-radius: 4px;
}

.mega-menu::-webkit-scrollbar-track {
    background: #222;
}

/* Menú móvil */
.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
  z-index: 101;
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  transition: all 0.3s ease;
}

.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);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 100;
  transition: right 0.5s ease;
  display: flex;
  flex-direction: column;
  padding: 80px 30px 30px;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-menu a {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: color 0.3s ease;
}

.mobile-menu a:hover {
  color: #e53e3e;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-size: 14px;
}

.menu-botones {
  display: flex;
  flex-direction: column;
  gap: 9px; /* Espacio entre botones */
  align-items:center; /* Alinea los botones al inicio horizontalmente */
}

.btn-redondo {
  background-color: rgba(208,17,8,0.48);
  border: none;
  border-radius: 9px;
  color: white;
  padding: 10px 20px;
  font-weight: bold;
  cursor: pointer;
}

.neon-button {
  background: linear-gradient(100deg, #9d0b0b, #d60000);
  border: 2px solid #ff1e1e;
  border-radius: 9px;
  color: white;
  font-weight: bold;
  padding: 12px 20px;
  margin: 10px auto;
  width: 80%;
  text-align: center;
  cursor: pointer;
  position: relative;
  transition: 0.3s ease-in-out;
  box-shadow: 0 0 10px #ff1e1e, 0 0 20px #ff1e1e44;
}

.neon-button:hover {
  box-shadow: 0 0 15px #ff1e1e, 0 0 30px #ff1e1eaa;
  transform: scale(1.03);
}

.btn-red {
  background-color: #e53e3e;
  color: #fff;
  border-radius: 9999px;
  padding: 8px 24px;
}

.btn-red:hover {
  background-color: #c53030;
}

/* Hero section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 70px; /* Espacio para el menú fijo */
}

.hero-text {
  max-width: 600px;
  color: #fff;
}

.hero-title {
  font-size: 37px;
  font-weight: bold;
  margin-bottom: 16px;
}

.gradient-text {
    background: linear-gradient(100deg, #ec0000 0%, #ff9701 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
  font-size: 19px;
  margin-bottom: 24px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}

.btn-outline-white:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Sección de servicios */
.services {
  padding: 64px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-title {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 16px;
  color: #fff;
}

.section-divider {
  width: 80px;
  height: 4px;
  background-color: #e53e3e;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.service-card {
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.5s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.service-card::before {
  content: "";
  position: absolute;
  top: -100%;
  left: -100%;
  width: 300%;
  height: 300%;
  background: linear-gradient(
    135deg,
    rgba(229, 62, 62, 0.1) 0%,
    rgba(255, 255, 255, 0) 50%,
    rgba(229, 62, 62, 0.1) 100%
  );
  transform: rotate(45deg);
  transition: all 1.5s ease;
  z-index: -1;
}

.service-card:hover::before {
  animation: cardShine 2s infinite;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.service-icon {
  width: 64px;
  height: 64px;
  background-color: #e53e3e;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 24px;
  font-weight: bold;
  position: relative;
  overflow: hidden;
}

.service-icon::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.service-card:hover .service-icon::after {
  opacity: 1;
  animation: pulseLight 2s infinite;
}

.service-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #fff;
}

.service-description {
  color: #ccc;
	text-align: justify
}

/* Sección de características */
.features {
  padding: 80px 0;
  position: relative;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

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

.feature-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  color: #e53e3e;
  font-size: 32px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  animation: iconBorderRotate 4s linear infinite;
}

.feature-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #fff;
}

.feature-description {
  color: #ccc;
  max-width: 300px;
  margin: 0 auto;
}

/* Sección de proyectos */
.projects {
  padding: 80px 0;
  position: relative;
  background-color: rgba(0, 0, 0, 0.3);
}

.projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.project-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 250px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.project-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

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

.project-title {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.project-category {
  color: #e53e3e;
  font-size: 14px;
  font-weight: 500;
}

/* Sección de testimonios */
.testimonios {
  background: url('ruta-a-tu-imagen.jpg') center/cover no-repeat;
  padding: 60px 20px;
  color: white;
}

.contenedor {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.testimonio-fijo,
.carrusel-contenedor {
  flex: 1 1 100%;
  background: rgba(0, 0, 0, 0.8);
  padding: 30px;
  border-radius: 20px;
  position: relative;
}

@media (min-width: 768px) {
  .testimonio-fijo,
  .carrusel-contenedor {
    flex: 1 1 48%;
  }
}

.cita {
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.8;
}

.autor {
  margin-top: 20px;
}

.autor h3 {
  margin: 0;
  font-weight: bold;
  font-size: 1.1rem;
}

.autor p {
  color: #ff4c4c;
  margin: 5px 0 0;
}

.carrusel {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
}

.boton-carrusel {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  color: black;
  border: none;
  padding: 8px 12px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  z-index: 10;
}

#prev-btn {
  left: 10px;
}

#next-btn {
  right: 10px;
}

/* Sección de contacto */
.contact {
  padding: 80px 0;
  position: relative;
  margin-top: auto; /* Empujar hacia abajo si hay espacio */
  background-color: rgba(0, 0, 0, 0.4); /* Fondo ligeramente más oscuro */
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 15; /* Asegurar que esté por encima de otros elementos */
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(229, 62, 62, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e53e3e;
  font-size: 18px;
}

.contact-text {
  flex: 1;
}

.contact-text h4 {
  font-size: 18px;
  margin-bottom: 5px;
  color: #fff;
}

.contact-text p {
  color: #ccc;
}

/* Nuevo estilo para la sección social de contacto */
.contact-social {
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.contact-social h4 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #fff;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 25px;
}

.social-icon {
  width: 45px;
  height: 45px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: #e53e3e;
  transform: translateY(-5px);
}

.contact-cta {
  color: #ccc;
  margin-bottom: 25px;
  line-height: 1.6;
}

/* Mejorar la visibilidad del footer */
.footer {
  background-color: rgba(0, 0, 0, 0.95); /* Fondo más oscuro para mejor contraste */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  padding: 48px 0 24px;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 20; /* Aumentar z-index para asegurar que esté por encima de otros elementos */
  width: 100%;
}

.footer-content {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}

.footer-info {
  margin-bottom: 32px;
}

.footer-description {
  color: #ffffff; /* Color más claro para mejor legibilidad */
  margin-top: 16px;
  max-width: 400px;
}

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

.footer-column h4 {
  font-size: 18px;
  margin-bottom: 16px;
  color: #fff;
  font-weight: 600; /* Texto más grueso para mejor legibilidad */
}

.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 12px; /* Aumentar espacio entre elementos del menú */
}

.footer-menu a {
  color: #f0f0f0; /* Color más claro para mejor legibilidad */
  transition: color 0.3s ease;
  position: relative;
  padding-left: 15px;
  font-size: 15px; /* Tamaño de fuente ligeramente mayor */
}

.footer-menu a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background-color: #e53e3e;
  border-radius: 50%;
  opacity: 1; /* Hacer visible el punto siempre */
  transition: opacity 0.3s ease;
}

.footer-menu a:hover {
  color: #e53e3e; /* Cambiar a color rojo al pasar el mouse */
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 32px;
  padding-top: 24px;
  text-align: center;
  color: #ffffff; /* Color más claro para mejor legibilidad */
  position: relative;
  font-weight: 500; /* Texto más grueso para mejor legibilidad */
}

/* Sección de Partners */
.partners {
  padding: 80px 0;
  position: relative;
  background-color: rgba(0, 0, 0, 0.2);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.partner-item {
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.partner-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  background-color: rgba(0, 0, 0, 0.5);
}

.partner-logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 15px;
  border-radius: 8px;
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.05);
}

.partner-name {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #fff;
}

.partner-description {
  color: #ccc;
  font-size: 14px;
  line-height: 1.5;
}

/* Responsive */
@media (min-width: 768px) {
  .logo-text {
    display: block;
  }

  .hero-title {
    font-size: 48px;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-container {
    grid-template-columns: 1fr 1fr;
  }

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

  .footer-info {
    flex: 1;
    margin-bottom: 0;
  }

  .footer-links {
    flex: 2;
    grid-template-columns: repeat(3, 1fr);
  }

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

  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 992px) {
  .projects-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .mobile-menu-toggle {
    display: none;
  }

  .nav-menu {
    display: block;
  }

  .partners-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Cursor personalizado */
.custom-cursor {
  position: fixed;
  width: 40px;
  height: 40px;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
  transition: transform 0.1s ease;
  display: none;
}

.custom-cursor i {
  font-size: 24px;
  color: #000000; /* Cambiado a negro como solicitado */
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.3); /* Ajustado para mejor visibilidad con el color negro */
  transform: rotate(0deg);
  transition: transform 0.3s ease;
  display: block;
}

.custom-cursor-follower {
  position: fixed;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(229, 62, 62, 0.3);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9998;
  transition: transform 0.3s ease;
  display: none;
}

/* Efecto de golpe para el cursor */
.hammer-hit {
  animation: hammerHit 0.3s ease-in-out;
}

/* Efecto de onda para el punto de impacto */
.impact-wave {
  position: absolute;
  border-radius: 50%;
  background-color: rgba(229, 62, 62, 0.5);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9997;
  animation: impactWave 0.6s ease-out forwards;
}

/* Animación para el efecto de golpe del mazo */
@keyframes hammerHit {
  0% {
    transform: translate(-50%, -50%) rotate(0deg) scale(1);
  }
  30% {
    transform: translate(-50%, -50%) rotate(-45deg) scale(1.2);
  }
  60% {
    transform: translate(-50%, -50%) rotate(45deg) scale(0.8);
  }
  100% {
    transform: translate(-50%, -50%) rotate(0deg) scale(1);
  }
}

/* Animación para la onda de impacto */
@keyframes impactWave {
  0% {
    width: 0px;
    height: 0px;
    opacity: 0.8;
  }
  100% {
    width: 100px;
    height: 100px;
    opacity: 0;
  }
}

@media (min-width: 1024px) {
  .custom-cursor,
  .custom-cursor-follower {
    display: block;
  }
}

/* Responsive para la sección de contacto */
@media (max-width: 767px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-social {
    margin-top: 20px;
  }
}
