/* ============================================
   SKELETON LOADING - Prevenir CLS
   ============================================ */
.skeleton-hero {
  padding: 5rem 0 3rem;
  min-height: 480px;
}

.skeleton-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.skeleton-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.skeleton-badge {
  width: 200px;
  height: 40px;
  background: var(--bg-alt);
  border-radius: 100px;
  animation: skeleton-pulse 1.5s ease-in-out infinite;
}

.skeleton-title {
  width: 80%;
  height: 80px;
  background: var(--bg-alt);
  border-radius: 8px;
  animation: skeleton-pulse 1.5s ease-in-out infinite;
  animation-delay: 0.1s;
}

.skeleton-text {
  width: 100%;
  height: 40px;
  background: var(--bg-alt);
  border-radius: 4px;
  animation: skeleton-pulse 1.5s ease-in-out infinite;
  animation-delay: 0.2s;
}

.skeleton-button {
  width: 180px;
  height: 48px;
  background: var(--bg-alt);
  border-radius: 10px;
  animation: skeleton-pulse 1.5s ease-in-out infinite;
  animation-delay: 0.3s;
}

.skeleton-visual {
  aspect-ratio: 1;
  max-width: 500px;
  margin: 0 auto;
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  animation: skeleton-pulse 1.5s ease-in-out infinite;
  animation-delay: 0.4s;
}

@keyframes skeleton-pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}

/* Mobile skeleton */
@media (max-width: 900px) {
  .skeleton-hero {
    min-height: 380px;
  }
  
  .skeleton-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .skeleton-visual {
    display: none;
  }
}

@media (max-width: 480px) {
  .skeleton-hero {
    min-height: 340px;
  }
}