/* 🎭 Estilos Visuales Renovados para el INDEX - Acto Central */

body {
  font-family: 'Inter', sans-serif;
  background-color: #f9fafb;
  color: #1e293b;
  line-height: 1.6;
  scroll-behavior: smooth;
}

h1, h2, h3, h4 {
  font-weight: 700;
  color: #111827;
  letter-spacing: -0.02em;
}

.boton-accion {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

.boton-accion.bg-white {
  background-color: #ffffff;
  color: #111827;
  border: 1px solid #e5e7eb;
}

.boton-accion.bg-white:hover {
  background-color: #f3f4f6;
  transform: translateY(-2px);
}

.boton-accion.bg-transparent {
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
}

.boton-accion.bg-transparent:hover {
  background-color: #fff;
  color: #1f2937;
}

.card-perfil {
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  background-color: #ffffff;
}

.card-perfil:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.feature-step {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 0.75rem;
  background-color: #f8fafc;
  padding: 1.5rem;
  box-shadow: 0 0 0 rgba(0,0,0,0);
}

.feature-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.bg-hero-dark {
  background-color: #0f172a;
  color: white;
}

.bg-accent {
  background-color: #4f46e5;
  color: white;
}

footer {
  font-size: 0.875rem;
  color: #6b7280;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

section {
  scroll-margin-top: 80px;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.card-casting, .card-anuncio {
  background: white;
  border: 1px solid #e5e7eb;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.card-casting:hover, .card-anuncio:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.badge-role {
  background-color: #eef2ff;
  color: #4338ca;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: 9999px;
  display: inline-block;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}

/* Hero CTA */
.hero-cta h1 {
  font-size: 2.75rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .hero-cta h1 {
    font-size: 4rem;
  }
}

.hero-cta p {
  font-size: 1.125rem;
  color: #f3f4f6;
}