/* Mejoras en la paleta de colores para La Pachanga DJ */

/* Gradientes alternativos más vibrantes */
.gradient-section-light {
    background: linear-gradient(135deg, #f0f0f0, #f5f0ff, #f0e6ff);
    color: #1a0033;
}

.gradient-section-vibrant {
    background: linear-gradient(135deg, #5e17eb, #9333ea, #3a1772);
    color: white;
}

.gradient-section-premium {
    background: linear-gradient(135deg, #13002b, #300856, #13002b);
    color: white;
    position: relative;
    overflow: hidden;
}

.gradient-section-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 40%, rgba(168, 85, 247, 0.4) 0%, rgba(168, 85, 247, 0) 70%);
    pointer-events: none;
}

.gradient-section-premium::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 60%, rgba(236, 72, 153, 0.4) 0%, rgba(236, 72, 153, 0) 70%);
    pointer-events: none;
}

/* Sección con fondo claro */
.light-section {
    background-color: #f9f5ff;
    color: #3a0069;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 30px rgba(168, 85, 247, 0.1);
}

.light-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239C92AC' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    opacity: 0.5;
    top: 0;
    left: 0;
    pointer-events: none;
}

/* Decoraciones flotantes para romper monotonía */
.floating-decoration {
    position: absolute;
    border-radius: 50%;
    filter: blur(35px);
    opacity: 0.6;
    pointer-events: none;
}

.decoration-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.3) 0%, rgba(236, 72, 153, 0) 70%);
    top: -100px;
    right: -50px;
}

.decoration-2 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.3) 0%, rgba(168, 85, 247, 0) 70%);
    bottom: -50px;
    left: -50px;
}

/* Tarjetas con diferentes estilos */
.card-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.card-solid {
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.card-gradient {
    background: linear-gradient(135deg, #8338EC, #3A86FF);
    color: white;
    box-shadow: 0 4px 20px rgba(131, 56, 236, 0.3);
}

.card-soft {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border: 1px solid #dee2e6;
    color: #212529;
}

/* Texto con estilos mejorados */
.heading-gradient {
    background: linear-gradient(90deg, #5e17eb, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

/* Estilos para los botones */
.btn-light {
    background: white;
    color: #5e17eb;
    border: 1px solid #e2d8f3;
    box-shadow: 0 4px 6px rgba(94, 23, 235, 0.1);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-gradient-purple {
    background: linear-gradient(90deg, #8338EC, #5e17eb);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(94, 23, 235, 0.3);
}

.btn-gradient-pink {
    background: linear-gradient(90deg, #EC4899, #BE185D);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
}

/* Bordes estilizados */
.border-gradient {
    position: relative;
}

.border-gradient::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #8338EC, #EC4899);
    border-radius: inherit;
    z-index: -1;
    opacity: 0.7;
}
