#PacksCreadoras {
    min-height: 100vh;
    padding: 100px 0 120px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a001a 45%, #2a002a 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

#photoVideoCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.6;
    pointer-events: none;
    mix-blend-mode: screen;
}

.packsCreadoras-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.packsCreadoras-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 3;
}

.creadora-badge {
    margin-bottom: 18px;
}



.main-title {
    font-size: clamp(3.2rem, 7vw, 5.8rem);
    font-weight: 900;
    line-height: 1.05;
    margin: 20px 0 16px;
    background: linear-gradient(90deg, #e8c4ff, #ff00aa, #c026d3, #c78bff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle-packs {
    font-size: 1.4rem;
    color: #ddd;
    margin-bottom: 40px;
    opacity: 0.95;
}

/* Botón icono + VER */
.btn-camera-final {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    margin: 30px 0 20px;
    gap: 14px;
}

.camera-final {
    font-size: 28px;
    color: #ff6bce;
    transition: 0.35s ease;
}

.btn-camera-final:hover .camera-final {
    color: #ff2a85;
    transform: scale(1.15);
    text-shadow: 0 0 18px rgba(255, 42, 133, 0.7);
}

.text-container {
    padding: 8px 26px;
    background: rgba(255, 42, 133, 0.08);
    border: 1.5px solid rgba(255, 42, 133, 0.45);
    border-radius: 50px;
    transition: 0.35s ease;
}

.btn-text {
    color: #ff83b9;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: 0.35s ease;
}

.btn-camera-final:hover .text-container {
    background: rgba(255, 42, 133, 0.18);
    border-color: #ff2a85;
    box-shadow: 0 0 18px rgba(255, 42, 133, 0.35);
}

.btn-camera-final:hover .btn-text {
    color: #fff;
    text-shadow: 0 0 10px #ff2a85;
}

.packsCreadoras-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 3;
}