* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

body {
  font-family: "Poppins", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: #0a0a0a;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow-x: hidden;
  padding: 0;
  margin: 0;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 20%, rgba(79, 141, 245, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(79, 141, 245, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 40% 60%, rgba(79, 141, 245, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 60% 40%, rgba(79, 141, 245, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 30% 80%, rgba(79, 141, 245, 0.06) 0%, transparent 50%),
    linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  z-index: -1;
  animation: lightFloat 20s ease-in-out infinite;
}

.pointer{
  cursor: pointer;
}

@keyframes lightFloat {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(1deg);
  }
}

/* Top Bar */
.top-bar {
  width: 100%;
  background: #1C6FD1;
  padding: 0.5rem 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(79, 141, 245, 0.3);
}

.top-bar-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

.navbar-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.contact-info {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
}

.contact-icon {
  width: 16px;
  height: 16px;
  fill: white;
}

.social-icons {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.social-icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon-link:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.social-icon {
  width: 18px;
  height: 18px;
  fill: white;
}


.website-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: #1C6FD1;
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
  border: 2px solid transparent;
  letter-spacing: 0.3px;
}

.website-button:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 64, 175, 0.4);
  color: white;
  text-decoration: none;
}

.button-icon {
  width: 18px;
  height: 18px;
  transition: all 0.3s ease;
}

.website-button:hover .button-icon {
  transform: scale(1.1);
}

.container {
  max-width: 100%;
  width: 100%;
  text-align: center;
  background: transparent;
  border-radius: 0;
  padding: 2rem 1rem;
  box-shadow: none;
  backdrop-filter: none;
  border: none;
  margin: 0 auto;
  margin-top: 50px;
}

.logo-container {
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.logo-image {
  width: 350px;
  margin: 4rem auto 2rem auto;
  display: block;
  max-width: 100%;
}

.main-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
  margin: 0 auto 3rem auto;
  max-width: 800px;
  line-height: 1.3;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleGlow 3s ease-in-out infinite alternate;
  letter-spacing: -0.5px;
}

@keyframes titleGlow {
  0% {
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  }
  100% {
    text-shadow: 0 6px 30px rgba(255, 255, 255, 0.2);
  }
}

.logo-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0px) scale(1);
  }
  50% {
    transform: translateY(-8px) scale(1.05);
  }
}

.logo {
  font-size: 2.2rem;
  font-weight: 800;
  color: #1C6FD1;
  text-shadow: none;
  animation: titleGlow 2s ease-in-out infinite alternate;
}

@keyframes titleGlow {
  from {
    color: #1C6FD1;
    filter: brightness(1);
  }
  to {
    color: #1C6FD1;
    filter: brightness(1.1);
  }
}

.work-process-container {
  margin-top: 3rem;
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.process-steps {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  position: relative;
  flex-wrap: nowrap;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 140px;
  left: 15%;
  right: 15%;
  height: 5px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.4), transparent);
  z-index: 1;
  border-radius: 3px;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
  animation: lineGlow 3s ease-in-out infinite;
}

@keyframes lineGlow {
  0%, 100% {
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
  }
  50% {
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.4);
  }
}

.process-step {
  flex: 0 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
  min-width: 280px;
}

.step-circle {
  position: relative;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  box-shadow: 
    0 20px 50px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(255, 255, 255, 0.2),
    0 0 60px rgba(255, 255, 255, 0.1),
    inset 0 0 30px rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
  border: 10px solid #1C6FD1;
  background: 
    linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05)),
    linear-gradient(45deg, rgba(255, 255, 255, 0.1), transparent, rgba(255, 255, 255, 0.08));
}

.step-circle:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 
    0 25px 60px rgba(0, 0, 0, 0.6),
    0 0 50px rgba(255, 255, 255, 0.3),
    0 0 80px rgba(255, 255, 255, 0.15),
    0 0 30px rgba(79, 141, 245, 0.4),
    inset 0 0 40px rgba(255, 255, 255, 0.2);
}

.step-icon {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.step-number {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 70px;
  height: 70px;
  background: #1e293b;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.4rem;
  box-shadow: 0 10px 30px rgba(30, 41, 59, 0.3);
  letter-spacing: -0.5px;
}

.step-stats {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  background: rgba(0, 0, 0, 0.8);
  padding: 12px 18px;
  border-radius: 30px;
  box-shadow: 
    0 8px 25px rgba(0, 0, 0, 0.5),
    0 0 20px rgba(255, 255, 255, 0.2),
    0 0 30px rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 4px;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
  letter-spacing: -0.3px;
}

.stat-label {
  font-size: 1.1rem;
  font-weight: 500;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-button {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: #1C6FD1;
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(79, 141, 245, 0.3);
  border: 2px solid transparent;
  margin-top: 1rem;
  text-align: center;
  min-width: 120px;
  letter-spacing: 0.3px;
}

.contact-button:hover {
  background: #3b7ce8;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(79, 141, 245, 0.4);
  color: white;
  text-decoration: none;
}

.contact-button span {
  display: block;
  text-align: center;
}



.social-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  color: white;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 2px solid transparent;
  min-width: 160px;
  min-height: 180px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, #000000, #333333);
  backdrop-filter: blur(10px);
}

.social-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.social-btn:hover::before {
  left: 100%;
}

.social-btn:hover {
  transform: translateY(-8px) scale(1.05);
}

.social-btn:hover .social-image {
  transform: scale(1.1);
  filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.4));
}

.social-btn:hover .followers-count {
  background: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 1);
  transform: scale(1.05);
}

.whatsapp {
  background: linear-gradient(135deg, #000000, #333333);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.whatsapp:hover {
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.6);
}

.facebook {
  background: linear-gradient(135deg, #000000, #333333);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.facebook:hover {
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.6);
}

.instagram {
  background: linear-gradient(135deg, #000000, #333333);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.instagram:hover {
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.6);
}

.tiktok {
  background: linear-gradient(135deg, #000000, #333333);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.tiktok:hover {
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.6);
}

.social-image {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.4));
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(79, 141, 245, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(79, 141, 245, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(79, 141, 245, 0);
  }
}

.social-label {
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 0.3rem;
}

.followers-count {
  font-size: 0.75rem;
  font-weight: 500;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.1);
  padding: 0.2rem 0.5rem;
  border-radius: 10px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .top-bar-content {
    padding: 0 1.5rem;
  }

  .contact-info {
    gap: 1.5rem;
  }

  .contact-item {
    font-size: 1rem;
  }

  .container {
    max-width: 100%;
    padding: 1.5rem 1rem;
  }

  .process-steps {
    gap: 1.5rem;
  }

  .process-step {
    min-width: 220px;
  }

  .step-circle {
    width: 220px;
    height: 220px;
  }

  .step-icon {
    width: 100%;
    height: 100%;
  }

  .step-number {
    width: 40px;
    height: 40px;
    font-size: 0.85rem;
  }

  .step-stats {
    padding: 6px 10px;
    bottom: 15px;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .stat-label {
    font-size: 1.6rem;
  }

  .contact-button {
    padding: 0.6rem 1.5rem;
    font-size: 0.8rem;
    min-width: 100px;
  }

  .step-title {
    font-size: 1.1rem;
  }

}

@media (max-width: 900px) {
  .process-steps {
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .process-step {
    min-width: 250px;
  }
}

@media (max-width: 768px) {
  .top-bar-content {
    padding: 0 1rem;
    flex-direction: column;
    gap: 0.5rem;
  }

  .contact-info {
    gap: 1rem;
  }

  .contact-item {
    font-size: 0.95rem;
  }

  .social-icons {
    display: none; /* Ocultar iconos del navbar en móviles */
  }

  .website-button {
    display: none; /* Ocultar botón página web en móviles */
  }

  .button-icon {
    width: 20px;
    height: 20px;
  }

  body {
    padding: 1rem 0.5rem;
  }

  .container {
    max-width: 100%;
    padding: 1rem 0.5rem;
  }

  .logo-image {
    width: 280px;
    margin: 3rem auto 2rem auto;
  }

  .main-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }

  .process-steps {
    flex-direction: column;
    gap: 2.5rem;
    align-items: center;
  }

  .process-steps::before {
    display: none;
  }

  .step-circle {
    width: 180px;
    height: 180px;
  }

  .step-icon {
    width: 100%;
    height: 100%;
  }

  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1rem;
    bottom: -25px;
    right: -25px;
  }

  .step-stats {
    padding: 5px 8px;
    bottom: 12px;
  }

  .stat-number {
    font-size: 2.2rem;
  }

  .stat-label {
    font-size: 1.4rem;
  }

  .contact-button {
    display: none; /* Ocultar botones de contacto en móviles */
  }

  /* Hacer los iconos de los pasos más grandes en móviles */
  .step-circle {
    width: 85vw;
    max-width: 350px;
    height: 85vw;
    max-height: 350px;
  }

  .step-icon {
    width: 100%;
    height: 100%;
  }


}

@media (max-width: 640px) {
  .top-bar {
    padding: 0.4rem 0;
  }

  .top-bar-content {
    padding: 0 0.8rem;
  }

  .contact-item {
    font-size: 0.9rem;
  }

  .contact-icon {
    width: 18px; /* Iconos más grandes en móviles */
    height: 18px;
  }

  .social-icons {
    display: none; /* Asegurar que estén ocultos */
  }

  .website-button {
    display: none; /* Ocultar botón página web en móviles */
  }

  .button-icon {
    width: 22px;
    height: 22px;
  }

  .container {
    padding: 0.8rem 0.5rem;
  }

  .logo-image {
    width: 250px;
    margin: 2.5rem auto 1.5rem auto;
  }

  .main-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }


  .process-steps {
    gap: 2rem;
  }

  .step-circle {
    width: 160px;
    height: 160px;
  }

  .step-icon {
    width: 100%;
    height: 100%;
  }

  .step-number {
    width: 45px;
    height: 45px;
    font-size: 0.9rem;
    bottom: -20px;
    right: -20px;
  }

  .step-stats {
    padding: 4px 6px;
    bottom: 10px;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .stat-label {
    font-size: 1.3rem;
  }

  .contact-button {
    display: none; /* Ocultar botones de contacto */
  }

  /* Iconos más grandes en pantallas pequeñas */
  .step-circle {
    width: 90vw;
    max-width: 320px;
    height: 90vw;
    max-height: 320px;
  }

  .website-button {
    display: none; /* Ocultar botón página web en móviles */
  }

  .button-icon {
    width: 20px;
    height: 20px;
  }


}

@media (max-width: 480px) {
  body {
    padding: 0.5rem 0.3rem;
  }

  .container {
    padding: 0.5rem 0.3rem;
  }

  .logo-image {
    width: 220px;
    margin: 2rem auto 1.2rem auto;
  }

  .main-title {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
  }


  .process-steps {
    gap: 1.8rem;
  }

  .step-circle {
    width: 140px;
    height: 140px;
  }

  .step-icon {
    width: 100%;
    height: 100%;
  }

  .step-number {
    width: 40px;
    height: 40px;
    font-size: 0.85rem;
    bottom: -18px;
    right: -18px;
  }

  .step-stats {
    padding: 3px 5px;
    bottom: 8px;
  }

  .stat-number {
    font-size: 2.8rem;
  }

  .stat-label {
    font-size: 1.2rem;
  }

  .contact-button {
    display: none; /* Ocultar botones de contacto */
  }

  /* Iconos aún más grandes en pantallas muy pequeñas */
  .step-circle {
    width: 95vw;
    max-width: 280px;
    height: 95vw;
    max-height: 280px;
  }

  .website-button {
    display: none; /* Ocultar botón página web en móviles */
  }

  .button-icon {
    width: 18px;
    height: 18px;
  }


}

@media (max-width: 360px) {
  .container {
    padding: 0.3rem 0.2rem;
  }

  .logo-image {
    width: 180px;
    margin: 1.5rem auto 1rem auto;
  }

  .main-title {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }


  .process-steps {
    gap: 1.5rem;
  }

  .step-circle {
    width: 120px;
    height: 120px;
  }

  .step-icon {
    width: 100%;
    height: 100%;
  }

  .step-number {
    width: 35px;
    height: 35px;
    font-size: 0.8rem;
    bottom: -15px;
    right: -15px;
  }

  .step-stats {
    padding: 2px 4px;
    bottom: 6px;
  }

  .stat-number {
    font-size: 3rem;
  }

  .stat-label {
    font-size: 1.1rem;
  }

  .contact-button {
    display: none; /* Ocultar botones de contacto */
  }

  /* Iconos más grandes en pantallas extra pequeñas */
  .step-circle {
    width: 98vw;
    max-width: 250px;
    height: 98vw;
    max-height: 250px;
  }

  .website-button {
    display: none; /* Ocultar botón página web en móviles */
  }

  .button-icon {
    width: 16px;
    height: 16px;
  }


}

/* Background animation */
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 60% 30%, rgba(79, 141, 245, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 30% 70%, rgba(79, 141, 245, 0.06) 0%, transparent 40%),
    radial-gradient(circle at 70% 50%, rgba(79, 141, 245, 0.07) 0%, transparent 40%),
    radial-gradient(circle at 10% 90%, rgba(79, 141, 245, 0.05) 0%, transparent 30%),
    radial-gradient(circle at 90% 10%, rgba(79, 141, 245, 0.04) 0%, transparent 30%);
  z-index: -1;
  animation: lightPulse 15s ease-in-out infinite;
}

@keyframes lightPulse {
  0%, 100% {
    opacity: 0.4;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}

/* Partículas brillantes adicionales */
.container::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(2px 2px at 20px 30px, rgba(79, 141, 245, 0.8), transparent),
    radial-gradient(2px 2px at 40px 70px, rgba(79, 141, 245, 0.6), transparent),
    radial-gradient(1px 1px at 90px 40px, rgba(79, 141, 245, 0.9), transparent),
    radial-gradient(1px 1px at 130px 80px, rgba(79, 141, 245, 0.7), transparent),
    radial-gradient(2px 2px at 160px 30px, rgba(79, 141, 245, 0.5), transparent),
    radial-gradient(1px 1px at 200px 60px, rgba(79, 141, 245, 0.8), transparent),
    radial-gradient(2px 2px at 250px 20px, rgba(79, 141, 245, 0.6), transparent),
    radial-gradient(1px 1px at 300px 90px, rgba(79, 141, 245, 0.9), transparent),
    radial-gradient(2px 2px at 350px 50px, rgba(79, 141, 245, 0.7), transparent),
    radial-gradient(1px 1px at 400px 10px, rgba(79, 141, 245, 0.8), transparent),
    radial-gradient(2px 2px at 450px 70px, rgba(79, 141, 245, 0.5), transparent),
    radial-gradient(1px 1px at 500px 30px, rgba(79, 141, 245, 0.9), transparent),
    radial-gradient(2px 2px at 550px 80px, rgba(79, 141, 245, 0.6), transparent),
    radial-gradient(1px 1px at 600px 40px, rgba(79, 141, 245, 0.7), transparent),
    radial-gradient(2px 2px at 650px 20px, rgba(79, 141, 245, 0.8), transparent),
    radial-gradient(1px 1px at 700px 60px, rgba(79, 141, 245, 0.9), transparent),
    radial-gradient(2px 2px at 750px 90px, rgba(79, 141, 245, 0.5), transparent),
    radial-gradient(1px 1px at 800px 10px, rgba(79, 141, 245, 0.8), transparent),
    radial-gradient(2px 2px at 850px 50px, rgba(79, 141, 245, 0.6), transparent),
    radial-gradient(1px 1px at 900px 80px, rgba(79, 141, 245, 0.7), transparent);
  background-repeat: repeat;
  background-size: 100px 100px;
  z-index: -2;
  animation: sparkle 8s linear infinite;
  pointer-events: none;
}

@keyframes sparkle {
  0% {
    transform: translateY(0px) translateX(0px);
    opacity: 0.3;
  }
  25% {
    opacity: 0.8;
  }
  50% {
    transform: translateY(-10px) translateX(5px);
    opacity: 0.6;
  }
  75% {
    opacity: 0.9;
  }
  100% {
    transform: translateY(0px) translateX(0px);
    opacity: 0.3;
  }
}

/* Efectos de rayo adicionales */
.container::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(45deg, transparent 30%, rgba(79, 141, 245, 0.1) 50%, transparent 70%),
    linear-gradient(-45deg, transparent 30%, rgba(79, 141, 245, 0.08) 50%, transparent 70%),
    linear-gradient(90deg, transparent 40%, rgba(79, 141, 245, 0.06) 50%, transparent 60%);
  z-index: -3;
  animation: lightning 12s ease-in-out infinite;
  pointer-events: none;
}

@keyframes lightning {
  0%, 90%, 100% {
    opacity: 0;
  }
  5%, 10% {
    opacity: 0.8;
  }
  15%, 20% {
    opacity: 0.4;
  }
  25%, 30% {
    opacity: 0.9;
  }
  35%, 40% {
    opacity: 0.2;
  }
  45%, 50% {
    opacity: 0.7;
  }
  55%, 60% {
    opacity: 0.3;
  }
  65%, 70% {
    opacity: 0.6;
  }
  75%, 80% {
    opacity: 0.1;
  }
  85% {
    opacity: 0.5;
  }
}
