/* Custom Checkbox Moderno */
.custom-checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    transition: background 0.2s ease;
}

.custom-checkbox-wrapper:hover {
    background: rgba(255, 255, 255, 0.05);
}

.custom-checkbox-input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.custom-checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    user-select: none;
    margin: 0;
    width: 100%;
}

.custom-checkbox-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    min-width: 22px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.custom-checkbox-icon {
    width: 14px;
    height: 14px;
    color: white;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.custom-checkbox-input:checked ~ .custom-checkbox-label .custom-checkbox-box {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    border-color: #f97316;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.custom-checkbox-input:checked ~ .custom-checkbox-label .custom-checkbox-icon {
    opacity: 1;
    transform: scale(1);
}

.custom-checkbox-input:focus ~ .custom-checkbox-label .custom-checkbox-box {
    outline: 2px solid rgba(249, 115, 22, 0.4);
    outline-offset: 2px;
}

.custom-checkbox-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.5;
}

/* Animación al hacer hover */
.custom-checkbox-label:hover .custom-checkbox-box {
    border-color: rgba(249, 115, 22, 0.6);
    transform: scale(1.05);
}

/* Animación al hacer clic */
.custom-checkbox-input:active ~ .custom-checkbox-label .custom-checkbox-box {
    transform: scale(0.95);
}

/* Responsive */
@media (max-width: 576px) {
    .custom-checkbox-text {
        font-size: 13px;
    }
    
    .custom-checkbox-box {
        width: 20px;
        height: 20px;
        min-width: 20px;
    }
    
    .custom-checkbox-icon {
        width: 12px;
        height: 12px;
    }
}
