* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Quicksand:wght@300;400;600&display=swap');

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #4eac52 0%, #50cf06 50%, #EA5E5D 100%);
  font-family: 'Quicksand', 'Segoe UI', sans-serif;
  overflow: hidden;
  position: relative;
}

/* Efecto de partículas de fondo */
body::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
  animation: float 20s ease-in-out infinite;
}

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

/* Container del logo */
div:first-child {
  text-align: center;
  margin-bottom: 2rem;
  animation: fadeInDown 1s ease-out;
}

img {
  max-width: 200px;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* Container del texto */
div:last-child {
  text-align: center;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 3rem 4rem;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-out;
  position: relative;
  overflow: hidden;
}

/* Efecto de brillo en el card */
div:last-child::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  animation: shine 3s infinite;
}

@keyframes shine {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

h1 {
  font-size: 4rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  background: linear-gradient(135deg, #4eac52 0%, #50cf06 50%, #EA5E5D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  letter-spacing: -2px;
  position: relative;
  z-index: 1;
}

p {
  font-size: 1.5rem;
  color: #5D4E37;
  font-weight: 400;
  font-family: 'Quicksand', sans-serif;
  letter-spacing: 5px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  margin-bottom: 2rem;
}

/* Puntos estáticos después del texto */
p::after {
  content: '...';
}

@keyframes dots {
  0%, 20% { content: '.'; }
  40% { content: '..'; }
  60%, 100% { content: '...'; }
}

/* Contenedor de redes sociales */
.social-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 2rem;
  position: relative;
  z-index: 1;
}

/* Botones de redes sociales */
.social-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.social-btn::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.3s ease;
}

.social-btn:hover::before {
  transform: scale(1);
}

.social-btn:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Colores específicos para cada red social */
.social-btn.instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-btn.facebook {
  background: #1877f2;
}

.social-btn.twitter {
  background: #1da1f2;
}

.social-btn.tiktok {
  background: #000000;
}

.social-btn.youtube {
  background: #ff0000;
}

.social-btn.whatsapp {
  background: #25d366;
}

/* Iconos SVG dentro de los botones */
.social-btn svg {
  width: 30px;
  height: 30px;
  fill: white;
  position: relative;
  z-index: 1;
}

/* Animaciones de entrada */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Animación escalonada para los botones */
.social-btn:nth-child(1) { animation: fadeInUp 0.6s ease-out 0.3s backwards; }
.social-btn:nth-child(2) { animation: fadeInUp 0.6s ease-out 0.4s backwards; }
.social-btn:nth-child(3) { animation: fadeInUp 0.6s ease-out 0.5s backwards; }
.social-btn:nth-child(4) { animation: fadeInUp 0.6s ease-out 0.6s backwards; }
.social-btn:nth-child(5) { animation: fadeInUp 0.6s ease-out 0.7s backwards; }
.social-btn:nth-child(6) { animation: fadeInUp 0.6s ease-out 0.8s backwards; }

/* Responsive */
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  
  p {
    font-size: 1.2rem;
  }
  
  div:last-child {
    padding: 2rem 2.5rem;
    margin: 0 1rem;
  }
  
  img {
    max-width: 150px;
  }
  
  .social-links {
    gap: 1rem;
    flex-wrap: wrap;
  }
  
  .social-btn {
    width: 50px;
    height: 50px;
  }
  
  .social-btn svg {
    width: 25px;
    height: 25px;
  }
}
