/* Sección de Creadores */
.creators-section {
    padding: 100px 5%;
    background: linear-gradient(135deg, #0a0a2a 0%, #1a1a3a 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.creators-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(156, 39, 176, 0.1) 0%, transparent 50%);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.creators-section .section-title {
    color: white;
    font-size: 42px;
    margin-bottom: 15px;
    background: linear-gradient(90deg, #fff, #d4b5ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.creators-section .section-subtitle {
    color: #b8b8d1;
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

.creators-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Tarjetas de creadores */
.creator-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.creator-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(156, 39, 176, 0.3);
}

.creator-image-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.creator-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.creator-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.creator-card:hover .creator-image img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 60%, rgba(10, 10, 42, 0.8) 100%);
}

.creator-info {
    padding: 25px;
    flex-grow: 1;
}

.creator-name {
    font-size: 24px;
    color: white;
    margin-bottom: 5px;
}

.creator-title {
    color: #9c27b0;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.creator-description {
    color: #b8b8d1;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 15px;
}

.creator-credentials {
    margin-bottom: 20px;
}

.credential {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.credential i {
    color: #9c27b0;
    font-size: 14px;
    width: 20px;
}

.credential span {
    color: #d4d4e6;
    font-size: 14px;
}

.creator-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #9c27b0;
    transform: translateY(-3px);
}

.creator-quote {
    padding: 20px 25px;
    background: rgba(156, 39, 176, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.creator-quote i {
    color: #9c27b0;
    font-size: 20px;
    margin-bottom: 10px;
    display: block;
}

.creator-quote p {
    color: #d4d4e6;
    font-style: italic;
    line-height: 1.6;
    font-size: 15px;
    margin: 0;
}

/* Efectos 3D personalizados */
.creator-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(156, 39, 176, 0.1), transparent);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.creator-card:hover::before {
    opacity: 1;
}

/* Efecto de brillo en hover */
.creator-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #9c27b0, #673ab7, #9c27b0);
    z-index: -2;
    filter: blur(20px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.creator-card:hover::after {
    opacity: 0.6;
}

/* Responsividad */
@media (max-width: 1024px) {
    .creators-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .creators-section .section-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .creators-container {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .creators-section {
        padding: 80px 20px;
    }
    
    .creators-section .section-title {
        font-size: 32px;
    }
    
    .creator-image-wrapper {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .creators-section .section-title {
        font-size: 28px;
    }
    
    .creator-info {
        padding: 20px;
    }
    
    .creator-name {
        font-size: 22px;
    }
}