/* ===========================
   SmartSIM - Estilos Específicos
   =========================== */

/* Gradientes animados tipo mesh gradient */
@keyframes mesh-gradient {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

body {
  background: linear-gradient(
    -45deg,
    #fef9e7 0%,
    #e8f8f7 25%,
    #f5e6f1 50%,
    #fff5e6 75%,
    #e3f2fd 100%
  );
  background-size: 400% 400%;
  background-attachment: fixed;
  animation: mesh-gradient 15s ease infinite;
}

/* Hero Section - SmartSIM específico */
.smartsim-hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Tarjetas de features con efecto hover */
.smartsim-feature-card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(0) scale(1);
}

.smartsim-feature-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px -12px rgba(81, 217, 214, 0.3);
}

/* Animación de iconos flotantes */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.floating-icon {
  animation: float 3s ease-in-out infinite;
}

/* Badges y etiquetas de SmartSIM */
.smartsim-badge {
  background: linear-gradient(135deg, #51D9D6 0%, #45C9C6 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.875rem;
  display: inline-block;
  box-shadow: 0 4px 6px -1px rgba(81, 217, 214, 0.3);
}

/* Highlight text específico de SmartSIM */
.smartsim-highlight {
  background: linear-gradient(120deg, #51D9D6 0%, #45C9C6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

/* Botones con efecto Fonia */
.btn-smartsim {
  background-color: #51D9D6;
  color: white;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 10px 15px -3px rgba(81, 217, 214, 0.3);
}

.btn-smartsim:hover {
  background-color: #45C9C6;
  transform: translateY(-2px);
  box-shadow: 0 20px 25px -5px rgba(81, 217, 214, 0.4);
}

/* Tarjetas de planes/pricing */
.smartsim-plan-card {
  background: white;
  border-radius: 1.5rem;
  padding: 2rem;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.smartsim-plan-card:hover {
  border-color: #51D9D6;
  box-shadow: 0 20px 40px -12px rgba(81, 217, 214, 0.25);
  transform: translateY(-4px);
}

/* Stats con animación */
.smartsim-stat {
  position: relative;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  border: 1px solid rgba(81, 217, 214, 0.2);
}

.smartsim-stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #51D9D6 0%, #45C9C6 100%);
  border-radius: 1rem 1rem 0 0;
}

/* Features list con iconos */
.smartsim-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.smartsim-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.smartsim-features-list li:last-child {
  border-bottom: none;
}

.smartsim-features-list li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: #51D9D6;
  color: white;
  border-radius: 50%;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Sección CTA específica */
.smartsim-cta-section {
  background: linear-gradient(135deg, #51D9D6 0%, #45C9C6 100%);
  padding: 4rem 2rem;
  border-radius: 2rem;
  color: white;
  position: relative;
  overflow: hidden;
}

.smartsim-cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: pulse 4s ease-in-out infinite;
}

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

/* Testimonials específicos de SmartSIM */
.smartsim-testimonial {
  background: white;
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.smartsim-testimonial:hover {
  box-shadow: 0 20px 25px -5px rgba(81, 217, 214, 0.2);
  transform: translateY(-4px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .smartsim-hero {
    min-height: 500px;
  }
  
  .smartsim-cta-section {
    padding: 3rem 1.5rem;
  }
  
  .smartsim-feature-card:hover {
    transform: translateY(-4px) scale(1.01);
  }
}

/* Animación de entrada para elementos */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out forwards;
}

/* Delay para animaciones secuenciales */
.delay-100 { animation-delay: 100ms; }
.delay-200 { animation-delay: 200ms; }
.delay-300 { animation-delay: 300ms; }
.delay-400 { animation-delay: 400ms; }
.delay-500 { animation-delay: 500ms; }
